-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: add rand() - publish v0.1.9-alpha (#191)
* ci: update Makefile to run the fhevm-solidity tests instead of python ERC20 test * ci: update fhevm-solidity version that includes the run_tests.sh script * ci: use evmos-node v0.1.9-alpha as base image for dev image * ci: add ability to checkout different evmos folder to take into account change in docker/Dockerfile.evmos-node.developer for instance in the github action env * ci: add script to run test in fhevm-solidity --------- Co-authored-by: Levent Demir <[email protected]>
- Loading branch information
1 parent
8456755
commit 7f33437
Showing
7 changed files
with
27 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
cp .env.example .env | ||
docker exec -i evmosnodelocal0 faucet $(npx hardhat task:getEthereumAddress) | ||
sleep 8 | ||
docker exec -i evmosnodelocal0 faucet $(npx hardhat accounts | grep 0x | sed -n '2p') | ||
sleep 8 | ||
docker exec -i evmosnodelocal0 faucet $(npx hardhat accounts | grep 0x | sed -n '3p') | ||
npm test |