@cfxlabsinc/b2b-services
    Preparing search index...

    Inputs shared by every escrow operation. All non-signer parties are required because the program reconstructs the escrow_sig PDA from them and bails if anything has been tampered with.

    The six public builder methods all consume this shape and add only the signer-vs-address distinction for the participants they need to sign (sender / updateAuthority / releaseAuthority).

    type EscrowParticipants = {
        hash: Buffer;
        mint: Address;
        nonce: bigint;
        qtyToTransfer: bigint;
        releaseAuthority: Address;
        sender: Address;
        updateAuthority: Address;
    }
    Index

    Properties

    hash: Buffer
    mint: Address
    nonce: bigint
    qtyToTransfer: bigint
    releaseAuthority: Address
    sender: Address
    updateAuthority: Address