Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hardhat #6719

Merged
merged 48 commits into from
Feb 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
51beb30
add hardhat
Jan 11, 2024
98bbd69
removing ganache pt 1
Jan 11, 2024
3e0829f
Merge branch '4.x' into add-hardhat
Jan 12, 2024
cc0b0d9
fix build
Jan 12, 2024
c08699e
fix build
Jan 12, 2024
f49127b
add hardhat plugin
Jan 12, 2024
d65338b
remove hardhat plugin from each package
Jan 12, 2024
e9d9e9a
update flow
Jan 12, 2024
8b59549
update hardhat command
Jan 12, 2024
c53cebe
add stop script
Jan 16, 2024
59bb595
Merge branch '4.x' into add-hardhat
Jan 16, 2024
2119e83
update build
Jan 16, 2024
e2b1df1
update flow
Jan 17, 2024
66b2501
update buiild
Jan 17, 2024
eb7e33d
update build
Jan 17, 2024
5c750af
update tests
Jan 17, 2024
f5f8588
update tests
Jan 18, 2024
db6f06e
add eslint-disable
Jan 18, 2024
9e7a379
add es-lint
Jan 18, 2024
adb756b
update web3-eth tests with hardhat
Jan 19, 2024
d0a7a55
fix lint
Jan 19, 2024
97efe98
update net
Jan 19, 2024
b2d4e73
fix build
Jan 19, 2024
834f98a
update
Jan 22, 2024
03e9cf8
update
Jan 22, 2024
9c66ba2
update
Jan 22, 2024
7004c61
update tests
Jan 22, 2024
0e06554
update pr
Jan 23, 2024
229f494
update build
Jan 24, 2024
954ee91
update workflow
Jan 24, 2024
1ac4f24
update package
Jan 24, 2024
5dfed6b
update
Jan 24, 2024
802009b
add comments
Jan 24, 2024
8684f10
Merge branch '4.x' into add-hardhat
Jan 24, 2024
86d1a10
update yml
Jan 24, 2024
9ab7d3f
fix yml
Jan 24, 2024
bcedcbe
add script
Jan 24, 2024
a235820
updae blackbox tests
Jan 24, 2024
80f92e9
add const for backend
Jan 29, 2024
36b3de8
Merge branch '4.x' into add-hardhat
Jan 29, 2024
bec4e0a
fix breakin tests
Jan 30, 2024
62ec640
update
Jan 30, 2024
d78f0be
remove ganache specific tests
Jan 30, 2024
edc26de
fix script
Jan 30, 2024
6081147
Merge branch '4.x' into add-hardhat
Jan 30, 2024
67ff9ec
update const
Jan 31, 2024
bdb9a82
Merge branch '4.x' into add-hardhat
Feb 2, 2024
38dabb2
remove unneccesary comments
Feb 2, 2024
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
Prev Previous commit
Next Next commit
fix script
  • Loading branch information
luu-alex committed Jan 30, 2024
commit edc26deb9b502800abd7a173de20396bce10a659
2 changes: 1 addition & 1 deletion scripts/test-runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fi
if [[ $BACKEND == "geth" || $BACKEND == "geth-binary" || $BACKEND == "geth-manual" ]]; then
yarn "$BACKEND:start:background" && yarn generate:accounts && yarn $TEST_COMMAND && yarn "$BACKEND:stop"
elif [[ $BACKEND == "hardhat" ]]; then
yarn "$BACKEND:start:background" && yarn $TEST_COMMAND && yarn "$BACKEND:stop"
yarn $TEST_COMMAND && yarn "$BACKEND:stop"
else
yarn $TEST_COMMAND
fi
Loading