Options for signing an EVM transaction.

interface SignTransactionOptions {
    address: `0x${string}`;
    idempotencyKey?: string;
    transaction: `0x${string}`;
}

Properties

address: `0x${string}`

The address of the account.

idempotencyKey?: string

The idempotency key.

transaction: `0x${string}`

The RLP-encoded transaction to sign, as a 0x-prefixed hex string.