verifyGovernor.sh 507 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. set -euxo pipefail
  3. # Changed: GovernorHarness missing
  4. #
  5. # Note: rule `immutableFieldsAfterProposalCreation` fails with
  6. # GovernorFullHarness because of late quorum changing the vote's end.
  7. certoraRun \
  8. certora/harnesses/ERC20VotesHarness.sol certora/harnesses/GovernorHarness.sol \
  9. --verify GovernorHarness:certora/specs/GovernorBase.spec \
  10. --link GovernorHarness:token=ERC20VotesHarness \
  11. --solc solc \
  12. --optimistic_loop \
  13. --settings -copyLoopUnroll=4 \
  14. $@