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

    Interface WithdrawOption

    A supported chain for withdrawing a given currency, with its fee and limits.

    interface WithdrawOption {
        chain: string;
        currency: string;
        label?: string;
        maxWithdraw: string;
        minConfirm?: number;
        minWithdraw: string;
        withdrawFee: string;
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown

      Additional provider-specific fields passed through untyped.

    Index

    Properties

    chain: string

    Network the asset can be withdrawn over, e.g. "TRON".

    currency: string

    Currency/asset code this option applies to, e.g. "USDT".

    label?: string

    Human-readable label for the chain, when provided.

    maxWithdraw: string

    Maximum amount per withdrawal, as a decimal string.

    minConfirm?: number

    Block confirmations required before the withdrawal settles, when reported.

    minWithdraw: string

    Minimum amount per withdrawal, as a decimal string.

    withdrawFee: string

    Fixed network withdraw fee, as a decimal string.