-
Notifications
You must be signed in to change notification settings - Fork 33
Add --simulate flag to governance:propose #775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
martinvol
wants to merge
7
commits into
master
Choose a base branch
from
martinvol/simulateTxPropose
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
c97bfd3
Add --simulate flag to governance:propose for forked-node simulation
martinvol 131b4c8
Note --simulate use case in flag description
martinvol 9493dbc
Use StrongAddress for governance address (repo convention)
martinvol 88c5b67
Pass governance address into checkProposal instead of refetching
martinvol 45d958e
Restore inline comments in createCeloPublicClient
martinvol 31b2073
Fail simulation when proposal tx has no 'to' address
martinvol 059b19f
Add changeset for --simulate flag
martinvol File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| --- | ||
| '@celo/celocli': minor | ||
| --- | ||
|
|
||
| Add `--simulate` flag to `governance:propose` command to simulate proposal execution against a forked node (e.g. anvil) before submitting on-chain. | ||
|
|
||
| Unlike the default `eth_call`-based simulation, `--simulate` actually sends each proposal transaction sequentially from the Governance contract address (which the node must have unlocked, e.g. `anvil --auto-impersonate`). This means transactions execute against cumulative state changes — useful for proposals where the success of one transaction depends on a previous one succeeding. If any transaction fails, the proposal is not submitted and the decoded revert reason is printed. | ||
|
|
||
| Example: `celocli governance:propose --jsonTransactions ./transactions.json --deposit 100e18 --from 0x... --descriptionURL https://... --simulate http://127.0.0.1:8545` |
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| import { type PublicCeloClient } from '@celo/actions' | ||
| import { createPublicClient, extractChain, type Transport } from 'viem' | ||
| import { celo, celoSepolia } from 'viem/chains' | ||
|
|
||
| export default async function createCeloPublicClient({ | ||
| transport, | ||
| nodeUrl, | ||
| }: { | ||
| transport: Transport | ||
| nodeUrl: string | ||
| }): Promise<PublicCeloClient> { | ||
| // Create an intermediate client to get the chain id | ||
| const intermediateClient = createPublicClient({ transport }) | ||
| const chainId = await intermediateClient.getChainId() | ||
| const extractedChain = extractChain({ | ||
| chains: [celo, celoSepolia], | ||
| id: chainId as typeof celo.id | typeof celoSepolia.id, | ||
| }) | ||
|
|
||
| if (extractedChain) { | ||
| return createPublicClient({ | ||
| transport, | ||
| batch: { multicall: true }, | ||
| chain: extractedChain, | ||
| }) | ||
| } | ||
|
|
||
| // we might be connecting to a dev chain or anvil fork or another testnet | ||
| return createPublicClient({ | ||
| transport, | ||
| chain: { | ||
| name: 'Custom Celo Chain', | ||
| id: chainId, | ||
| nativeCurrency: celo.nativeCurrency, | ||
| formatters: celo.formatters, | ||
| serializers: celo.serializers, | ||
| rpcUrls: { | ||
| default: { http: [nodeUrl] }, | ||
| }, | ||
| } as unknown as PublicCeloClient['chain'], | ||
| }) | ||
| } |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sending each proposal step via
walletClient.sendTransactionmakes the governance address the top-level transaction sender, so simulation can fail with insufficient-funds/unlocked-account errors even when the proposal would execute on-chain. In production execution, an external executor pays gas and Governance only performs internal calls, so this introduces false negatives forgovernance:propose --simulate(especially on forks where Governance has low balance).Useful? React with 👍 / 👎.