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

feat: adds support for forge verify-check via zksync verifier #35

Merged
merged 3 commits into from
Oct 24, 2024
Merged
Changes from all 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
2 changes: 1 addition & 1 deletion src/supported-commands/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ This is a comprehensive review of all the Foundry commands actually supported in
| forge tree | ✅ Supported | Displays the dependency tree of the project, showing how contracts and libraries are interconnected. |
| forge update | ✅ Supported | Updates the project's dependencies to their latest versions, ensuring everything is up-to-date. |
| forge verify-bytecode | ❌ Not Supported | Verifies that a deployed contract's bytecode matches the expected source code, ensuring it hasn't been tampered with. |
| forge verify-check | ❌ Not Supported | Checks the verification status of a contract on a blockchain explorer like Etherscan, confirming that it has been successfully verified. |
| forge verify-check | Supported | Checks the contract's verification status on either the ZKsync block explorer (using `--verifier`) or Etherscan, confirming successful verification. |
| forge verify-contract | ✅ Supported | Verifies a deployed contract on Etherscan, ensuring it matches the source code. |
| cast 4byte | ✅ Supported | Fetches function signatures from the 4byte.directory by their selector. |
| cast 4byte-decode | ✅ Supported | Decodes a given 4-byte selector into its associated function signature. |
Expand Down
Loading