We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We should make sure there is a unit or integration test that simulates deploying a solidity contract.
First pass at integration test could be a bash script such as
forge init test-contract cd test-contract forge build # sed command to copy in a Storage contract forge create Storage # capture contract address cast call $ADDR "store(uint256)" "100" # validate response cast call $ADDR "retrieve()" # validate response
The text was updated successfully, but these errors were encountered:
https://hardhat.org/guides/deploying.html
Sorry, something went wrong.
No branches or pull requests
We should make sure there is a unit or integration test that simulates deploying a solidity contract.
First pass at integration test could be a bash script such as
The text was updated successfully, but these errors were encountered: