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

    Interface Deposit

    A settled deposit credited to the workspace.

    interface Deposit {
        amount: string;
        chain: string;
        createdAt?: number;
        currency: string;
        status: string;
        transactionId: string;
        txHash?: string;
    }
    Index

    Properties

    amount: string

    Amount credited, in the coin's units, as a decimal string.

    chain: string

    Network code, e.g. "TRX".

    createdAt?: number

    Settlement time, unix ms.

    currency: string

    Coin credited, e.g. "USDT".

    status: string

    Settlement status, e.g. "PAID".

    transactionId: string

    Provider transaction id (stable dedupe key).

    txHash?: string

    On-chain transaction hash, when available.