CCC Docs
    Preparing search index...

    Type Alias CoinXUdtArgsLike

    Object-like representation of xUDT type script args.

    type CoinXUdtArgsLike = {
        ownerScriptHash: ccc.HexLike;
        ownerModeInputLockDisabled?: boolean | null;
        ownerModeOutputType?: boolean | null;
        ownerModeInputType?: boolean | null;
        extensionData?: CoinXUdtExtensionLike | null;
        shouldKeepFlag?: boolean | null;
    }
    Index
    ownerScriptHash: ccc.HexLike

    The 32-byte hash of the owner script.

    ownerModeInputLockDisabled?: boolean | null

    Disable input-lock owner-mode validation. Defaults to false.

    ownerModeOutputType?: boolean | null

    Enable owner-mode validation through an output type script.

    ownerModeInputType?: boolean | null

    Enable owner-mode validation through an input type script.

    extensionData?: CoinXUdtExtensionLike | null

    Extension mode and its associated data. Defaults to Empty.

    shouldKeepFlag?: boolean | null

    Whether to retain the 4-byte flags field when it would otherwise be zero. Defaults to false.