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
Changes from 5 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 && ~/.local/bin/pip install eth_abi

storage:
npx hardhat storage-layout --update

Expand Down
Loading