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

Commit

Permalink
Add install eth-abi to make test (#195)
Browse files Browse the repository at this point in the history
* install eth abi in make test
---------

Co-authored-by: Denis Kolegov <dnkolegov@gmail.com>
  • Loading branch information
2 people authored and cryptoAtwill committed Sep 4, 2023
1 parent cf90bf3 commit 4ffe27e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
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

0 comments on commit 4ffe27e

Please sign in to comment.