type SendTransactionRequestParams = [{
chainId?: `0x${string}`;
data?: Hex;
from: EvmAddress;
to: EvmAddress;
value: Hex;
nonce?: Hex;
gas?: Hex;
maxFeePerGas?: Hex;
maxPriorityFeePerGas?: Hex;
type?: "eip1559";
}];
Was this page helpful?