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

    Interface BoardingUtxoGroup

    Boarding UTXOs grouped by the boarding address they sit on, carrying that address's signer association explicitly. Returned by ReadonlyWallet.getBoardingUtxosForSigners because a flat ExtendedCoin cannot carry the signer: it retains only the encoded leaves/tapTree the spend needs, not the owning DefaultVtxo.Script (and so not its serverPubKey or CSV delay). The deprecated-signer boarding classification reads both back from this group (Section 7).

    interface BoardingUtxoGroup {
        coins: ExtendedCoin[];
        csvTimelock: RelativeTimelock;
        serverPubKey: string;
        tapscript: DefaultVtxo.Script;
    }
    Index

    Properties

    coins: ExtendedCoin[]
    csvTimelock: RelativeTimelock

    CSV exit timelock decoded from THIS tapscript's exit leaf.

    serverPubKey: string

    Server key of that address, normalized x-only hex.

    tapscript: DefaultVtxo.Script

    Tapscript of the boarding address the coins sit on.