Send Ether Transaction

// Initialize provider
import Fortmatic from 'fortmatic';
import Web3 from 'web3';
const fm = new Fortmatic('YOUR_API_KEY');
window.web3 = new Web3(fm.getProvider());
const toAddress = '0xb159752065EA68Ef0B22249Df25864E624fec45D';
const sendValue = web3.toWei(1, 'ether'); // Convert 1 ether to wei
// Get user account wallet address first
web3.eth.getAccounts((error, accounts) => {
if (error) throw error;
// Construct Ether transaction params
const txnParams = {
from: accounts[0],
to: toAddress,
value: sendValue
}
// Send Ether transaction with web3
web3.eth.sendTransaction(txnParams, (error, txnHash) => {
if (error) throw error;
console.log(txnHash);
});
});Custom Gas Price

Last updated
Was this helpful?