absolutepay (Node SDK) - v0.7.1
    Preparing search index...

    Interface PayoutItem

    One recipient line within a batch payout.

    interface PayoutItem {
        amount: Money;
        chain: string;
        memo?: string;
        recipientAddress: string;
    }
    Index

    Properties

    amount: Money

    Amount to send (decimal-string amount + currency), e.g. { amount: "25.00", currency: "USDT" }. Required.

    chain: string

    Network to send over, e.g. "TRON", "ETH". Must be supported for the asset — see Payouts.options. Required.

    memo?: string

    Optional destination memo/tag (required by some chains/exchanges, e.g. Memo/Tag networks).

    recipientAddress: string

    Destination on-chain wallet address to send funds to. Required.