Sending a Transaction
Direct Sending
const result = await provider.request({
method: 'eth_sendTransaction',
params: [
{
from: address,
to: '0x6aDdF38602487b7a159D926bc08151eBaEEF2B70',
value: '0x0',
gasLimit: '0x5028',
gasPrice: '0x2540be400',
type: '0x0',
},
],
});Using Ethers.js
Last updated