Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 789 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 789 Bytes

B32

Signature collection of smart contract method & event.

To help retrieving method/event's JSON ABI by its signature.

Submit JSON ABI

  • Initiate a new pull request
  • Fill the file name like <my-awesome-contract.json>
  • Fill the file content with full JSON ABI produced by solidity compiler

Query JSON ABI

# replace 0x06fdde03 with your signature
> curl https://b32.vecha.in/q/0x06fdde03.json

The output will be

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"}]

which is an array of objects which share the same signature.