--:----:--Keyboard shortcuts (?)Fullscreen (f)

Cross-chain Gov - Testing with local networks - First demo - April 1, 2025

by julienbrg
macOS ◆ xterm-256color ◆ zsh 9 views

Install supersim and:

supersim fork --chains=op,base --interop.enabled

Then in another terminal,

Deploy the factories to op (chain A) through Safe Singleton Deployer:

forge script script/DeployFactories.s.sol --rpc-url op --broadcast

Deploy the factories to base (chain B):

forge script script/DeployFactories.s.sol --rpc-url base --broadcast

[!NOTE] We deploy from a static wallet private key, but please note anyone can deploy the factories to any compatible network.

Now deploy a DAO to op through the factory contracts with OP as home chain:

forge script script/DeployDAO.s.sol --rpc-url op --broadcast

And deploy the DAO to base:

forge script script/DeployDAO.s.sol --rpc-url base --broadcast

Call propose on op:

forge script script/AddMemberProposal.s.sol --rpc-url op --broadcast

Then follow the instructions:

  • Alice votes
  • Bob votes
  • We execute the proposal
  • We verify if Francis is a DAO member on chain A
  • We generate a proof on chain A
  • We claim the proof on chain B
  • We verify if Francis is a DAO member on chain B

Links