Represents the result of sending a transaction.

SendTransactionResult

interface SendTransactionResult {
    id: string;
    wait: (() => Promise<TransactionReceipt>);
}

Properties

Properties

id: string

The unique identifier associated with the transaction.

wait: (() => Promise<TransactionReceipt>)