Avalanche SDK Client
    Preparing search index...

    Type Alias SignXPTransactionParameters

    The parameters for the signXPTransaction method

    type SignXPTransactionParameters = {
        account?: AvalancheAccount | Address;
        chainAlias: "X" | "P" | "C";
        context?: ContextType.Context;
        disableAuth?: number[];
        disableOwners?: PChainOwner;
        signedTxHex?: string;
        subnetAuth?: number[];
        subnetOwners?: PChainOwner;
        tx?: string | UnsignedTx;
        utxoIds?: string[];
    }
    Index

    Properties

    account?: AvalancheAccount | Address

    Optional, the account to use for the transaction. AvalancheAccount, Address

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

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

    Optional, the context to use for the transaction. ContextType.Context

    disableAuth?: number[]

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

    disableOwners?: PChainOwner

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

    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

    tx?: string | UnsignedTx

    The transaction to sign, either a hex string or an UnsignedTx object. string or UnsignedTx

    utxoIds?: string[]

    Optional, the utxo ids to use for the transaction. string[]