Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Add install eth-abi to make test #195

Merged
merged 8 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ build:
test:
forge test -vvv --ffi

install-dev: install-npm-package install-eth-abi

install-npm-package:
npm install --save-dev

install-eth-abi:
curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py && rm get-pip.py && python3 -m pip install eth_abi

storage:
npx hardhat storage-layout --update

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ forge coverage

# Development

Run `make install-dev` to install all necessary dependencies for development.

Before committing:

```bash
Expand Down
Loading