Skip to main content

Send Transaction

transaction rpc method called guide(all of the rpc methods called same this):

async function sendTransaction() {
const provider = await connector.getProvider();

provider.request({
method: "eth_sendTransaction",
params: [
{
/* your transaction params */
},
],
});
}