Open sam-goldman opened 9 months ago
wdyt @klkvr ?
I like the --sender-nonce <INITIAL_NONCE>
approach more, and it should be straightforward to implement
This issue feels a little bit like an edge case, but in general it highlights the need for extending forge script
with an API which would allow "preparing" EVM state for scripts/tests execution by executing arbitrary logic. E.g. increasing sender nonce in this case or pre-etching precompile mocks for L2s. Those state modifications should persist during both default and on-chain simulation.
I like the
--sender-nonce <INITIAL_NONCE>
approach more, and it should be straightforward to implement
We're happy to implement this solution. Should we go ahead and make the PR, or should we wait for input from the other Foundry core devs? @mattsse @klkvr
I like the
--sender-nonce <INITIAL_NONCE>
approach more, and it should be straightforward to implementWe're happy to implement this solution. Should we go ahead and make the PR, or should we wait for input from the other Foundry core devs? @mattsse @klkvr
Hey @mattsse @klkvr, just following up on this. Again, we're happy to implement this solution - just need confirmation on your side that it'll be accepted :)
hey @sam-goldman feel free to create a PR implementing this!
however, we are performing a script refactoring currently in #7247, so it's probably better to wait until it will be merged (probably today)
Hi @sam-goldman, https://github.com/foundry-rs/foundry/pull/7247 has been merged. Would you still be interested in implementing this?
Hi @sam-goldman, #7247 has been merged. Would you still be interested in implementing this?
Hey @zerosnacks, it's no longer relevant to us, so I'm not going to be implementing it
No problem, I've updated the title to reflect the feedback and will leave this ticket open as it seems like a useful feature to me
I am applying to this issue via OnlyDust platform.
I have experience with JavaScript and Python, along with a solid understanding of Solidity. My background in open-source projects equips me to effectively implement features and contribute to documentation. I can leverage my skills to enhance the Foundry toolset, ensuring clear communication and functionality for developers.
To solve the nonce management issue, I would implement the --sender-nonce <INITIAL_NONCE>
flag in the forge script
command. This flag will allow users to manually set the nonce to 1 if the multisig wallet is not deployed. I would then update the command handling to incorporate this flag, write tests to ensure functionality, and update the documentation to guide users on its usage. This will ensure consistent library addresses and improve transaction collection reliability.
I’d like to work on this.
I’d like to work on this.
Great thanks, assigning this to you @PedroRosalba
applied to this via only dust, idk why didnt show
On Mon, 4 Nov 2024 at 06:39 zerosnacks @.***> wrote:
Assigned #7248 https://github.com/foundry-rs/foundry/issues/7248 to @PedroRosalba https://github.com/PedroRosalba.
— Reply to this email directly, view it on GitHub https://github.com/foundry-rs/foundry/issues/7248#event-15100772904, or unsubscribe https://github.com/notifications/unsubscribe-auth/AVOFISVOI45ZDUPK4TPVELLZ646FTAVCNFSM6AAAAABD4TSOUCVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJVGEYDANZXGI4TANA . You are receiving this because you were assigned.Message ID: @.***>
Component
Forge
Describe the feature you would like
Context
Forge scripts provide a convenient way to collect transaction data that can be executed through a multisig wallet like a Gnosis Safe. We collect transactions in this manner at Sphinx. Specifically, here's the (non-standard) way that we use Forge scripts:
msg.sender
in the user's transactions is the Gnosis Safe, not the EOA that initiated the transaction).If you're wondering why we execute transactions through a Gnosis Safe at all, it's to provide features like gas abstraction and secure deployments/upgrades.
Problem
Collecting transactions in this manner works well for contract deployments and standard transactions that are defined in the Forge script. However, if the user's multisig wallet hasn't been deployed yet, Foundry uses an incorrect sender nonce to deploy linked libraries, which causes the addresses of the libraries to be incorrect.
Specifically, here's why the issue happens:
forge script
is called. Since the Gnosis Safe hasn't been deployed yet, the initial nonce at its address is 0. This means the address of the first library deployed in the script will be calculated with a sender nonce of 0.This limitation is preventing Sphinx from supporting linked libraries.
This issue doesn't occur if the user's multisig is already deployed because Foundry fetches the correct Gnosis Safe nonce, resulting in consistent library addresses.
Solutions
Preferred Solution
@RPate97 and I think the most straightforward solution is to add a new
--contract-sender
flag toforge script
. This flag would simply set the initial nonce of the sender to 1 if its nonce on-chain is currently 0. This flag should also be available inforge test
so that the user can get the same library addresses in their tests.We acknowledge that this flag only makes sense in the context of collecting transactions to be executed later through a multisig wallet. This flag doesn't make sense when broadcasting transactions onto a live network via
forge script
because a smart contract can't sign a transaction.We see this flag as a patch that satisfies our use case with minimal effort. In the future, it may make more sense to have some sort of
forge collect
command built specifically for this purpose.Alternative Solution 1
The
--contract-sender
flag is for a rather specific use case. A more general solution could be a--sender-nonce <INITIAL_NONCE>
flag, which could potentially be useful for EOAs too, if users need to manually specify an initial nonce for whatever reason. I'm not sure if that's a valid use case though, since presumably Foundry handles the sender's nonce internally.Alternative Solution 2
An alternative solution is to calculate the correct library addresses outside of the Forge script, then deploy these libraries manually inside of the script. However, this would require us to re-implement Foundry's logic to resolve library dependencies, which is non-trivial and would lead to quite a bit of redundancy between our systems. It makes a lot more sense to leverage Foundry's existing logic instead of re-implementing it.
Alternative Solution 3
Another solution is to deploy the multisig in advance so that Foundry recognizes that its nonce is 1. This isn't an acceptable solution because the user should be able to fully simulate their script before any transactions are sent on-chain, which is one of Forge script's most compelling features.