Interface EncodedEvmTransaction

A signer-neutral EVM transaction that can be consumed by a UI or CLI.

interface EncodedEvmTransaction {
    chainId: number;
    to: `0x${string}`;
    data: `0x${string}`;
    value: bigint;
}

Properties

Properties

chainId: number
to: `0x${string}`
data: `0x${string}`
value: bigint