T402 API Reference - v2.8.0
    Preparing search index...

    Interface AptosTransactionResult

    Aptos transaction result from RPC

    interface AptosTransactionResult {
        hash: string;
        version: string;
        success: boolean;
        vmStatus: string;
        sender: string;
        sequenceNumber: string;
        gasUsed: string;
        timestamp: string;
        payload?: AptosTransactionPayload;
        events?: AptosTransactionEvent[];
        changes?: AptosStateChange[];
    }
    Index

    Properties

    hash: string

    Transaction hash

    version: string

    Transaction version

    success: boolean

    Whether the transaction was successful

    vmStatus: string

    VM status

    sender: string

    Sender address

    sequenceNumber: string

    Sequence number

    gasUsed: string

    Gas used

    timestamp: string

    Timestamp (microseconds)

    Transaction payload

    Events emitted by the transaction

    changes?: AptosStateChange[]

    State changes