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

    Receive crypto directly into the workspace via permanent per-network addresses, and read the settled deposit history (scope: balances:read).

    Index

    Constructors

    Methods

    • Mint (or return the existing) permanent deposit address for a network. Idempotent — reusable and stable per network.

      Parameters

      • params: { chain: string }

        Options.

      Returns Promise<DepositAddress>

      The DepositAddress for that network.

      On failure (e.g. 422 unsupported chain, 401/403 auth).

    • List settled deposit history — inbound credits to the workspace (scope: balances:read). Keyset-paginated.

      Parameters

      • query: PageQuery & { chain?: string; from?: number; to?: number } = {}

        Filters + pagination.

        • Optionalchain?: string

          Restrict to one network. Optional.

        • Optionalfrom?: number

          Inclusive start of the window, epoch milliseconds. Optional.

        • Optionalto?: number

          Inclusive end of the window, epoch milliseconds. Optional.

      Returns Promise<Page<Deposit>>

      The raw { items, nextCursor } page of Deposit.

      On failure (e.g. 401/403 auth).