Input for signing and sending transactions.

interface SuiSignAndExecuteTransactionInput {
    account: WalletAccount;
    chain: `${string}:${string}`;
    signal?: AbortSignal;
    transaction: { toJSON: () => Promise<string> };
}

Hierarchy (View Summary)

Properties

account: WalletAccount
chain: `${string}:${string}`
signal?: AbortSignal
transaction: { toJSON: () => Promise<string> }