grandizzy
grandizzy
you can do ``` cast send $(cast az) 0x1234 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 ``` we're keeping this to update the docs for ``` [SIG] The signature of the function to call ```...
we're going to document this and make sure behavior is well explained
yeah, this won't work for external PRs as they cannot access secrets
@sakulstra you have the option to pass the `--evm-version` arg to forge script For tests that's supported inline like ```Solidity function setUp() public { myContract = new MyContract(); } ///...
sorry, i misunderstood your use case. Switching evm version in same script / test is something we're looking to add (through a `setEvmVersion` cheatcode or by automatically figuring it out...
> [@grandizzy](https://github.com/grandizzy) on latest nightly i think there's some rather weird "bug", that is helping us, but I thought makes sense report anyways 😓 > > If you run: https://github.com/bgd-labs/aave-proposals-v3/blob/main/src/20250610_Multi_UpgradeAaveInstancesToV34/UpgradeAaveInstancesToV34_20250610.s.sol...
@sakulstra re https://x.com/sakulstra/status/1975830082255266278 I am still trying to figure out if we could reuse existing compiler profiles, could you please clone https://github.com/grandizzy/foundry-9840-solc then forge build and you will see different...
> [@grandizzy](https://github.com/grandizzy) idk if i correctly understand the example - in the end you duplicate the contracts and it works because of this [compiler restriction](https://github.com/grandizzy/foundry-9840-solc/blob/main/foundry.toml#L6-L9), right? > > How would...
@sakulstra actually you can already do that, with a config like ```toml [profile.default] solc_version = "0.8.13" src = "src" out = "out/default" libs = ["lib"] [profile.chain1] solc_version = "0.8.13" src...
I considered adding a `@tag=` / `@branch=` arg but I think the UX friendly way (and already supported) is to specify the full path, for example ```bash forge install smartcontractkit/ccip@contracts-ccip/v1.2.1...