Avalanche SDK Client
    Preparing search index...

    Type Alias SignXPTransactionReturnType

    The return type for the signXPTransaction method

    type SignXPTransactionReturnType = {
        chainAlias: "X" | "P" | "C";
        disableAuth?: number[];
        disableOwners?: PChainOwner;
        signatures: Signatures[];
        signedTxHex: string;
        subnetAuth?: number[];
        subnetOwners?: PChainOwner;
    }
    Index

    Properties

    chainAlias: "X" | "P" | "C"

    Optional, the chain to sign the transaction on. "X" | "P" | "C"

    disableAuth?: number[]

    Optional, the disable auth to use for the transaction. number[]

    disableOwners?: PChainOwner

    Optional, the disable owners to use for the transaction. PChainOwner

    signatures: Signatures[]

    The signatures array for the transaction. Signatures

    signedTxHex: string

    The signed transaction in hex format. string

    subnetAuth?: number[]

    Optional, the subnet auth to use for the transaction. number[]

    subnetOwners?: PChainOwner

    Optional, the subnet owners to use for the transaction. PChainOwner