javascript - 如何在 node.js 应用程序中使用 ethers.js contract.on() 监听来自智能合约的事件?

标签 javascript node.js ethers.js hardhat

我正在尝试在 node.js 应用程序中使用 ethers.js(不是 web3)监听 USDT 合约传输函数发出的事件。
当我运行脚本时,代码运行没有错误,然后快速退出。我希望得到事件日志。我不确定我错过了哪一步。
我已经通过调用 getOwner() 方法和控制台记录该结果来测试这个脚本,这工作正常,所以我与主网的连接没问题。
我正在使用炼金术 websocket。
我的 index.js 文件

const hre = require("hardhat");
const ethers = require('ethers');
const USDT_ABI = require('../abis/USDT_ABI.json')

async function main() {

const usdt = "0xdAC17F958D2ee523a2206206994597C13D831ec7";
const provider = new ethers.providers.WebSocketProvider("wss://eth-mainnet.ws.alchemyapi.io/v2/MY_API");
const contract = new ethers.Contract(usdt, USDT_ABI, provider)

contract.on('Transfer', (from, to, value) => console.log(from, to, value))

}

main()
  .then(() => process.exit(0))
  .catch(error => {
    console.error(error);
    process.exit(1);
  });
我的 hardhat.config.js 文件

    require("@nomiclabs/hardhat-waffle");
require('dotenv').config()

// This is a sample Hardhat task. To learn how to create your own go to
// https://hardhat.org/guides/create-task.html
task("accounts", "Prints the list of accounts", async () => {
  const accounts = await ethers.getSigners();

  for (const account of accounts) {
    console.log(account.address);
  }
});

// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more

/**
 * @type import('hardhat/config').HardhatUserConfig
 */
 module.exports = {
  paths: {
    artifacts: './src/artifacts',
  },

  networks: {
    mainnet: {
      url: "wss://eth-mainnet.ws.alchemyapi.io/v2/MY_API",
      accounts: [`0x${process.env.PRIVATE_KEY}`]
    },
    hardhat: {
      chainId: 1337
    },
  },
  solidity: "0.4.8"
};`

最佳答案

我通过删除解决了这个问题

.then(() => process.exit(0))
  .catch(error => {
    console.error(error);
    process.exit(1);
  });
只是调用主要的。在 hardhat 文档中建议使用 .then 和 .catch 代码,但是当运行一个长时间运行的进程时,就像这个脚本使用 contract.on() 所做的那样,它会导致脚本退出。

关于javascript - 如何在 node.js 应用程序中使用 ethers.js contract.on() 监听来自智能合约的事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68168566/

相关文章:

javascript - 使用 Backbone.js 的多个页面

mysql - 如何在使用 NodeJS 和 Express 时创建 MySQL 连接池?

javascript - 如何为 gulp 编写管道序列?

blockchain - ethers.js 煎饼交换上的 swapExactETHForTokens 和 swapExactTokensForTokens

ethereum - 地址或 ENS 名称无效

javascript - 下拉列表脚本

javascript - 从单独的文件中调用另一个常量

node.js - appfog 无法安装 Node.js 应用程序

node.js - Web3 BatchRequest 总是返回未定义,我做错了什么?

javascript - 使用 XSL for-each 从 XML 中选择一个值