gitextract_axrthmtg/ ├── .codeflow.yml ├── .github/ │ └── workflows/ │ └── validate-templates.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Multisig.mk ├── README.md ├── SECURITY.md ├── mainnet/ │ ├── 2023-06-14-deploy/ │ │ ├── Makefile │ │ ├── deployed/ │ │ │ └── addresses.json │ │ ├── execute/ │ │ │ └── RunDeployBedrock.s.sol │ │ ├── foundry.toml │ │ ├── inputs/ │ │ │ ├── construct-config.sh │ │ │ ├── deploy-config.json │ │ │ └── misc-config.json │ │ └── remappings.txt │ ├── 2023-06-14-deploy-deterministic-proxy/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeterministicProxyDeploy.s.sol/ │ │ │ └── 84531/ │ │ │ └── run-1686756835.json │ │ ├── remappings.txt │ │ └── script/ │ │ └── DeterministicProxyDeploy.s.sol │ ├── 2023-06-14-test-tx/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── remappings.txt │ │ ├── script/ │ │ │ └── Test.s.sol │ │ └── src/ │ │ └── Test.sol │ ├── 2023-06-15-unpause-portal/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UnpausePortal.s.sol/ │ │ │ └── 1/ │ │ │ ├── run-1686800969.json │ │ │ ├── run-1686801711.json │ │ │ └── run-1686802144.json │ │ ├── remappings.txt │ │ └── script/ │ │ └── UnpausePortal.s.sol │ ├── 2023-06-15-validate-deploy/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── remappings.txt │ │ └── script/ │ │ └── ValidateDeploy.s.sol │ ├── 2023-06-21-transfer-system-cfg-owner/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TransferOwner.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1687552190.json │ │ ├── remappings.txt │ │ ├── script/ │ │ │ └── TransferOwner.s.sol │ │ └── sign.sh │ ├── 2023-07-11-test-l2-safe/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployTestProxy.s.sol/ │ │ │ │ └── 8453/ │ │ │ │ └── run-1689807430.json │ │ │ └── TestL2Safe.s.sol/ │ │ │ └── 8453/ │ │ │ └── run-1689855846.json │ │ └── script/ │ │ ├── DeployTestProxy.s.sol │ │ └── TestL2Safe.s.sol │ ├── 2023-07-17-test-l1-nested-safe/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployTestProxy.s.sol/ │ │ │ │ └── 1/ │ │ │ │ ├── run-1689870341.json │ │ │ │ ├── run-1690069785.json │ │ │ │ ├── run-1690244404.json │ │ │ │ └── run-1690245053.json │ │ │ └── TestL1NestedSafe.s.sol/ │ │ │ └── 1/ │ │ │ ├── approve-1691353255.json │ │ │ ├── approve-1691353718.json │ │ │ └── run-1691353817.json │ │ └── script/ │ │ ├── DeployTestProxy.s.sol │ │ └── TestL1NestedSafe.s.sol │ ├── 2023-07-19-challenger-1-of-2/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeleteL2OutputsCB.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1690499220.json │ │ │ ├── DeleteL2OutputsOP.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1691703002.json │ │ │ ├── DeployChallenger.s.sol/ │ │ │ │ └── run-1689808110.json │ │ │ └── UpgradeL2OO.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1690314255.json │ │ └── script/ │ │ ├── DeleteL2OutputsCB.s.sol │ │ ├── DeleteL2OutputsOP.s.sol │ │ ├── DeployChallenger.s.sol │ │ └── UpgradeL2OO.s.sol │ ├── 2023-07-19-test-l2-nested-safe/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployTestProxy.s.sol/ │ │ │ │ └── 8453/ │ │ │ │ └── run-1689883950.json │ │ │ └── TestNestedL2Safe.s.sol/ │ │ │ └── 8453/ │ │ │ ├── approve-1691008217.json │ │ │ ├── approve-1691008879.json │ │ │ └── run-1691009077.json │ │ └── script/ │ │ ├── DeployTestProxy.s.sol │ │ └── TestNestedL2Safe.s.sol │ ├── 2023-07-26-transfer-owner-nested-safes/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── TransferOwnerL1.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1691523415.json │ │ │ └── TransferOwnerL2.s.sol/ │ │ │ └── 8453/ │ │ │ └── run-1691524273.json │ │ └── script/ │ │ ├── TransferOwnerL1.s.sol │ │ └── TransferOwnerL2.s.sol │ ├── 2023-08-07-test-op-fee-nested-safe/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TestNestedL2Safe.s.sol/ │ │ │ └── 10/ │ │ │ ├── run-1692981334.json │ │ │ ├── run-1692981492.json │ │ │ └── run-1692981620.json │ │ └── script/ │ │ └── TestNestedL2Safe.s.sol │ ├── 2023-08-15-support-eas/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpgradeToEAS.s.sol/ │ │ │ └── 8453/ │ │ │ ├── run-1694183897.json │ │ │ ├── run-1694184082.json │ │ │ └── run-1694184181.json │ │ └── script/ │ │ └── UpgradeToEAS.s.sol │ ├── 2023-08-22-fee-vault-fix/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── FixFeeVaultsL2.s.sol/ │ │ │ └── 8453/ │ │ │ ├── run-1693342112.json │ │ │ ├── run-1693585668.json │ │ │ └── run-1693589726.json │ │ └── script/ │ │ ├── DeployNewFeeVaultsL2.s.sol │ │ └── FixFeeVaultsL2.s.sol │ ├── 2023-08-28-deploy-revshare/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpgradeToFeeDisburser.s.sol/ │ │ │ └── 8453/ │ │ │ └── run-1693609606.json │ │ └── script/ │ │ ├── DeployBalanceTracker.s.sol │ │ ├── DeployFeeDisburser.s.sol │ │ ├── FeeDisburserOwnershipTransfer.s.sol │ │ └── UpgradeToFeeDisburser.s.sol │ ├── 2024-02-21-setup-smart-escrow/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeploySmartEscrow.s.sol/ │ │ │ └── 10/ │ │ │ └── run-1709074703.json │ │ └── script/ │ │ └── DeploySmartEscrow.s.sol │ ├── 2024-02-23-transfer-op/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── TransferAndDelegateOPTokens.s.sol │ │ └── TransferUpfrontOPTokens.s.sol │ ├── 2024-03-05-pause-unpause-test/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── PausePortal.s.sol/ │ │ │ │ └── 1/ │ │ │ │ ├── run-1711563045.json │ │ │ │ └── run-1711563069.json │ │ │ └── UnpausePortal.s.sol/ │ │ │ └── 1/ │ │ │ ├── run-1711567810.json │ │ │ └── run-1711567828.json │ │ └── script/ │ │ ├── PausePortal.s.sol │ │ └── UnpausePortal.s.sol │ ├── 2024-03-07-ecotone-sysconfig-updates/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasConfig.sol/ │ │ │ └── 1/ │ │ │ └── run-1710375473.json │ │ └── script/ │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol │ ├── 2024-03-26-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasLimit.sol/ │ │ │ └── 1/ │ │ │ ├── run-1711570739.json │ │ │ └── run-1711570882.json │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-04-01-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasLimit.sol/ │ │ │ └── 1/ │ │ │ └── run-1712005481.json │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-04-12-deployERC20Factory/ │ │ ├── Makefile │ │ ├── deployed/ │ │ │ └── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── RunERC20FactoryDeploy.s.sol/ │ │ │ └── 8453/ │ │ │ └── run-1713280196.json │ │ └── script/ │ │ └── RunERC20FactoryDeploy.s.sol │ ├── 2024-04-15-redeploy-smart-escrow/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeploySmartEscrow.s.sol/ │ │ │ └── 10/ │ │ │ └── run-1713902413.json │ │ └── script/ │ │ └── DeploySmartEscrow.s.sol │ ├── 2024-04-17-upgrade-erc20-factory/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpgradeOptimismMintableERC20Factory.s.sol/ │ │ │ └── 8453/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1716225695.json │ │ │ ├── run-1716225767.json │ │ │ └── run-1716225813.json │ │ └── script/ │ │ └── UpgradeOptimismMintableERC20Factory.s.sol │ ├── 2024-04-30-deployTempERC20Factory/ │ │ ├── Makefile │ │ ├── deployed/ │ │ │ └── addresses.json │ │ ├── foundry.toml │ │ ├── inputs/ │ │ │ ├── construct-config.sh │ │ │ ├── deploy-config.json │ │ │ └── misc-config.json │ │ ├── records/ │ │ │ └── RunDeployERC20Factory.sol/ │ │ │ └── 8453/ │ │ │ └── run-1714483769.json │ │ ├── script/ │ │ │ └── RunDeployERC20Factory.sol │ │ └── src/ │ │ └── ERC20Factory.sol │ ├── 2024-05-28-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasLimit.sol/ │ │ │ └── 1/ │ │ │ └── run-1716922926.json │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-05-30-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-06-05-reredeploy-smart-escrow/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeploySmartEscrow.s.sol/ │ │ │ └── 10/ │ │ │ ├── run-1719275042.json │ │ │ ├── run-1719275101.json │ │ │ └── run-1722111961.json │ │ └── script/ │ │ └── DeploySmartEscrow.s.sol │ ├── 2024-06-17-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-06-25-update-gas-config/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol │ ├── 2024-06-28-update-gas-config/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol │ ├── 2024-07-10-update-gas-config/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol │ ├── 2024-07-16-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-07-23-set-l1-resolver/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── SetL1Resolver.sol │ ├── 2024-07-23-transfer-owner-balance-tracker/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── BalanceTrackerOwnershipTransfer.sol/ │ │ │ └── 1/ │ │ │ └── run-1721845061.json │ │ └── script/ │ │ └── BalanceTrackerOwnershipTransfer.sol │ ├── 2024-07-24-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-07-24-reduce-batcher-proposer-balance-targets/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployBalanceTracker.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1721866466.json │ │ └── script/ │ │ ├── DeployBalanceTracker.s.sol │ │ └── UpgradeBalanceTracker.s.sol │ ├── 2024-07-30-set-new-l1-resolver/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SetL1Resolver.sol/ │ │ │ └── 1/ │ │ │ └── run-1722367323.json │ │ └── script/ │ │ └── SetL1Resolver.sol │ ├── 2024-07-30-transfer-op/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TransferOPTokens.s.sol/ │ │ │ └── 10/ │ │ │ ├── run-1723148142.json │ │ │ ├── run-1723148655.json │ │ │ └── run-1723148770.json │ │ └── script/ │ │ └── TransferOPTokens.s.sol │ ├── 2024-07-31-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol │ ├── 2024-08-27-disburse-basenames/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── disbursement.json │ │ ├── disbursement1.csv │ │ ├── disbursement10.csv │ │ ├── disbursement11.csv │ │ ├── disbursement12.csv │ │ ├── disbursement13.csv │ │ ├── disbursement14.csv │ │ ├── disbursement15.csv │ │ ├── disbursement2.csv │ │ ├── disbursement3.csv │ │ ├── disbursement4.csv │ │ ├── disbursement5.csv │ │ ├── disbursement6.csv │ │ ├── disbursement7.csv │ │ ├── disbursement8.csv │ │ ├── disbursement9.csv │ │ ├── foundry.toml │ │ ├── parser.sh │ │ ├── records/ │ │ │ └── DisburseBasenames.sol/ │ │ │ └── 8453/ │ │ │ ├── executeWithNonce-latest.json │ │ │ ├── run-1724878834.json │ │ │ ├── run-1724878939.json │ │ │ ├── run-1725393994.json │ │ │ ├── run-1725654743.json │ │ │ ├── run-1745611292.json │ │ │ ├── run-1749233082.json │ │ │ └── run-1757534662694.json │ │ └── script/ │ │ └── DisburseBasenames.sol │ ├── 2024-09-23-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1727285381.json │ ├── 2024-10-01-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1727888979.json │ ├── 2024-10-08-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1728494142.json │ ├── 2024-10-15-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1729105634.json │ ├── 2024-10-22-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1729703140.json │ ├── 2024-11-18-increase-max-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── output │ │ ├── patch/ │ │ │ └── max-gas-limit.patch │ │ ├── records/ │ │ │ ├── DeploySystemConfig.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1733860170.json │ │ │ └── UpgradeSystemConfig.s.sol/ │ │ │ └── 1/ │ │ │ ├── run-1733947633.json │ │ │ ├── run-1733957906.json │ │ │ └── run-1733958067.json │ │ └── script/ │ │ ├── DeploySystemConfig.s.sol │ │ └── UpgradeSystemConfig.s.sol │ ├── 2024-12-04-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1733328181.json │ ├── 2024-12-11-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1733962358.json │ ├── 2024-12-18-holocene-deployments/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── deployed/ │ │ │ └── addresses.json │ │ ├── foundry.toml │ │ ├── inputs/ │ │ │ ├── construct-config.sh │ │ │ ├── deploy-config.json │ │ │ └── misc-config.json │ │ ├── records/ │ │ │ └── DeployHoloceneContracts.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1734652451.json │ │ └── script/ │ │ └── DeployHoloceneContracts.s.sol │ ├── 2024-12-18-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1734551212.json │ ├── 2025-01-08-transfer-proxyadmin-owner-L1alias/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.MD │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TransferOwner.s.sol/ │ │ │ └── 8453/ │ │ │ ├── run-1738699790.json │ │ │ ├── run-1738702467.json │ │ │ └── run-1738702575.json │ │ └── script/ │ │ └── TransferOwner.s.sol │ ├── 2025-01-15-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1736968347.json │ ├── 2025-01-15-nested-ownership-transfer/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeploySafes.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1745514205.json │ │ │ └── UpdateSigners.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1745938970.json │ │ ├── script/ │ │ │ ├── DeploySafes.s.sol │ │ │ └── UpdateSigners.s.sol │ │ └── signers.json │ ├── 2025-01-22-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 1/ │ │ └── run-1737568790.json │ ├── 2025-01-29-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ └── foundry.toml │ ├── 2025-02-12-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1739387882.json │ ├── 2025-02-19-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1739987678.json │ ├── 2025-02-25-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1740593054.json │ ├── 2025-03-05-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1741194410.json │ ├── 2025-03-05-upgrade-fault-proofs/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployDisputeGames.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1742911814.json │ │ └── script/ │ │ ├── DeployDisputeGames.s.sol │ │ └── UpgradeDGF.s.sol │ ├── 2025-03-19-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1742400711.json │ ├── 2025-03-26-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1743002773.json │ ├── 2025-04-07-init-smart-escrow-ownership-transfer/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── InitOwnershipTransfer.s.sol │ ├── 2025-04-07-update-fee-disperser-ownership/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── OwnershipTransfer.s.sol/ │ │ │ └── 8453/ │ │ │ └── run-1749317765.json │ │ └── script/ │ │ └── OwnershipTransfer.s.sol │ ├── 2025-04-23-upgrade-fault-proofs/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployDisputeGames.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1745860191.json │ │ │ └── UpgradeDGF.s.sol/ │ │ │ └── 1/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1746550202.json │ │ │ ├── run-1746550275.json │ │ │ ├── run-1746553742.json │ │ │ └── run-1746643611.json │ │ ├── script/ │ │ │ ├── DeployDisputeGames.s.sol │ │ │ └── UpgradeDGF.s.sol │ │ └── validations/ │ │ ├── CB.md │ │ ├── OP.md │ │ └── SC.md │ ├── 2025-04-29-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1746038678.json │ ├── 2025-05-06-fund-ledgers/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── funding.json │ │ ├── records/ │ │ │ └── Fund.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1747176781.json │ │ └── script/ │ │ └── Fund.s.sol │ ├── 2025-05-07-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── SetGasLimit.sol/ │ │ └── 1/ │ │ └── run-1746637693.json │ ├── 2025-05-13-incident-multisig-signers/ │ │ ├── Makefile │ │ ├── OwnerDiff.json │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateSigners.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1749035499.json │ │ └── script/ │ │ └── UpdateSigners.s.sol │ ├── 2025-05-15-eip1559-denominator-reduction/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── ReduceEip1559Denominator.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1748379182.json │ │ └── script/ │ │ └── ReduceEip1559Denominator.s.sol │ ├── 2025-06-04-upgrade-system-config/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── patch/ │ │ │ └── max-gas-limit.patch │ │ ├── records/ │ │ │ ├── DeploySystemConfig.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1749474907.json │ │ │ └── UpgradeSystemConfig.s.sol/ │ │ │ └── 1/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1750783683.json │ │ │ ├── run-1750783800.json │ │ │ ├── run-1750783885.json │ │ │ ├── run-1750783934.json │ │ │ └── run-1750797290.json │ │ ├── script/ │ │ │ ├── DeploySystemConfig.s.sol │ │ │ └── UpgradeSystemConfig.s.sol │ │ └── validations/ │ │ ├── BASE_NESTED_VALIDATION.md │ │ ├── BASE_SC_VALIDATION.md │ │ └── OP_VALIDATION.md │ ├── 2025-06-18-eip1559-elasticity-increase/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1750283342.json │ │ └── script/ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol │ ├── 2025-06-25-safe-swap-owner/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SwapOwner.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1752508958.json │ │ ├── script/ │ │ │ └── SwapOwner.s.sol │ │ └── validations/ │ │ └── VALIDATION.md │ ├── 2025-07-24-eth-recovery/ │ │ ├── ARBITRUM_VALIDATION.md │ │ ├── BASE_VALIDATION.md │ │ ├── Makefile │ │ ├── OPTIMISM_VALIDATION.md │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── output/ │ │ │ ├── arbitrum/ │ │ │ │ └── recovery_addresses.json │ │ │ ├── base/ │ │ │ │ └── recovery_addresses.json │ │ │ └── optimism/ │ │ │ └── recovery_addresses.json │ │ ├── records/ │ │ │ ├── ArbitrumExecuteRecovery.s.sol/ │ │ │ │ └── 1/ │ │ │ │ ├── run-1754080993.json │ │ │ │ ├── run-1754082985.json │ │ │ │ ├── run-1754083142.json │ │ │ │ ├── run-1754083249.json │ │ │ │ ├── run-1754083348.json │ │ │ │ └── run-1754083422.json │ │ │ ├── DeployRecoveryImplementation.s.sol/ │ │ │ │ ├── 10/ │ │ │ │ │ └── run-1753908210.json │ │ │ │ ├── 42161/ │ │ │ │ │ └── run-1753908149.json │ │ │ │ └── 8453/ │ │ │ │ └── run-1753908081.json │ │ │ └── OPStackExecuteRecovery.s.sol/ │ │ │ └── 1/ │ │ │ ├── run-1754081221.json │ │ │ ├── run-1754081917.json │ │ │ ├── run-1754082409.json │ │ │ ├── run-1754082458.json │ │ │ ├── run-1754082505.json │ │ │ ├── run-1754084018.json │ │ │ ├── run-1754084077.json │ │ │ ├── run-1754084126.json │ │ │ ├── run-1754084197.json │ │ │ ├── run-1754084245.json │ │ │ ├── run-1754084306.json │ │ │ ├── run-1754084378.json │ │ │ ├── run-1754084425.json │ │ │ ├── run-1754084474.json │ │ │ ├── run-1754084558.json │ │ │ ├── run-1754084607.json │ │ │ ├── run-1754084632.json │ │ │ ├── run-1754084678.json │ │ │ └── run-1754084725.json │ │ └── script/ │ │ ├── ArbitrumExecuteRecovery.s.sol │ │ ├── DeployRecoveryImplementation.s.sol │ │ ├── DeployRecoveryProxies.s.sol │ │ └── OPStackExecuteRecovery.s.sol │ ├── 2025-08-13-safe-swap-owner/ │ │ ├── Makefile │ │ ├── OwnerDiff.json │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SwapOwner.s.sol/ │ │ │ └── 8453/ │ │ │ ├── run-1757436536544.json │ │ │ └── run-1757436608629.json │ │ └── script/ │ │ └── SwapOwner.s.sol │ ├── 2025-10-06-funding/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── funding.json │ │ └── script/ │ │ └── Fund.s.sol │ ├── 2025-10-07-upgrade-to-U16a/ │ │ ├── README.md │ │ └── records/ │ │ └── OPCMUpgradeV410.sol/ │ │ └── 1/ │ │ ├── run-1759861934.json │ │ ├── run-1759862413.json │ │ ├── run-1759862485.json │ │ └── run-1759862580.json │ ├── 2025-10-20-incident-multisig-signers/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── OwnerDiff.json │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateSigners.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1761579001803.json │ │ ├── script/ │ │ │ └── UpdateSigners.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2025-10-28-increase-gas-and-elasticity-limit/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1761755774673.json │ │ ├── script/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2025-11-05-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── validations/ │ │ └── base-signer.json │ ├── 2025-11-10-increase-gas-and-elasticity-limit/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasParams.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1762965805898.json │ │ ├── script/ │ │ │ └── UpdateGasParams.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2025-11-15-deploy-cb-multicall/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployCBMulticall.s.sol/ │ │ │ └── 8453/ │ │ │ └── run-1763160551942.json │ │ └── script/ │ │ └── DeployCBMulticall.s.sol │ ├── 2025-11-20-deploy-cb-multicall/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployCBMulticall.s.sol/ │ │ │ ├── 1/ │ │ │ │ └── run-1763649491942.json │ │ │ └── 8453/ │ │ │ └── run-1763649543610.json │ │ └── script/ │ │ └── DeployCBMulticall.s.sol │ ├── 2025-11-21-u17-jovian-upgrade/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpgradeWithOpSmartContractManager.sol/ │ │ │ └── 1/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1764604369938.json │ │ │ ├── run-1764604491152.json │ │ │ ├── run-1764604526281.json │ │ │ └── run-1764604704970.json │ │ ├── script/ │ │ │ ├── MultisigScript.sol │ │ │ └── UpgradeWithOpSmartContractManager.sol │ │ └── validations/ │ │ ├── base-security-council-signer.json │ │ ├── coinbase-signer.json │ │ └── optimism-signer.json │ ├── 2025-11-25-base-bridge-deployment/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── config.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployBridge.s.sol/ │ │ │ └── 8453/ │ │ │ └── run-1764164771386.json │ │ └── script/ │ │ └── DeployBridge.s.sol │ ├── 2025-12-01-pause-bridge-base/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── PauseBridge.s.sol/ │ │ │ └── 1/ │ │ │ ├── run-1764695666667.json │ │ │ └── run-1764696374577.json │ │ ├── script/ │ │ │ └── PauseBridge.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2025-12-04-set-jovian-parameters/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SetJovianParameters.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1764871622342.json │ │ ├── script/ │ │ │ └── SetJovianParameters.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2025-12-08-increase-gas-and-elasticity-limit/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1766084929.json │ │ ├── script/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2025-12-15-increase-min-base-fee/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── IncreaseMinBaseFee.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1766085218628.json │ │ ├── script/ │ │ │ └── IncreaseMinBaseFee.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2026-01-09-op-stack-upgrade-18/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── ExecuteOPCM.s.sol/ │ │ │ └── 1/ │ │ │ ├── run-1770741422696.json │ │ │ ├── run-1770741733158.json │ │ │ ├── run-1770742081453.json │ │ │ └── run-1770742201070.json │ │ ├── script/ │ │ │ └── ExecuteOPCM.s.sol │ │ └── validations/ │ │ ├── coinbase-signer.json │ │ ├── optimism-signer.json │ │ └── security-council-signer.json │ ├── 2026-01-20-update-basefee-da-footprint/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SetMinBaseFeeAndDAFootprint.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1769112998506.json │ │ ├── script/ │ │ │ └── SetMinBaseFeeAndDAFootprint.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2026-01-28-update-min-base-fee/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SetMinBaseFee.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1770084530335.json │ │ ├── script/ │ │ │ └── SetMinBaseFee.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2026-02-03-eip1559-denominator-increase/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── IncreaseEip1559Denominator.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1770211645877.json │ │ ├── script/ │ │ │ └── IncreaseEip1559Denominator.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2026-02-17-update-min-base-fee/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SetMinBaseFee.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1771531755195.json │ │ ├── script/ │ │ │ └── SetMinBaseFee.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2026-02-19-superchain-separation/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── AddSecurityCouncilSigner.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1772559435293.json │ │ │ ├── DeployFeeDisburser.s.sol/ │ │ │ │ └── 8453/ │ │ │ │ └── run-1771962505194.json │ │ │ ├── DeploySuperchainConfigAndSystemConfig.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1771973281770.json │ │ │ ├── TerminateSmartEscrow.s.sol/ │ │ │ │ └── 10/ │ │ │ │ └── run-1772559267231.json │ │ │ ├── UpdateCBSafeSigners.s.sol/ │ │ │ │ └── 1/ │ │ │ │ ├── approve-latest.json │ │ │ │ ├── run-1772558762154.json │ │ │ │ ├── run-1772558857931.json │ │ │ │ └── run-1772558895941.json │ │ │ ├── UpdateProxyAdminOwnerSigners.s.sol/ │ │ │ │ └── 1/ │ │ │ │ ├── approve-latest.json │ │ │ │ ├── run-1772558365917.json │ │ │ │ ├── run-1772558522364.json │ │ │ │ ├── run-1772558558823.json │ │ │ │ ├── run-1772558642511.json │ │ │ │ └── run-1772558678595.json │ │ │ ├── UpgradeFeeDisburser.s.sol/ │ │ │ │ └── 1/ │ │ │ │ └── run-1772559195571.json │ │ │ ├── UpgradeSystemConfig.s.sol/ │ │ │ │ └── 1/ │ │ │ │ ├── approve-latest.json │ │ │ │ ├── run-1772558954723.json │ │ │ │ ├── run-1772559037725.json │ │ │ │ └── run-1772559062275.json │ │ │ └── WithdrawSmartEscrow.s.sol/ │ │ │ └── 10/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1772559325436.json │ │ │ └── run-1773681700867.json │ │ ├── script/ │ │ │ ├── AddSecurityCouncilSigner.s.sol │ │ │ ├── DeployFeeDisburser.s.sol │ │ │ ├── DeploySuperchainConfigAndSystemConfig.s.sol │ │ │ ├── TerminateSmartEscrow.s.sol │ │ │ ├── UpdateCBSafeSigners.s.sol │ │ │ ├── UpdateProxyAdminOwnerSigners.s.sol │ │ │ ├── UpgradeFeeDisburser.s.sol │ │ │ ├── UpgradeSystemConfig.s.sol │ │ │ └── WithdrawSmartEscrow.s.sol │ │ └── validations/ │ │ ├── coinbase-signer-part-1.json │ │ ├── coinbase-signer-part-2.json │ │ ├── coinbase-signer-part-3.json │ │ ├── coinbase-signer-part-4.json │ │ ├── coinbase-signer-part-5.json │ │ ├── coinbase-signer-part-6.json │ │ ├── optimism-op-mainnet-signer.json │ │ ├── optimism-signer.json │ │ ├── security-council-signer-part-1.json │ │ ├── security-council-signer-part-2.json │ │ ├── security-council-signer-part-3.json │ │ └── security-council-signer-part-4.json │ ├── 2026-02-27-pause-superchain-config/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── PauseSuperchainConfig.s.sol │ ├── 2026-03-11-patch-fee-disburser/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── patch/ │ │ │ ├── fee-disburser-semver.patch │ │ │ └── ifee-vault-withdraw.patch │ │ ├── records/ │ │ │ ├── DeployFeeDisburser.s.sol/ │ │ │ │ └── 8453/ │ │ │ │ └── run-1773254584772.json │ │ │ └── UpgradeFeeDisburser.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1773435817460.json │ │ ├── script/ │ │ │ ├── DeployFeeDisburser.s.sol │ │ │ └── UpgradeFeeDisburser.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2026-03-25-increase-gas-and-elasticity-limit/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol/ │ │ │ └── 1/ │ │ │ └── run-1774471597995.json │ │ ├── script/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ └── addresses.json ├── sepolia/ │ ├── 2023-09-26-deploy/ │ │ ├── Makefile │ │ ├── deploy-config/ │ │ │ └── deploy-config.json │ │ ├── deployed/ │ │ │ └── addresses.json │ │ └── foundry.toml │ ├── 2023-10-07-upgrade-l1-standard-bridge/ │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployL1StandardBridge.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1696724294.json │ │ │ └── UpgradeL1StandardBridge.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1696724395.json │ │ └── script/ │ │ ├── DeployL1StandardBridge.s.sol │ │ └── UpgradeL1StandardBridge.s.sol │ ├── 2024-01-22-deploy-revshare/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployBalanceTracker.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1706212422.json │ │ │ ├── DeployFeeDisburser.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1706221009.json │ │ │ ├── DeployNewFeeVaults.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ ├── run-1706826531.json │ │ │ │ └── run-1706826537.json │ │ │ ├── UpdateFeeVaultRecipient.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1706556198.json │ │ │ └── UpgradeFeeVaultProxy.s.sol/ │ │ │ └── 84532/ │ │ │ └── run-1706827667.json │ │ └── script/ │ │ ├── DeployBalanceTracker.s.sol │ │ ├── DeployFeeDisburser.s.sol │ │ ├── DeployNewFeeVaults.s.sol │ │ └── UpgradeFeeVaultProxy.s.sol │ ├── 2024-02-28-pause-unpause-portal/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── PausePortal.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1709751738.json │ │ │ └── UnpausePortal.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1709755240.json │ │ └── script/ │ │ ├── PausePortal.s.sol │ │ └── UnpausePortal.s.sol │ ├── 2024-03-07-ecotone-sysconfig-updates/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasConfig.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1709934684.json │ │ └── script/ │ │ └── UpdateGasConfig.sol │ ├── 2024-03-26-increase-gas-limit/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasLimit.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1711511753.json │ │ └── script/ │ │ └── UpdateGasLimit.sol │ ├── 2024-04-10-deploy-ERC20Factory/ │ │ ├── Makefile │ │ ├── deployed/ │ │ │ └── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── RunERC20FactoryDeploy.s.sol/ │ │ │ └── 84532/ │ │ │ ├── run-1712769228.json │ │ │ ├── run-1712947267.json │ │ │ └── run-1713280540.json │ │ └── script/ │ │ └── RunERC20FactoryDeploy.s.sol │ ├── 2024-04-30-deployTempERC20Factory/ │ │ ├── Makefile │ │ ├── deployed/ │ │ │ └── addresses.json │ │ ├── foundry.toml │ │ ├── inputs/ │ │ │ ├── construct-config.sh │ │ │ ├── deploy-config.json │ │ │ └── misc-config.json │ │ ├── records/ │ │ │ └── RunDeployERC20Factory.sol/ │ │ │ └── 84532/ │ │ │ └── run-1714484076.json │ │ ├── script/ │ │ │ └── RunDeployERC20Factory.sol │ │ └── src/ │ │ └── ERC20Factory.sol │ ├── 2024-05-30-transfer-proxyadmin-owners/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── TransferL1ProxyAdminOwner.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1717448862.json │ │ │ ├── TransferL2ProxyAdminOwner.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1717448942.json │ │ │ └── TransferSystemConfigProxyOwner.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1717449020.json │ │ └── script/ │ │ ├── TransferL1ProxyAdminOwner.s.sol │ │ ├── TransferL2ProxyAdminOwner.s.sol │ │ └── TransferSystemConfigProxyOwner.s.sol │ ├── 2024-08-26-update-batcher-hash/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateBatcherHash.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1724971345.json │ │ └── script/ │ │ ├── RollbackBatcherHash.s.sol │ │ └── UpdateBatcherHash.s.sol │ ├── 2024-09-11-deploy-new-PDG/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployNewPDG.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1726092565.json │ │ └── script/ │ │ └── DeployNewPDG.s.sol │ ├── 2024-09-11-update-proposer/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateProposer.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1726095157.json │ │ └── script/ │ │ ├── RollbackProposer.s.sol │ │ └── UpdateProposer.s.sol │ ├── 2024-10-09-increase-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── records/ │ │ └── UpgradeGasLimit.sol/ │ │ └── 11155111/ │ │ └── run-1728578106.json │ ├── 2024-12-06-increase-max-gas-limit/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── patch/ │ │ │ └── max-gas-limit.patch │ │ ├── records/ │ │ │ └── UpgradeSystemConfig.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1733527237.json │ │ └── script/ │ │ ├── DeploySystemConfig.s.sol │ │ └── UpgradeSystemConfig.s.sol │ ├── 2025-01-23-upgrade-balance-tracker/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpgradeBalanceTracker.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1738252251.json │ │ └── script/ │ │ └── UpgradeBalanceTracker.s.sol │ ├── 2025-02-14-upgrade-fault-proofs/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployDisputeGames.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1740598045.json │ │ │ └── UpgradeDGF.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1740768733.json │ │ └── script/ │ │ ├── DeployDisputeGames.s.sol │ │ └── UpgradeDGF.s.sol │ ├── 2025-03-12-upgrade-fault-proofs/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployDisputeGames.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ ├── run-1741808714.json │ │ │ │ └── run-1743014041.json │ │ │ └── UpgradeDGF.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1741902924.json │ │ │ ├── run-1743022548.json │ │ │ ├── run-1743022789.json │ │ │ └── run-1743022908.json │ │ └── script/ │ │ ├── DeployDisputeGames.s.sol │ │ └── UpgradeDGF.s.sol │ ├── 2025-03-14-mirror-mainnet-hierarchy/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── Validation.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeploySafes.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ ├── run-1742037481.json │ │ │ │ └── run-1742418121.json │ │ │ └── UpdateSigners.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1742902176.json │ │ └── script/ │ │ ├── DeploySafes.s.sol │ │ └── UpdateSigners.s.sol │ ├── 2025-04-01-nested-ownership-transfer/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeploySafes.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1744716601.json │ │ │ └── UpdateSigners.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1744741044.json │ │ └── script/ │ │ ├── DeploySafes.s.sol │ │ └── UpdateSigners.s.sol │ ├── 2025-04-09-testnet-multisig-signers/ │ │ ├── Makefile │ │ ├── OwnerDiff.json │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateSigners.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── run-1744919029.json │ │ │ └── run-1744919545.json │ │ ├── script/ │ │ │ └── UpdateSigners.s.sol │ │ └── validations/ │ │ ├── SafeA.md │ │ └── SafeB.md │ ├── 2025-04-14-upgrade-fault-proofs/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployDisputeGames.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1744743721.json │ │ │ └── UpgradeDGF.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── approveOnBehalfOfIntermediateSafe-latest.json │ │ │ ├── approveOnBehalfOfSignerSafe-latest.json │ │ │ ├── run-1744822945.json │ │ │ ├── run-1744823305.json │ │ │ ├── run-1744823401.json │ │ │ ├── run-1744823689.json │ │ │ └── run-1744823785.json │ │ ├── script/ │ │ │ ├── DeployDisputeGames.s.sol │ │ │ └── UpgradeDGF.s.sol │ │ └── validations/ │ │ ├── NestedSafeB.md │ │ ├── SafeA.md │ │ └── SafeB.md │ ├── 2025-05-08-update-fee-disperser-ownership/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── OwnershipTransfer.s.sol/ │ │ │ └── 84532/ │ │ │ └── run-1748360700.json │ │ └── script/ │ │ └── OwnershipTransfer.s.sol │ ├── 2025-05-15-eip1559-denominator-reduction/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── ReduceEip1559Denominator.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1748365405.json │ │ │ ├── run-1748365537.json │ │ │ ├── run-1748366042.json │ │ │ ├── run-1748366112.json │ │ │ └── run-1748366149.json │ │ ├── script/ │ │ │ └── ReduceEip1559Denominator.s.sol │ │ └── validations/ │ │ ├── CB_NESTED_COORDINATOR.md │ │ ├── MOCK_OP_NESTED.md │ │ └── MOCK_OP_NESTED_COORDINATOR.md │ ├── 2025-06-04-upgrade-system-config/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── patch/ │ │ │ └── max-gas-limit.patch │ │ ├── records/ │ │ │ └── UpgradeSystemConfig.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1749236088.json │ │ │ ├── run-1749236197.json │ │ │ ├── run-1749236268.json │ │ │ ├── run-1749236318.json │ │ │ └── run-1749236365.json │ │ ├── script/ │ │ │ ├── DeploySystemConfig.s.sol │ │ │ └── UpgradeSystemConfig.s.sol │ │ └── validations/ │ │ ├── BASE_NESTED_VALIDATION.md │ │ ├── BASE_SC_VALIDATION.md │ │ └── OP_VALIDATION.md │ ├── 2025-09-22-upgrade-to-U16a/ │ │ ├── README.md │ │ ├── records/ │ │ │ └── OPCMUpgradeV410.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ └── execute-latest.json │ │ └── validation.yml │ ├── 2025-10-09-fusaka-defense/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployDisputeGames.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1760020249278.json │ │ │ └── UpgradeDGF.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1760121901524.json │ │ │ ├── run-1760122214430.json │ │ │ ├── run-1760122500830.json │ │ │ ├── run-1760122572937.json │ │ │ └── run-1760122597545.json │ │ ├── script/ │ │ │ ├── DeployDisputeGames.s.sol │ │ │ └── UpgradeDGF.s.sol │ │ └── validations/ │ │ ├── BASE_NESTED_VALIDATION.json │ │ ├── BASE_SC_VALIDATION.json │ │ └── OP_VALIDATION.json │ ├── 2025-10-17-base-bridge-alpha-deployment/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── config.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployBridge.s.sol/ │ │ │ └── 84532/ │ │ │ └── run-1761064051180.json │ │ └── script/ │ │ └── DeployBridge.s.sol │ ├── 2025-10-17-base-bridge-deployment/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── config.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployBridge.s.sol/ │ │ │ └── 84532/ │ │ │ └── run-1761256132305.json │ │ └── script/ │ │ └── DeployBridge.s.sol │ ├── 2025-10-23-pause-bridge-base/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── PauseBridge.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── run-1761250009978.json │ │ │ └── run-1761251184644.json │ │ ├── script/ │ │ │ └── PauseBridge.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2025-10-24-pause-bridge-base/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── PauseBridge.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── run-1761340416907.json │ │ │ └── run-1761340908642.json │ │ └── script/ │ │ └── PauseBridge.s.sol │ ├── 2025-11-03-incident-multisig-signers/ │ │ ├── Makefile │ │ ├── OwnerDiff.json │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateSigners.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── run-1763579592746.json │ │ │ └── run-1763579822181.json │ │ ├── script/ │ │ │ └── UpdateSigners.s.sol │ │ └── validations/ │ │ ├── base-signer-safe-b.json │ │ └── base-signer.json │ ├── 2025-11-07-deploy-cb-multicall/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployCBMulticall.s.sol/ │ │ │ └── 84532/ │ │ │ └── run-1763158491374.json │ │ └── script/ │ │ └── DeployCBMulticall.s.sol │ ├── 2025-11-07-upgrade-fault-proofs/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpgradeWithOpSmartContractManager.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1763474377488.json │ │ │ ├── run-1763474533668.json │ │ │ ├── run-1763474617427.json │ │ │ ├── run-1763475097893.json │ │ │ └── run-1763475193401.json │ │ ├── script/ │ │ │ └── UpgradeWithOpSmartContractManager.sol │ │ └── validations/ │ │ ├── cb-sc-signer.json │ │ ├── cb-signer.json │ │ └── op-signer.json │ ├── 2025-11-13-update-bridge-alpha-config/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── config.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployBridgeUpdates.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1763085530401.json │ │ │ ├── DeployRelayerOrchestrator.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1763155993182.json │ │ │ └── UpdateConfig.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1763153760858.json │ │ ├── script/ │ │ │ ├── DeployBridgeUpdates.s.sol │ │ │ ├── DeployRelayerOrchestrator.s.sol │ │ │ └── UpdateConfig.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2025-11-17-deploy-cb-multicall/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── DeployCBMulticall.s.sol/ │ │ │ ├── 11155111/ │ │ │ │ └── run-1763419468025.json │ │ │ └── 84532/ │ │ │ └── run-1763646033790.json │ │ └── script/ │ │ └── DeployCBMulticall.s.sol │ ├── 2025-11-18-set-jovian-parameters/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SetJovianParameters.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1763670505775.json │ │ │ ├── run-1763670600765.json │ │ │ ├── run-1763670925854.json │ │ │ ├── run-1763671068364.json │ │ │ └── run-1763671153225.json │ │ ├── script/ │ │ │ └── SetJovianParameters.s.sol │ │ └── validations/ │ │ ├── cb-sc-signer.json │ │ ├── cb-signer.json │ │ └── op-signer.json │ ├── 2025-11-30-systemconfig-ownership-transfer/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TransferSystemConfigOwnership.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── run-1765915333831.json │ │ │ ├── run-1765915416897.json │ │ │ ├── run-1765915501219.json │ │ │ ├── run-1765921561047.json │ │ │ └── run-1765921633335.json │ │ ├── script/ │ │ │ └── TransferSystemConfigOwnership.s.sol │ │ └── validations/ │ │ ├── base-security-council-signer.json │ │ ├── coinbase-signer.json │ │ └── optimism-signer.json │ ├── 2025-12-22-update-bridge-alpha-config/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── config.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployBridgeUpdates.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1766435915533.json │ │ │ └── UpdateConfig.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1768497928010.json │ │ ├── script/ │ │ │ ├── DeployBridgeUpdates.s.sol │ │ │ └── UpdateConfig.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2026-01-08-op-stack-upgrade-18/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── ExecuteOPCM.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1769124709630.json │ │ │ ├── run-1769124924971.json │ │ │ ├── run-1769124949237.json │ │ │ ├── run-1769125249283.json │ │ │ └── run-1769125284359.json │ │ ├── script/ │ │ │ └── ExecuteOPCM.s.sol │ │ └── validations/ │ │ ├── coinbase-signer.json │ │ ├── optimism-signer.json │ │ └── security-council-signer.json │ ├── 2026-02-10-update-system-config-params/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateSystemConfigParams.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1770758365511.json │ │ ├── script/ │ │ │ └── UpdateSystemConfigParams.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2026-02-17-update-min-base-fee/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── SetMinBaseFee.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1771531286745.json │ │ ├── script/ │ │ │ └── SetMinBaseFee.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2026-02-19-superchain-separation/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployFeeDisburser.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1771950276941.json │ │ │ ├── DeploySuperchainConfigAndSystemConfig.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1771980781445.json │ │ │ ├── UpdateCBSafeSigners.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ ├── approve-latest.json │ │ │ │ ├── run-1772144713483.json │ │ │ │ ├── run-1772144796912.json │ │ │ │ └── run-1772144844778.json │ │ │ ├── UpgradeFeeDisburser.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1772145098001.json │ │ │ └── UpgradeSystemConfig.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1772144904683.json │ │ │ ├── run-1772144942393.json │ │ │ └── run-1772144989624.json │ │ ├── script/ │ │ │ ├── DeployFeeDisburser.s.sol │ │ │ ├── DeploySuperchainConfigAndSystemConfig.s.sol │ │ │ ├── UpdateCBSafeSigners.s.sol │ │ │ ├── UpgradeFeeDisburser.s.sol │ │ │ └── UpgradeSystemConfig.s.sol │ │ └── validations/ │ │ ├── base-signer-part-1.json │ │ ├── base-signer-part-2.json │ │ ├── base-signer-part-3.json │ │ ├── security-council-signer-part-1.json │ │ └── security-council-signer-part-2.json │ ├── 2026-02-27-pause-superchain-config/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── PauseSuperchainConfig.s.sol │ ├── 2026-03-06-transfer-system-config-ownership/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TransferSystemConfigOwnership.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1773937909385.json │ │ ├── script/ │ │ │ └── TransferSystemConfigOwnership.s.sol │ │ └── validations/ │ │ └── coinbase-signer.json │ ├── 2026-03-11-patch-fee-disburser/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── patch/ │ │ │ ├── fee-disburser-semver.patch │ │ │ └── ifee-vault-withdraw.patch │ │ ├── records/ │ │ │ ├── DeployFeeDisburser.s.sol/ │ │ │ │ └── 84532/ │ │ │ │ └── run-1773252087364.json │ │ │ └── UpgradeFeeDisburser.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1773335017410.json │ │ ├── script/ │ │ │ ├── DeployFeeDisburser.s.sol │ │ │ └── UpgradeFeeDisburser.s.sol │ │ └── validations/ │ │ └── base-signer.json │ ├── 2026-03-25-increase-gas-and-elasticity-limit/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1774464540781.json │ │ ├── script/ │ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol │ │ └── validations/ │ │ ├── base-signer-rollback.json │ │ └── base-signer.json │ ├── 2026-04-20-activate-multiproof/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── patch/ │ │ │ └── asr-reset-anchor-game.patch │ │ ├── records/ │ │ │ ├── ActivateMultiproofStack.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ ├── approve-latest.json │ │ │ │ ├── run-1776392629127.json │ │ │ │ ├── run-1776392724858.json │ │ │ │ └── run-1776392808986.json │ │ │ ├── DeployMultiproofStack.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ ├── run-1776362103158.json │ │ │ │ └── run-1776380209255.json │ │ │ ├── DeployNitroVerifier.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ ├── run-1776361698333.json │ │ │ │ └── run-1776379902060.json │ │ │ └── SetupNitroEnclaveVerifier.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── run-1776362557749.json │ │ │ └── run-1776380244914.json │ │ ├── script/ │ │ │ ├── ActivateMultiproofStack.s.sol │ │ │ ├── DeployMultiproofStack.s.sol │ │ │ ├── DeployNitroVerifier.s.sol │ │ │ └── SetupNitroEnclaveVerifier.s.sol │ │ └── validations/ │ │ ├── multiproof-cb-signer.json │ │ └── multiproof-sc-signer.json │ ├── 2026-04-23-update-zk-config/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── addresses.json │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployAggregateVerifier.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1777030531899.json │ │ │ ├── DeployZkVerifier.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1777030330468.json │ │ │ └── UpdateZkConfig.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1777051057133.json │ │ │ ├── run-1777051117884.json │ │ │ └── run-1777051382241.json │ │ ├── script/ │ │ │ ├── DeployAggregateVerifier.s.sol │ │ │ ├── DeployZkVerifier.s.sol │ │ │ └── UpdateZkConfig.s.sol │ │ └── validations/ │ │ ├── update-zk-config-cb-signer.json │ │ └── update-zk-config-sc-signer.json │ └── signatures/ │ ├── 2026-02-19-superchain-separation/ │ │ ├── base-facilitator-signature.json │ │ ├── base-sc-facilitator-signature.json │ │ └── creator-signature.json │ ├── 2026-03-06-transfer-system-config-ownership/ │ │ ├── base-facilitator-signature.json │ │ ├── base-sc-facilitator-signature.json │ │ └── creator-signature.json │ ├── 2026-03-11-patch-fee-disburser/ │ │ ├── base-facilitator-signature.json │ │ ├── base-sc-facilitator-signature.json │ │ └── creator-signature.json │ └── 2026-03-25-increase-gas-and-elasticity-limit/ │ ├── base-facilitator-signature.json │ ├── base-sc-facilitator-signature.json │ └── creator-signature.json ├── sepolia-alpha/ │ ├── 2023-09-20-deploy/ │ │ ├── Makefile │ │ ├── deploy-config/ │ │ │ └── deploy-config.json │ │ ├── deployed/ │ │ │ └── addresses.json │ │ └── foundry.toml │ ├── 2023-10-06-upgrade-l1-standard-bridge/ │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ ├── DeployL1StandardBridge.s.sol/ │ │ │ │ └── 11155111/ │ │ │ │ └── run-1696723112.json │ │ │ └── UpgradeL1StandardBridge.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1696723324.json │ │ └── script/ │ │ ├── DeployL1StandardBridge.s.sol │ │ └── UpgradeL1StandardBridge.s.sol │ ├── 2024-05-15-update-scalars/ │ │ ├── Makefile │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateGasConfig.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1715900079.json │ │ └── script/ │ │ └── UpdateGasConfig.s.sol │ ├── 2024-08-21-update-batcher-proposer/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── UpdateProposer.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1724856389.json │ │ └── script/ │ │ ├── RollbackBatcherHash.s.sol │ │ ├── RollbackProposer.s.sol │ │ ├── UpdateBatcherHash.s.sol │ │ └── UpdateProposer.s.sol │ ├── 2024-11-19-holocene-contracts/ │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── foundry.toml │ │ └── script/ │ │ ├── DeploySystemConfig.s.sol │ │ ├── SetEIP1559Params.s.sol │ │ └── UpgradeSystemConfig.s.sol │ ├── 2025-04-08-transfer-proxy-admin-ownership-to-safe/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TransferOwnership.s.sol/ │ │ │ └── 11155111/ │ │ │ ├── run-1744830889.json │ │ │ └── run-1744830912.json │ │ └── script/ │ │ └── TransferOwnership.s.sol │ ├── 2025-11-03-transfer-systemconfig-ownership-to-safe/ │ │ ├── Makefile │ │ ├── README.md │ │ ├── VALIDATION.md │ │ ├── foundry.toml │ │ ├── records/ │ │ │ └── TransferSystemConfigOwnership.s.sol/ │ │ │ └── 11155111/ │ │ │ └── run-1764627721931.json │ │ └── script/ │ │ └── TransferSystemConfigOwnership.s.sol │ └── 2026-02-23-update-system-config-params/ │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records/ │ │ └── UpdateSystemConfigParams.s.sol/ │ │ └── 11155111/ │ │ ├── approve-latest.json │ │ ├── run-1771883161260.json │ │ ├── run-1771883761465.json │ │ ├── run-1771883845778.json │ │ ├── run-1771884061108.json │ │ └── run-1771884193061.json │ ├── script/ │ │ └── UpdateSystemConfigParams.s.sol │ └── validations/ │ ├── base-signer.json │ ├── optimism-signer.json │ └── security-council-signer.json ├── setup-templates/ │ ├── template-funding/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ ├── funding.json │ │ └── script/ │ │ └── Fund.s.sol │ ├── template-gas-and-elasticity-increase/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol │ ├── template-gas-increase/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ └── foundry.toml │ ├── template-generic/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ ├── BasicScript.s.sol │ │ └── CounterMultisigScript.s.sol │ ├── template-pause-bridge-base/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── PauseBridge.s.sol │ ├── template-pause-superchain-config/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── PauseSuperchainConfig.s.sol │ ├── template-safe-management/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── OwnerDiff.json │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── UpdateSigners.s.sol │ ├── template-set-bridge-partner-threshold/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── SetThreshold.s.sol │ ├── template-switch-to-permissioned-game/ │ │ ├── FACILITATOR.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── foundry.toml │ │ └── script/ │ │ └── SwitchToPermissionedGame.sol │ └── template-upgrade-fault-proofs/ │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script/ │ ├── DeployDisputeGames.s.sol │ └── UpgradeDGF.s.sol ├── solana/ │ ├── MCM.mk │ ├── Makefile │ ├── devnet/ │ │ ├── 2025-10-20-deploy-mcm/ │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── accept_ownership_proposal.json │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-deploy-artifacts.json │ │ │ │ ├── mcm-multisig-init.json │ │ │ │ ├── mcm-ownership-transfer.json │ │ │ │ ├── mcm-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ ├── mcm-signatures-init.json │ │ │ │ ├── mcm-signers-append.json │ │ │ │ ├── mcm-signers-finalize.json │ │ │ │ ├── mcm-signers-init.json │ │ │ │ ├── mcm-signers-set-config.json │ │ │ │ └── set-upgrade-authority-artifacts.json │ │ │ └── patches/ │ │ │ ├── eip712.patch │ │ │ └── invoke_signed.patch │ │ ├── 2025-10-22-mcm-upgrade/ │ │ │ ├── .gitignore │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ ├── mcm-signatures-init.json │ │ │ │ └── set-buffer-authority-artifacts.json │ │ │ ├── patches/ │ │ │ │ ├── eip712.patch │ │ │ │ ├── id.patch │ │ │ │ ├── invoke_signed.patch │ │ │ │ └── simplify_eip712.patch │ │ │ └── proposal.json │ │ ├── 2025-10-23-deploy-bridge/ │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── artifacts/ │ │ │ ├── base-relayer-deploy-artifacts.json │ │ │ ├── bridge-deploy-artifacts.json │ │ │ ├── fund-gas-fee-receiver.json │ │ │ ├── fund-sol-vault.json │ │ │ ├── init-base-relayer.json │ │ │ ├── init-bridge.json │ │ │ ├── set-base-relayer-upgrade-authority-artifacts.json │ │ │ └── set-bridge-upgrade-authority-artifacts.json │ │ ├── 2025-10-24-mcm-pause-unpause-bridge/ │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-pause-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ ├── mcm-signatures-init.json │ │ │ │ └── mcm-unpause-proposal-execute.json │ │ │ └── proposal.json │ │ └── 2025-10-24-mcm-program-upgrade/ │ │ ├── .gitignore │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── artifacts/ │ │ │ ├── mcm-proposal-execute.json │ │ │ ├── mcm-proposal-set-root.json │ │ │ ├── mcm-signatures-append.json │ │ │ ├── mcm-signatures-finalize.json │ │ │ ├── mcm-signatures-init.json │ │ │ └── set-buffer-authority-artifacts.json │ │ ├── patches/ │ │ │ └── id.patch │ │ └── proposal.json │ ├── devnet-alpha/ │ │ ├── 2025-10-20-deploy-bridge/ │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── artifacts/ │ │ │ ├── base-relayer-deploy-artifacts.json │ │ │ ├── bridge-deploy-artifacts.json │ │ │ ├── fund-gas-fee-receiver.json │ │ │ ├── fund-sol-vault.json │ │ │ ├── init-base-relayer.json │ │ │ ├── init-bridge.json │ │ │ ├── set-base-relayer-upgrade-authority-artifacts.json │ │ │ └── set-bridge-upgrade-authority-artifacts.json │ │ ├── 2025-10-23-mcm-set-pause-bridge/ │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ └── mcm-signatures-init.json │ │ │ └── proposal.json │ │ ├── 2025-10-23-mcm-unpause-bridge/ │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ └── mcm-signatures-init.json │ │ │ └── proposal.json │ │ ├── 2025-10-24-mcm-pause-unpause-bridge/ │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-pause-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ ├── mcm-signatures-init.json │ │ │ │ └── mcm-unpause-proposal-execute.json │ │ │ └── proposal.json │ │ ├── 2025-11-14-update-bridge-config/ │ │ │ ├── .gitignore │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-execute-op1.json │ │ │ │ ├── mcm-proposal-execute-op2.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ ├── mcm-signatures-init.json │ │ │ │ └── set-buffer-authority-artifacts.json │ │ │ ├── patches/ │ │ │ │ └── id.patch │ │ │ └── proposal.json │ │ ├── 2025-12-01-upgrade-bridge-and-rollback/ │ │ │ ├── .gitignore │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-rollback-execute.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ ├── mcm-signatures-init.json │ │ │ │ ├── mcm-upgrade-execute.json │ │ │ │ ├── set-buffer-authority-artifacts.json │ │ │ │ └── set-rollback-buffer-authority-artifacts.json │ │ │ ├── patches/ │ │ │ │ └── upgrade.patch │ │ │ └── proposal.json │ │ └── 2025-12-22-update-bridge-config/ │ │ ├── .gitignore │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── artifacts/ │ │ │ ├── mcm-proposal-execute.json │ │ │ ├── mcm-proposal-set-root.json │ │ │ ├── mcm-signatures-append.json │ │ │ ├── mcm-signatures-finalize.json │ │ │ └── mcm-signatures-init.json │ │ └── proposal.json │ ├── mainnet/ │ │ ├── 2025-10-27-deploy-mcm/ │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── accept_ownership_proposal_0.json │ │ │ ├── accept_ownership_proposal_1.json │ │ │ └── artifacts/ │ │ │ ├── fund-mcm-authority-0.json │ │ │ ├── fund-mcm-authority-1.json │ │ │ ├── mcm-deploy-artifacts.json │ │ │ ├── mcm-multisig-init-0.json │ │ │ ├── mcm-multisig-init-1.json │ │ │ ├── mcm-ownership-transfer-0.json │ │ │ ├── mcm-ownership-transfer-1.json │ │ │ ├── mcm-proposal-execute-0.json │ │ │ ├── mcm-proposal-execute-1.json │ │ │ ├── mcm-proposal-set-root-0.json │ │ │ ├── mcm-proposal-set-root-1.json │ │ │ ├── mcm-signatures-append-0.json │ │ │ ├── mcm-signatures-append-1.json │ │ │ ├── mcm-signatures-finalize-0.json │ │ │ ├── mcm-signatures-finalize-1.json │ │ │ ├── mcm-signatures-init-0.json │ │ │ ├── mcm-signatures-init-1.json │ │ │ ├── mcm-signers-append-0.json │ │ │ ├── mcm-signers-append-1.json │ │ │ ├── mcm-signers-finalize-0.json │ │ │ ├── mcm-signers-finalize-1.json │ │ │ ├── mcm-signers-init-0.json │ │ │ ├── mcm-signers-init-1.json │ │ │ ├── mcm-signers-set-config-0.json │ │ │ ├── mcm-signers-set-config-1.json │ │ │ └── set-upgrade-authority-artifacts.json │ │ ├── 2025-10-27-signers-update-mcm-0/ │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ └── mcm-signatures-init.json │ │ │ └── proposal.json │ │ ├── 2025-10-27-signers-update-mcm-1/ │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ └── mcm-signatures-init.json │ │ │ └── proposal.json │ │ ├── 2025-10-29-deploy-bridge/ │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── artifacts/ │ │ │ ├── base-relayer-deploy-artifacts.json │ │ │ ├── bridge-deploy-artifacts.json │ │ │ ├── fund-gas-fee-receiver.json │ │ │ ├── fund-sol-vault.json │ │ │ ├── init-base-relayer.json │ │ │ ├── init-bridge.json │ │ │ ├── set-base-relayer-upgrade-authority-artifacts.json │ │ │ └── set-bridge-upgrade-authority-artifacts.json │ │ ├── 2025-12-01-set-pause-bridge/ │ │ │ ├── FACILITATORS.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── artifacts/ │ │ │ │ ├── mcm-proposal-execute.json │ │ │ │ ├── mcm-proposal-set-root.json │ │ │ │ ├── mcm-signatures-append.json │ │ │ │ ├── mcm-signatures-clear.json │ │ │ │ ├── mcm-signatures-finalize.json │ │ │ │ └── mcm-signatures-init.json │ │ │ ├── proposal-pause.json │ │ │ └── proposal-unpause.json │ │ └── 2025-12-01-upgrade-bridge-and-rollback/ │ │ ├── .gitignore │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── artifacts/ │ │ │ ├── mcm-proposal-set-root.json │ │ │ ├── mcm-rollback-execute.json │ │ │ ├── mcm-signatures-append.json │ │ │ ├── mcm-signatures-finalize.json │ │ │ ├── mcm-signatures-init.json │ │ │ ├── mcm-upgrade-execute.json │ │ │ ├── set-buffer-authority-artifacts.json │ │ │ └── set-rollback-buffer-authority-artifacts.json │ │ ├── patches/ │ │ │ └── upgrade.patch │ │ └── proposal.json │ └── setup-templates/ │ ├── template-set-pause-bridge/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ └── README.md │ ├── template-update-signers-mcm/ │ │ ├── FACILITATORS.md │ │ ├── Makefile │ │ └── README.md │ └── template-upgrade-bridge/ │ ├── .gitignore │ ├── FACILITATORS.md │ ├── Makefile │ └── README.md └── zeronet/ ├── 2026-03-19-deploy-proxy-admin/ │ ├── DeployNestedOwnership.sol │ ├── Makefile │ ├── README.md │ ├── addresses.json │ ├── deployed-addresses.json │ ├── foundry.toml │ └── records/ │ └── DeployNestedOwnership.sol/ │ └── 560048/ │ └── run-1773955648605.json ├── 2026-04-01-activate-multiproof/ │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── addresses.json │ ├── foundry.toml │ ├── patch/ │ │ └── asr-reset-anchor-game.patch │ ├── records/ │ │ ├── ActivateMultiproofStack.s.sol/ │ │ │ └── 560048/ │ │ │ ├── approve-latest.json │ │ │ ├── run-1775141210100.json │ │ │ ├── run-1775141247929.json │ │ │ └── run-1775141298391.json │ │ ├── DeployMultiproofStack.s.sol/ │ │ │ └── 560048/ │ │ │ └── run-1775133494692.json │ │ ├── DeployNitroVerifier.s.sol/ │ │ │ └── 560048/ │ │ │ └── run-1775133374708.json │ │ └── SetupNitroEnclaveVerifier.s.sol/ │ │ └── 560048/ │ │ └── run-1775133542995.json │ ├── script/ │ │ ├── ActivateMultiproofStack.s.sol │ │ ├── DeployCBMulticall.s.sol │ │ ├── DeployMultiproofStack.s.sol │ │ ├── DeployNitroVerifier.s.sol │ │ └── SetupNitroEnclaveVerifier.s.sol │ └── validations/ │ ├── multiproof-cb-signer.json │ └── multiproof-sc-signer.json ├── 2026-04-07-upgrade-tee-registry-nitro/ │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── addresses.json │ ├── foundry.toml │ ├── records/ │ │ ├── DeployAggregateVerifier.s.sol/ │ │ │ └── 560048/ │ │ │ ├── run-1776099026069.json │ │ │ └── run-1776283494080.json │ │ ├── DeployAndSetupNitro.s.sol/ │ │ │ └── 560048/ │ │ │ ├── run-1776098805552.json │ │ │ └── run-1776283373418.json │ │ ├── DeployTeeProverRegistryImpl.s.sol/ │ │ │ └── 560048/ │ │ │ ├── run-1776098855904.json │ │ │ └── run-1776283437409.json │ │ └── UpgradeTEEProverRegistry.s.sol/ │ │ └── 560048/ │ │ ├── approve-latest.json │ │ ├── run-1776366039649.json │ │ ├── run-1776366145163.json │ │ └── run-1776366338393.json │ ├── script/ │ │ ├── DeployAggregateVerifier.s.sol │ │ ├── DeployAndSetupNitro.s.sol │ │ ├── DeployTEEProverRegistryImpl.s.sol │ │ └── UpgradeTEEProverRegistry.s.sol │ └── validations/ │ ├── upgrade-tee-registry-cb-signer.json │ └── upgrade-tee-registry-sc-signer.json ├── 2026-04-17-fix-nitro-verifier/ │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records/ │ │ └── FixNitroVerifierId.s.sol/ │ │ └── 560048/ │ │ └── run-1776445069900.json │ ├── script/ │ │ └── FixNitroVerifierId.s.sol │ └── validations/ │ └── fix-nitro-verifier-cb-signer.json ├── 2026-04-17-fix-tee-image-hash/ │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── addresses.json │ ├── foundry.toml │ ├── records/ │ │ ├── DeployAggregateVerifier.s.sol/ │ │ │ └── 560048/ │ │ │ └── run-1776453426877.json │ │ └── FixTeeImageHash.s.sol/ │ │ └── 560048/ │ │ ├── approve-latest.json │ │ ├── run-1776456290482.json │ │ ├── run-1776456325644.json │ │ └── run-1776456384746.json │ ├── script/ │ │ ├── DeployAggregateVerifier.s.sol │ │ └── FixTeeImageHash.s.sol │ └── validations/ │ ├── fix-tee-image-hash-cb-signer.json │ └── fix-tee-image-hash-sc-signer.json ├── 2026-04-21-update-zk-config/ │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── addresses.json │ ├── foundry.toml │ ├── patch/ │ │ └── asr-reset-anchor-game.patch │ ├── records/ │ │ ├── DeployAggregateVerifier.s.sol/ │ │ │ └── 560048/ │ │ │ └── run-1776963810337.json │ │ ├── DeployAnchorStateRegistry.s.sol/ │ │ │ └── 560048/ │ │ │ └── run-1776963870263.json │ │ ├── DeployZkVerifier.s.sol/ │ │ │ └── 560048/ │ │ │ └── run-1776963357472.json │ │ └── UpdateZkConfig.s.sol/ │ │ └── 560048/ │ │ ├── approve-latest.json │ │ ├── run-1776973851527.json │ │ ├── run-1776974090194.json │ │ └── run-1776974497944.json │ ├── script/ │ │ ├── DeployAggregateVerifier.s.sol │ │ ├── DeployAnchorStateRegistry.s.sol │ │ ├── DeployZkVerifier.s.sol │ │ └── UpdateZkConfig.s.sol │ └── validations/ │ ├── update-zk-config-cb-signer.json │ └── update-zk-config-sc-signer.json └── 2026-04-23-fix-starting-anchor-root/ ├── FACILITATOR.md ├── Makefile ├── README.md ├── addresses.json ├── foundry.toml ├── patch/ │ └── asr-reset-anchor-game.patch ├── records/ │ ├── DeployAnchorStateRegistry.s.sol/ │ │ └── 560048/ │ │ └── run-1776984413388.json │ └── FixStartingAnchorRoot.s.sol/ │ └── 560048/ │ ├── approve-latest.json │ ├── run-1776985056998.json │ ├── run-1776985945169.json │ └── run-1776985969684.json ├── script/ │ ├── DeployAnchorStateRegistry.s.sol │ └── FixStartingAnchorRoot.s.sol └── validations/ ├── fix-starting-anchor-root-cb-signer.json └── fix-starting-anchor-root-sc-signer.json