Arsenii Kulikov

Results 148 comments of Arsenii Kulikov

> @klkvr never mind my suggestion, the problem is the same with -i 1 added to the script command. It prompts twice. is the script still using `vm.startBroadcast(vm.promptSecretUint("Enter the private...

I can see that clean build produces a warning ``` Compiler run successful with warnings: Warning (5574): Contract code size is 24649 bytes and exceeds 24576 bytes (a limit introduced...

ah sorry, I've tried it on repo from the initial issue description @ryanio could you try doing `forge clean` and then running `forge build` to see if there are any...

Looks like this is already possible when using `NetworkWallet`: https://github.com/alloy-rs/alloy/blob/2242ac86c5b5c13b85c0283e58e42a2c6a5a0b52/crates/network/src/transaction/signer.rs#L51-L60 Wondering if we should simplify this somehow?

since https://github.com/foundry-rs/foundry/pull/7186 `--gas-report` enables isolation by default. You can verify that by comparing `forge test --isolate` and `forge test --gas-report` outputs

we should definitely override `length` fn `self.encode` will still compute the length for the header so I guess we could just do something like ```rust let header = self.rlp_header(); let...

moved this to a separate `apply_evm_state_iter` method that's `pub(crate)` and is only used by `State`

It seems that there are some statetests failing that don't make much sense in scope of our usage patterns — e.g there are tests asserting that eip7702 tx with empty...