Skip to content

Latest commit

 

History

History
47 lines (28 loc) · 1.46 KB

README.md

File metadata and controls

47 lines (28 loc) · 1.46 KB

ENS evmgateway

This repository implements ENS gateway contracts built on top of evmgateway

Packages

This is a monorepo divided up into a few packages:

A resolver contract that is built on top of evm-verifier.

A reverse resolver contract that is built on top of evm-verifier.

Demo app

https://github.com/makoto/my-l2-app-v2

Dependencies

How to setup locally

gh repo clone ensdomains/ens-l2-contracts
bun install
bun run test

Troubleshooting

Error HH12: Trying to use a non-local installation of Hardhat, which is not supported.

yarn test spawns hardhat test in the forked process. When hardhat command is installed under the node_modules of under each workspace, it complains that it's using locally installed hardhat. Remove hardhat from local node_modules and make sure it's only installed under the root node_modules

rm -rf *-*/node_modules/hardhat
rm bun.lockb
bun install