登录 注册
当前位置:主页 > 资源下载 > 38 > 以太坊事件日志解析工具

以太坊事件日志解析工具

  • 更新:2024-09-15 21:50:50
  • 大小:148KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

以太坊事件日志 轻松解析以太坊事件日志! :ferris_wheel: 特征: 可以同时解析多个事件ABI的日志 准确解码事件参数值(已索引和未索引) 自动将不可索引的值解码为bytes32 () 不依赖于任何特定的web3库,可以独立使用 安装 NPM / Yarn: ethereum-event-logs 用法示例 想象一下以下合同: pragma solidity ^ 0 . 4 . 24 ; contract Events { event Event1 ( string indexed stringVar1 , string stringVar2 ); event Event2 ( bytes32 indexed bytes32Var , bool indexed boolVar , string stringVar ); event Event3 ( address