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

    Interface DepositAddress

    A permanent, reusable receive address for one network.

    interface DepositAddress {
        address: string;
        chain: string;
        createdAt?: number;
        currencies: string[];
        memo?: string;
    }
    Index

    Properties

    address: string

    Permanent on-chain receive address.

    chain: string

    Network code this address is on, e.g. "ETH".

    createdAt?: number

    When the address was first created, unix ms (present on list/detail reads).

    currencies: string[]

    Coins this address accepts on its network, e.g. ["ETH", "USDT", "USDC"].

    memo?: string

    Destination tag/memo — required on memo networks; sending without it can lose funds.