@cfxlabsinc/b2b-services
    Preparing search index...
    type CreateEscrowQuoteInput = {
        amount: BigNumber;
        claimUrl?: string;
        customerId: string;
        message?: string;
        metadata?: EscrowTransferMetadata;
        recipientPhone: string;
        senderId: string;
        senderWallet: string;
        tokenSymbol: string;
    }
    Index

    Properties

    amount: BigNumber

    Human-decimal amount (e.g. 1.31), per the financial-services BigNumber convention. buildCreateEscrowTransaction scales it to raw on-chain base units using the token's decimals; the row persists this decimal value.

    claimUrl?: string
    customerId: string
    message?: string
    recipientPhone: string
    senderId: string
    senderWallet: string

    Sender's self-custody Solana public key (base58). The on-chain signature requirement is the real guard, so this is taken as supplied — there is no wallet-ownership lookup.

    tokenSymbol: string