This repo contains the reference implementation for ERC-1484. The full text of ERC-1484 is available in .md format and on the Ethereum EIPs website.
Feedback on this proposal is welcomed in the official discussion forum. To contribute to or make suggestions about the reference implementation, please open a PR in this repo.
This repo contains:
- The
Identity Registry
reference implementation. - A 100% coverage test suite.
- A sample
Provider
andResolver
. - Best Practices explaining and extending various aspects of ERC-1484.
- Example
Providers
andResolvers
. These include an ERC-725 Resolver, an ERC-1056 Resolver, and a Meta-Transactions Provider.
- Install dependencies:
npm install
- Build contracts:
npm run build
- In one terminal tab, spin up a development blockchain:
npm run chain
- In another terminal tab, run the test suite:
npm test