Forge Proposal Simulator
  • Forge Proposal Simulator
  • Overview
    • Use cases
    • Architecture
      • Addresses
      • Proposal Functions
  • Guides
    • Introduction
    • Multisig Proposal
    • Timelock Proposal
    • Governor Bravo Proposal
    • OZ Governor Proposal
    • Customizing A Proposal
    • Mainnet examples
      • Arbitrum Timelock
      • Compound Governor Bravo
      • Optimism Multisig
      • ENS OZ Governor
  • Testing
    • Integration Tests
  • Github Actions
    • Printing Calldata on Pull Requests
Powered by GitBook
On this page
  • OpenZeppelin Timelock Controller
  • Gnosis Safe Multisig
  • Compound Governor Bravo
  • OZ Governor
  1. Overview

Use cases

PreviousForge Proposal SimulatorNextArchitecture

Last updated 10 months ago

The framework is compatible with OpenZeppelin Timelock, Compound Governor Bravo, OZ Governor, and GnosisSafe Multisig wallet contracts. We encourage the submission of pull requests to accommodate different governance models.

OpenZeppelin Timelock Controller

The facilitates the creation of the scheduling and execution of calldata. It also allows developers to test the calldata by simulating the entire proposal lifecycle, from submission to execution, using foundry cheat codes to bypass the delay period.

Gnosis Safe Multisig

The generates and simulates the Multicall calldata. This allows developers to check protocol health after calldata execution by using Foundry cheat codes to simulate actions from the actual Multisig address. Calldata generated from this module can be used directly in Gnosis Safe's UI.

Compound Governor Bravo

The facilitates the creation of the governor propose calldata. It also allows developers to test the calldata by simulating the entire proposal lifecycle, from proposing, voting, queuing, and finally executing.

OZ Governor

Similar to Compound Governor Bravo, simulates the entire proposal lifecycle for the governor with a timelock controller extension.

Timelock Proposal
Multisig Proposal
Governor Bravo Proposal
OZ Governor Proposal