Binance Web3 Connector JS
    Preparing search index...

    Transaction details. Null when the transaction is not found in any source table.

    GetTransactionStatusResponseData

    interface GetTransactionStatusResponseData {
        binanceChainId?: string;
        dexRouter?: string | null;
        errorMsg?: string | null;
        fromAddress?: string;
        fromTokenDetails?:
            | GetTransactionStatusResponseDataFromTokenDetailsInner[]
            | null;
        gasLimit?: string
        | null;
        gasPrice?: string | null;
        gasUsed?: string | null;
        height?: string;
        priorityFee?: string | null;
        status?: string;
        toAddress?: string;
        toTokenDetails?:
            | GetTransactionStatusResponseDataToTokenDetailsInner[]
            | null;
        txFee?: string
        | null;
        txHash?: string;
        txTime?: string;
        txType?: string | null;
    }
    Index

    Properties

    binanceChainId?: string

    Chain identifier.

    GetTransactionStatusResponseData

    dexRouter?: string | null

    DEX router contract address (mirrors toAddress). Null when no aggregator event is present.

    GetTransactionStatusResponseData

    errorMsg?: string | null

    Error message when status=failed; null otherwise.

    GetTransactionStatusResponseData

    fromAddress?: string

    Sender address.

    GetTransactionStatusResponseData

    fromTokenDetails?:
        | GetTransactionStatusResponseDataFromTokenDetailsInner[]
        | null

    Sell-token details. Populated when an aggregator event is present; null otherwise.

    GetTransactionStatusResponseData

    gasLimit?: string | null

    Gas limit (decimal string). Null on Solana.

    GetTransactionStatusResponseData

    gasPrice?: string | null

    Gas price (decimal string, wei). Null on Solana.

    GetTransactionStatusResponseData

    gasUsed?: string | null

    Gas actually consumed (decimal string, wei). Null on Solana.

    GetTransactionStatusResponseData

    height?: string

    Block height the transaction was included in (decimal string).

    GetTransactionStatusResponseData

    priorityFee?: string | null

    EIP-1559 priority fee (wei) on EVM, prioritization fee (lamports) on Solana, null on legacy EVM transactions.

    GetTransactionStatusResponseData

    status?: string

    Transaction status. Typical values "success" or "failed".

    GetTransactionStatusResponseData

    toAddress?: string

    Recipient address (typically the DEX router).

    GetTransactionStatusResponseData

    Buy-token details. Populated when an aggregator event is present; null otherwise.

    GetTransactionStatusResponseData

    txFee?: string | null

    Transaction fee in the chain's native unit. Null on Solana.

    GetTransactionStatusResponseData

    txHash?: string

    Transaction hash.

    GetTransactionStatusResponseData

    txTime?: string

    Transaction timestamp (Unix epoch milliseconds, string form).

    GetTransactionStatusResponseData

    txType?: string | null

    Transaction action; currently fixed to "Swap" when an aggregator event is present. Null otherwise.

    GetTransactionStatusResponseData