erc-abis-ts
v0.0.4
Published
ABI and human-readable definitions for common ERCs
Downloads
250
Maintainers
Readme
erc-abis-ts
A collection of common ERC ABIs in both ABI and human-readable form. ERCs are defined based on their required/optional items in the Ethereum Improvement Proposals list.
Installation
npm install erc-abis-ts
Usage
import { erc20AbiHumanReadable, erc20Abi } from 'erc-abis-ts'
import { parseAbi } from 'viem';
// Below is equivalent to erc20Abi
const abi = parseAbi(erc20AbiHumanReadable);