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

    Interface InvoiceCreated

    A created invoice with its up-front deposit address. Extra fields may be present.

    interface InvoiceCreated {
        address: string;
        amount: string;
        chain: string;
        currency: string;
        expireTime?: number;
        memo?: string;
        redirectUrl?: string;
        token: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown

      Additional fields passed through untyped.

    Index

    Properties

    address: string

    On-chain deposit address to receive payment.

    amount: string

    Exact amount the payer should send, as a decimal string.

    chain: string

    Network the deposit address is on.

    currency: string

    The token the payer should send.

    expireTime?: number

    Expiry as epoch milliseconds, when set.

    memo?: string

    Destination tag/memo — present for memo chains (TON, etc.); sending without it can lose funds.

    redirectUrl?: string

    Return URL echoed back when supplied on create.

    token: string

    Public /pay/<token> link id — used to update/void it and read its status.