Avalanche SDK Client
    Preparing search index...

    Type Alias SendXPTransactionParameters

    The parameters for the sendXPTransaction method

    type SendXPTransactionParameters = {
        account?: AvalancheAccount | Address;
        chainAlias: "X" | "P" | "C";
        disableAuth?: number[];
        disableOwners?: PChainOwner;
        externalIndices?: number[];
        feeTolerance?: number;
        internalIndices?: number[];
        subnetAuth?: number[];
        subnetOwners?: PChainOwner;
        tx: string | UnsignedTx;
        utxoIds?: string[];
    }
    Index

    Properties

    account?: AvalancheAccount | Address

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

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

    The chain to send the transaction to. "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

    externalIndices?: number[]

    Optional, the external indices to use for the transaction. number[]

    feeTolerance?: number

    Optional, the fee tolerance to use for the transaction. number

    internalIndices?: number[]

    Optional, the internal indices to use for the transaction. number[]

    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 send, either a hex string or an UnsignedTx object. string or UnsignedTx

    utxoIds?: string[]

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