技能 编程开发 区块链Web3交易与事件管理

区块链Web3交易与事件管理

v20260423
quicknode-core-workflow-a
本工作流旨在指导开发者使用QuickNode完成完整的EVM交易流程。内容涵盖核心功能,包括发送ETH代币、调用智能合约方法、通过WebSocket进行实时事件监听,以及精确估算Gas费用。适用于构建可靠的去中心化应用(dApps)和区块链后端服务。
获取技能
64 次下载
概览

QuickNode Core Workflow A

Overview

Build EVM transaction workflows: send ETH, interact with contracts, listen for events, and handle gas estimation.

Prerequisites

  • Completed quicknode-hello-world
  • A funded wallet (use testnet for development)

Instructions

Step 1: Send ETH Transaction

import { ethers } from 'ethers';

const provider = new ethers.JsonRpcProvider(process.env.QUICKNODE_ENDPOINT);
const wallet = new ethers.Wallet(process.env.PRIVATE_KEY!, provider);

const tx = await wallet.sendTransaction({
  to: '0xRecipientAddress',
  value: ethers.parseEther('0.01'),
});
console.log(`TX sent: ${tx.hash}`);
const receipt = await tx.wait();
console.log(`Confirmed in block ${receipt!.blockNumber}, gas used: ${receipt!.gasUsed}`);

Step 2: Call Contract Write Function

const contractAddress = '0xYourContract';
const abi = ['function transfer(address to, uint256 amount) returns (bool)'];
const contract = new ethers.Contract(contractAddress, abi, wallet);

const tx = await contract.transfer('0xRecipient', ethers.parseUnits('100', 18));
const receipt = await tx.wait();
console.log(`Transfer confirmed: ${receipt!.hash}`);

Step 3: Listen for Events (WebSocket)

const wsProvider = new ethers.WebSocketProvider(process.env.QUICKNODE_WSS);
const contract = new ethers.Contract(contractAddress, ['event Transfer(address indexed from, address indexed to, uint256 value)'], wsProvider);

contract.on('Transfer', (from, to, value, event) => {
  console.log(`Transfer: ${from} -> ${to}: ${ethers.formatUnits(value, 18)}`);
});

Step 4: Gas Estimation

const gasEstimate = await contract.transfer.estimateGas('0xRecipient', ethers.parseUnits('100', 18));
const feeData = await provider.getFeeData();
const totalCost = gasEstimate * (feeData.gasPrice || 0n);
console.log(`Estimated gas: ${gasEstimate}, cost: ${ethers.formatEther(totalCost)} ETH`);

Output

  • ETH transfer with receipt confirmation
  • Smart contract interaction
  • Real-time event listening via WebSocket
  • Gas estimation before transactions

Error Handling

Error Cause Solution
insufficient funds Wallet balance too low Fund wallet or reduce amount
nonce too low Nonce conflict Get latest nonce: provider.getTransactionCount(address)
gas required exceeds allowance Contract revert Check contract requirements

Resources

Next Steps

NFT and token APIs: quicknode-core-workflow-b

信息
Category 编程开发
Name quicknode-core-workflow-a
版本 v20260423
大小 3.13KB
更新时间 2026-04-28
语言