Open
Conversation
2 tasks
e4ef95f to
7ca0872
Compare
Allow callers to specify a Foundry profile for deployment builds by setting the FOUNDRY_PROFILE environment variable. This enables using optimized profiles (e.g., with solc optimizer enabled) for deployments while keeping the default profile for tests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7ca0872 to
66eac99
Compare
Contributor
|
6 line diff turned into 5 because mainnet deployment was removed in #29 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
deployment-foundry-profileinput to the reusable workflowFOUNDRY_PROFILEenv var in both testnet and mainnet deploy stepsThis allows callers to use an optimized Foundry profile for deployments (e.g., with the Solidity optimizer enabled) while keeping the default profile for tests. Useful when the optimizer must be disabled for tests (e.g., due to
vm.roll()bugs withvia_ir) but enabled for deployments to stay within contract size limits.Usage
Generated with Claude Code