Web3js 08: 执行交易

前言

求其区块链团队出品

旗下网站


执行交易

交易步骤:

  • 构建交易对象
  • 交易签名
  • 交易广播

1. 构建交易对象

let Web3 = require("web3")
let web3 = new Web3(new Web3.providers.HttpProvider("HTTP://127.0.0.1:8545"))

// 发送者地址
const fromAddress = '0x123...';
// 接收者地址
const toAddress = '0x456...';
// 发送的金额
const etherAmount = web3.utils.toWei('1', 'ether');
// gas 配置
const gasPrice = web3.utils.toWei('10', 'gwei');
const gasLimit = 21000;

const transactionObject = {
   from: fromAddress,
   to: toAddress,
   value: etherAmount,
   gasPrice: gasPrice,
   gas: gasLimit
};

2. 签署交易

// 使用私钥签名
const privateKey = '0xabc...';

const signedTransaction = web3.eth.accounts.signTransaction(transactionObject, privateKey)
.then((signedTx) => {
    console.log(signedTx.rawTransaction);
})
.catch((error) => {
    console.log(error);
});

3. 广播交易

web3.eth.sendSignedTransaction(signedTransaction.rawTransaction)
.on('transactionHash', (txHash) => {
   console.log(`Transaction Hash: ${txHash}`);
})
.on('receipt', (receipt) => {
   console.log(`Transaction Receipt: ${receipt}`);
})
.on('error', console.error);
  • on(‘transactionHash’, callback): 在交易发送后获取交易哈希
  • on(‘receipt’, callback): 交易被确认并包含在区块中后获取该交易的收据信息
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值