Vana SDK - v0.1.0
    Preparing search index...

    Interface RelayerTransactionResponse

    Response from the relayer service for transaction submission

    interface RelayerTransactionResponse {
        transactionHash: `0x${string}`;
        success: boolean;
        error?: string;
        metadata?: {
            gasUsed?: bigint;
            gasPrice?: bigint;
            blockNumber?: bigint;
            status?: "pending" | "failed" | "confirmed";
        };
    }
    Index

    Properties

    transactionHash: `0x${string}`

    The transaction hash of the submitted transaction

    success: boolean

    Success status

    error?: string

    Optional error message

    metadata?: {
        gasUsed?: bigint;
        gasPrice?: bigint;
        blockNumber?: bigint;
        status?: "pending" | "failed" | "confirmed";
    }

    Transaction metadata

    Type declaration

    • OptionalgasUsed?: bigint

      Gas used

    • OptionalgasPrice?: bigint

      Gas price

    • OptionalblockNumber?: bigint

      Block number

    • Optionalstatus?: "pending" | "failed" | "confirmed"

      Transaction status