Arsenii Kulikov
Arsenii Kulikov
probably https://github.com/alloy-rs/alloy/issues/389
needs https://github.com/foundry-rs/compilers/pull/108 and will be blocked by yansi update
@clemire do you have a repro for this you could share? can you confirm if the issue first appeared during last two days or it was the case earlier?
Might be https://github.com/alloy-rs/alloy/issues/389 if scripts are hanging after broadcasting start
@wanderer could you please try updating foundry to latest nightly and running script again? we've recently migrated to new wallet adapters and this migration helped to fix some Ledger issues...
yeah, you should use vm.startBroadcast() or vm.startBroadcast(address) cheatcodes for hw wallets
does 0xcb7c5CA542FE243bD1622d2951dEf45c8e3Aaf3F match any other addresses on your Trezor?
@elfedy yep, I was keeping zkSync usecase in mind We've decided to not make output artifact type generic for now as foundry can already benefit from generic `Compiler` returning artifacts...
@anajuliabit sorry this is a bit hard to reproduce without knowing details about your project structure. mind giving any hints on how to setup local anvil node for the failing...
The issue here is that you are switching forks inside of `Prososal` contract which is not persistent. Adding a simple `vm.makePersistent(address(proposal))` solved this for me. cc @mattsse do you think...