https://github.com/vechain/b32
Signature collection of smart contract method & event
https://github.com/vechain/b32
Last synced: 16 days ago
JSON representation
Signature collection of smart contract method & event
- Host: GitHub
- URL: https://github.com/vechain/b32
- Owner: vechain
- Created: 2019-03-13T16:39:08.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-20T08:50:11.000Z (about 1 month ago)
- Last Synced: 2025-03-29T04:11:59.376Z (23 days ago)
- Language: TypeScript
- Homepage: https://b32.vecha.in
- Size: 525 KB
- Stars: 22
- Watchers: 9
- Forks: 104
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-list - [submit
README
# B32
> [Signature collection of smart contract method & event.](https://b32.vecha.in)
To help retrieving method/event's JSON ABI by its signature.
## Submit JSON ABI
* Initiate a new [pull request](https://github.com/vechain/b32/new/master/ABIs)
* Fill the file name like <`my-awesome-contract.json`>
* Fill the file content with full JSON ABI produced by [solidity compiler](https://github.com/ethereum/solidity/releases)## Query JSON ABI
```bash
# replace 0x06fdde03 with your signature
> curl https://b32.vecha.in/q/0x06fdde03.json
```The output will be
```JSON
[{"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.