Sending a Transaction
{
from: "0x95222290DD7278Aa3Ddd389Cc1E1d165CC4BAfe5",
to: "0xb233696514F192Da7F0f0Fb1332f18c68cfB6c23",
gasLimit: "21000",
maxFeePerGas: "300",
maxPriorityFeePerGas: "10",
nonce: "0",
value: "10000000000"
}const result = await provider.request({
method: 'eth_sendTransaction',
params: [
{
from: accounts[0],
to: '0xb233696514F192Da7F0f0Fb1332f18c68cfB6c23',
value: '0x0',
gasLimit: '0x5028',
gasPrice: '0x2540be400',
type: '0x0',
},
],
});Last updated