@arkade-os/sdk Documentation - v0.4.21
    Preparing search index...

    Interface SendBitcoinParams

    Parameters accepted by OnchainWallet.send.

    This shape was also used by the deprecated Wallet.sendBitcoin method. New wallet sends should use Recipient via IWallet.send.

    Recipient

    interface SendBitcoinParams {
        address: string;
        amount: number;
        feeRate?: number;
        memo?: string;
        selectedVtxos?: ExtendedVirtualCoin[];
    }
    Index

    Properties

    address: string

    Destination address.

    amount: number

    Amount to send in satoshis.

    feeRate?: number

    Optional fee rate override in sats/vB.

    memo?: string

    Optional memo associated with the transaction.

    Does not appear to have ever been used.

    selectedVtxos?: ExtendedVirtualCoin[]

    Optional explicit virtual output selection used by Wallet.sendBitcoin.