4byte 中文文档教程

发布于 4年前 浏览 27 项目主页 更新于 3年前

4byte

通过哈希的 4 个字节查找以太坊函数签名

许可证NPM 版本

Install

npm install 4byte

Getting started

const fourByte = require('4byte')

const signatures = fourByte('0x51c6590a')
console.log(signatures) // ['addLiquidity(uint256)']

CLI

安装:

npm install -g 4byte

查找函数签名:

$ 4byte 0xa9059cbb
transfer(bytes4[9],bytes5[6],int48[11])
many_msg_babbage(bytes1)
transfer(address,uint256)
$ 4byte 0xa9059cbb --format=json
[
  "transfer(bytes4[9],bytes5[6],int48[11])",
  "many_msg_babbage(bytes1)",
  "transfer(address,uint256)"
]

Test

npm test

License

MIT

4byte

Look up an Ethereum function signature by the 4 bytes of its hash

LicenseNPM version

Install

npm install 4byte

Getting started

const fourByte = require('4byte')

const signatures = fourByte('0x51c6590a')
console.log(signatures) // ['addLiquidity(uint256)']

CLI

Install:

npm install -g 4byte

Look up a function signature:

$ 4byte 0xa9059cbb
transfer(bytes4[9],bytes5[6],int48[11])
many_msg_babbage(bytes1)
transfer(address,uint256)
$ 4byte 0xa9059cbb --format=json
[
  "transfer(bytes4[9],bytes5[6],int48[11])",
  "many_msg_babbage(bytes1)",
  "transfer(address,uint256)"
]

Test

npm test

License

MIT

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文