@aptos-labs/ts-sdk - v3.1.1
    Preparing search index...

    Type Alias PendingTransactionResponse

    The response for a pending transaction, indicating that the transaction is still being processed.

    type PendingTransactionResponse = {
        expiration_timestamp_secs: string;
        gas_unit_price: string;
        hash: string;
        max_gas_amount: string;
        payload: TransactionPayloadResponse;
        sender: string;
        sequence_number: string;
        signature?: TransactionSignature;
        type: Pending;
    }
    Index

    Properties

    expiration_timestamp_secs: string
    gas_unit_price: string
    hash: string
    max_gas_amount: string
    sender: string
    sequence_number: string
    type: Pending