├── .codeflow.yml ├── .github └── workflows │ └── check-post-check.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Multisig.mk ├── README.md ├── SECURITY.md ├── docker-compose.yml ├── logo.png ├── mainnet ├── .env ├── 2023-06-14-deploy-deterministic-proxy │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── DeterministicProxyDeploy.s.sol │ │ │ └── 84531 │ │ │ └── run-1686756835.json │ ├── remappings.txt │ └── script │ │ └── DeterministicProxyDeploy.s.sol ├── 2023-06-14-deploy │ ├── .env │ ├── Makefile │ ├── deployed │ │ └── addresses.json │ ├── execute │ │ └── RunDeployBedrock.s.sol │ ├── foundry.toml │ ├── inputs │ │ ├── construct-config.sh │ │ ├── deploy-config.json │ │ └── misc-config.json │ ├── records │ │ └── RunDeployBedrock.s.sol │ │ │ └── 1 │ │ │ └── dry-run │ │ │ └── run-1686792137.json │ └── remappings.txt ├── 2023-06-14-test-tx │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── Test.s.sol │ │ │ └── 1 │ │ │ └── dry-run │ │ │ └── run-1686762751.json │ ├── remappings.txt │ ├── script │ │ └── Test.s.sol │ └── src │ │ └── Test.sol ├── 2023-06-15-unpause-portal │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── remappings.txt │ └── script │ │ └── ValidateDeploy.s.sol ├── 2023-06-21-transfer-system-cfg-owner │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── FINAL-runbook-supportEAS.pdf │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── DeploySmartEscrow.s.sol │ │ │ └── 10 │ │ │ └── run-1709074703.json │ └── script │ │ └── DeploySmartEscrow.s.sol ├── 2024-02-23-transfer-op │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── TransferAndDelegateOPTokens.s.sol │ │ └── TransferUpfrontOPTokens.s.sol ├── 2024-03-05-pause-unpause-test │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records │ │ └── UpdateGasConfig.sol │ │ │ └── 1 │ │ │ └── run-1710375473.json │ └── script │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol ├── 2024-03-26-increase-gas-limit │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records │ │ └── UpdateGasLimit.sol │ │ │ └── 1 │ │ │ └── run-1712005481.json │ └── script │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol ├── 2024-04-12-deployERC20Factory │ ├── .env │ ├── Makefile │ ├── deployed │ │ └── addresses.json │ ├── foundry.toml │ ├── records │ │ └── RunERC20FactoryDeploy.s.sol │ │ │ └── 8453 │ │ │ └── run-1713280196.json │ └── script │ │ └── RunERC20FactoryDeploy.s.sol ├── 2024-04-15-redeploy-smart-escrow │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── DeploySmartEscrow.s.sol │ │ │ └── 10 │ │ │ └── run-1713902413.json │ └── script │ │ └── DeploySmartEscrow.s.sol ├── 2024-04-17-upgrade-erc20-factory │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records │ │ └── UpdateGasLimit.sol │ │ │ └── 1 │ │ │ └── run-1716922926.json │ └── script │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol ├── 2024-05-30-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol ├── 2024-06-05-reredeploy-smart-escrow │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol ├── 2024-06-25-update-gas-config │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol ├── 2024-06-28-update-gas-config │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol ├── 2024-07-10-update-gas-config │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasConfig.sol │ │ └── UpdateGasConfig.sol ├── 2024-07-16-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol ├── 2024-07-23-set-l1-resolver │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ └── SetL1Resolver.sol ├── 2024-07-23-transfer-owner-balance-tracker │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records │ │ └── BalanceTrackerOwnershipTransfer.sol │ │ │ └── 1 │ │ │ └── run-1721845061.json │ └── script │ │ └── BalanceTrackerOwnershipTransfer.sol ├── 2024-07-24-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol ├── 2024-07-24-reduce-batcher-proposer-balance-targets │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records │ │ └── SetL1Resolver.sol │ │ │ └── 1 │ │ │ └── run-1722367323.json │ └── script │ │ └── SetL1Resolver.sol ├── 2024-07-30-transfer-op │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ ├── RollbackGasLimit.sol │ │ └── UpdateGasLimit.sol ├── 2024-08-27-disburse-basenames │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1727285381.json ├── 2024-10-01-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1727888979.json ├── 2024-10-08-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1728494142.json ├── 2024-10-15-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1729105634.json ├── 2024-10-22-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1729703140.json ├── 2024-11-18-increase-max-gas-limit │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1733328181.json ├── 2024-12-11-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1733962358.json ├── 2024-12-18-holocene-deployments │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1734551212.json ├── 2025-01-08-transfer-proxyadmin-owner-L1alias │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1736968347.json ├── 2025-01-15-nested-ownership-transfer │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 1 │ │ └── run-1737568790.json ├── 2025-01-29-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ └── foundry.toml ├── 2025-02-12-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1739387882.json ├── 2025-02-19-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1739987678.json ├── 2025-02-25-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1740593054.json ├── 2025-03-05-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1741194410.json ├── 2025-03-05-upgrade-fault-proofs │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1742400711.json ├── 2025-03-26-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1743002773.json ├── 2025-04-07-init-smart-escrow-ownership-transfer │ ├── .env │ ├── Makefile │ ├── README.md │ ├── VALIDATION.md │ ├── foundry.toml │ └── script │ │ └── InitOwnershipTransfer.s.sol ├── 2025-04-07-update-fee-disperser-ownership │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1746038678.json ├── 2025-05-06-fund-ledgers │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── SetGasLimit.sol │ │ └── 1 │ │ └── run-1746637693.json ├── 2025-05-13-incident-multisig-signers │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ │ │ ├── 8453 │ │ │ │ └── run-1753908081.json │ │ │ └── 42161 │ │ │ │ └── run-1753908149.json │ │ ├── DeployRecoveryProxies.s.sol │ │ │ ├── 10 │ │ │ │ └── dry-run │ │ │ │ │ └── run-1753910930.json │ │ │ ├── 8453 │ │ │ │ └── dry-run │ │ │ │ │ └── run-1753910886.json │ │ │ └── 42161 │ │ │ │ └── dry-run │ │ │ │ └── run-1753910956.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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── validations │ │ └── base-signer.json ├── 2025-11-10-increase-gas-and-elasticity-limit │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── PauseBridge.s.sol │ └── validations │ │ └── base-signer.json ├── 2025-12-04-set-jovian-parameters │ ├── .env │ ├── FACILITATORS.md │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── script │ │ └── SetJovianParameters.s.sol │ └── validations │ │ └── base-signer.json └── addresses.json ├── sepolia-alpha ├── .env ├── 2023-09-20-deploy │ ├── .env │ ├── Makefile │ ├── deploy-config │ │ └── deploy-config.json │ ├── deployed │ │ └── addresses.json │ └── foundry.toml ├── 2023-10-06-upgrade-l1-standard-bridge │ ├── .env │ ├── .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 │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── UpdateGasConfig.s.sol │ │ │ └── 11155111 │ │ │ └── run-1715900079.json │ └── script │ │ └── UpdateGasConfig.s.sol ├── 2024-08-21-update-batcher-proposer │ ├── .env │ ├── 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 │ ├── .env │ ├── .gitignore │ ├── Makefile │ ├── foundry.toml │ └── script │ │ ├── DeploySystemConfig.s.sol │ │ ├── SetEIP1559Params.s.sol │ │ └── UpgradeSystemConfig.s.sol ├── 2025-04-08-transfer-proxy-admin-ownership-to-safe │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── VALIDATION.md │ ├── foundry.toml │ ├── records │ └── TransferSystemConfigOwnership.s.sol │ │ └── 11155111 │ │ └── run-1764627721931.json │ └── script │ └── TransferSystemConfigOwnership.s.sol ├── sepolia ├── .env ├── 2023-09-26-deploy │ ├── .env │ ├── Makefile │ ├── deploy-config │ │ └── deploy-config.json │ ├── deployed │ │ └── addresses.json │ └── foundry.toml ├── 2023-10-07-upgrade-l1-standard-bridge │ ├── .env │ ├── .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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── UpdateGasConfig.sol │ │ │ └── 11155111 │ │ │ └── run-1709934684.json │ └── script │ │ └── UpdateGasConfig.sol ├── 2024-03-26-increase-gas-limit │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── UpdateGasLimit.sol │ │ │ └── 11155111 │ │ │ └── run-1711511753.json │ └── script │ │ └── UpdateGasLimit.sol ├── 2024-04-10-deploy-ERC20Factory │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── records │ │ └── DeployNewPDG.s.sol │ │ │ └── 11155111 │ │ │ └── run-1726092565.json │ └── script │ │ └── DeployNewPDG.s.sol ├── 2024-09-11-update-proposer │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── records │ │ └── UpgradeGasLimit.sol │ │ └── 11155111 │ │ └── run-1728578106.json ├── 2024-12-06-increase-max-gas-limit │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── foundry.toml │ ├── records │ │ └── UpgradeBalanceTracker.s.sol │ │ │ └── 11155111 │ │ │ └── run-1738252251.json │ └── script │ │ └── UpgradeBalanceTracker.s.sol ├── 2025-02-14-upgrade-fault-proofs │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── Makefile │ ├── README.md │ ├── addresses.json │ ├── foundry.toml │ ├── records │ │ └── DeployCBMulticall.s.sol │ │ │ ├── 84532 │ │ │ └── run-1763646033790.json │ │ │ └── 11155111 │ │ │ └── run-1763419468025.json │ └── script │ │ └── DeployCBMulticall.s.sol └── 2025-11-18-set-jovian-parameters │ ├── .env │ ├── 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 ├── setup-templates ├── template-funding │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ ├── funding.json │ └── script │ │ └── Fund.s.sol ├── template-gas-and-elasticity-increase │ ├── .env │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ └── IncreaseEip1559ElasticityAndIncreaseGasLimit.s.sol ├── template-gas-increase │ ├── .env │ ├── Makefile │ ├── README.md │ └── foundry.toml ├── template-generic │ ├── .env │ ├── Makefile │ ├── foundry.toml │ └── script │ │ ├── BasicScript.s.sol │ │ └── CounterMultisigScript.s.sol ├── template-pause-bridge-base │ ├── .env │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ └── PauseBridge.s.sol ├── template-safe-management │ ├── .env │ ├── Makefile │ ├── OwnerDiff.json │ ├── README.md │ ├── foundry.toml │ └── script │ │ └── UpdateSigners.s.sol ├── template-set-bridge-partner-threshold │ ├── .env │ ├── FACILITATOR.md │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ └── SetThreshold.s.sol ├── template-switch-to-permissioned-game │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ │ └── SwitchToPermissionedGame.sol └── template-upgrade-fault-proofs │ ├── .env │ ├── Makefile │ ├── README.md │ ├── foundry.toml │ └── script │ ├── DeployDisputeGames.s.sol │ └── UpgradeDGF.s.sol └── solana ├── MCM.mk ├── Makefile ├── devnet-alpha ├── .env ├── 2025-10-20-deploy-bridge │ ├── .env │ ├── .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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── .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 │ ├── .env │ ├── .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 ├── devnet ├── .env ├── 2025-10-20-deploy-mcm │ ├── .env │ ├── .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 │ ├── .env │ ├── .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 │ ├── .env │ ├── .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 │ ├── .env │ ├── 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 │ ├── .env │ ├── .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 ├── mainnet ├── .env ├── 2025-10-27-deploy-mcm │ ├── .env │ ├── .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 │ ├── .env │ ├── 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 │ ├── .env │ ├── 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 │ ├── .env │ ├── .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 │ ├── .env │ ├── FACILITATORS.md │ ├── Makefile │ ├── README.md │ ├── proposal-pause.json │ └── proposal-unpause.json └── 2025-12-01-upgrade-bridge-and-rollback │ ├── .env │ ├── .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 ├── .env ├── FACILITATORS.md ├── Makefile └── README.md ├── template-update-signers-mcm ├── .env ├── FACILITATORS.md ├── Makefile └── README.md └── template-upgrade-bridge ├── .env ├── .gitignore ├── FACILITATORS.md ├── Makefile └── README.md /.codeflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/.codeflow.yml -------------------------------------------------------------------------------- /.github/workflows/check-post-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/.github/workflows/check-post-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/Makefile -------------------------------------------------------------------------------- /Multisig.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/Multisig.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/logo.png -------------------------------------------------------------------------------- /mainnet/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/.env -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy-deterministic-proxy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy-deterministic-proxy/.env -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy-deterministic-proxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy-deterministic-proxy/Makefile -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy-deterministic-proxy/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy-deterministic-proxy/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy-deterministic-proxy/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy-deterministic-proxy/remappings.txt -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/.env -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/Makefile -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/deployed/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/deployed/addresses.json -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/execute/RunDeployBedrock.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/execute/RunDeployBedrock.s.sol -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/inputs/construct-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/inputs/construct-config.sh -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/inputs/deploy-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/inputs/deploy-config.json -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/inputs/misc-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "deployerAddress": "0x6606d3c20cc94cc7aa1d430c0e83a5129976153a" 3 | } -------------------------------------------------------------------------------- /mainnet/2023-06-14-deploy/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-deploy/remappings.txt -------------------------------------------------------------------------------- /mainnet/2023-06-14-test-tx/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-test-tx/.env -------------------------------------------------------------------------------- /mainnet/2023-06-14-test-tx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-test-tx/Makefile -------------------------------------------------------------------------------- /mainnet/2023-06-14-test-tx/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-test-tx/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-06-14-test-tx/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-test-tx/remappings.txt -------------------------------------------------------------------------------- /mainnet/2023-06-14-test-tx/script/Test.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-test-tx/script/Test.s.sol -------------------------------------------------------------------------------- /mainnet/2023-06-14-test-tx/src/Test.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-14-test-tx/src/Test.sol -------------------------------------------------------------------------------- /mainnet/2023-06-15-unpause-portal/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-unpause-portal/.env -------------------------------------------------------------------------------- /mainnet/2023-06-15-unpause-portal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-unpause-portal/Makefile -------------------------------------------------------------------------------- /mainnet/2023-06-15-unpause-portal/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-unpause-portal/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-06-15-unpause-portal/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-unpause-portal/remappings.txt -------------------------------------------------------------------------------- /mainnet/2023-06-15-unpause-portal/script/UnpausePortal.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-unpause-portal/script/UnpausePortal.s.sol -------------------------------------------------------------------------------- /mainnet/2023-06-15-validate-deploy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-validate-deploy/.env -------------------------------------------------------------------------------- /mainnet/2023-06-15-validate-deploy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-validate-deploy/Makefile -------------------------------------------------------------------------------- /mainnet/2023-06-15-validate-deploy/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-validate-deploy/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-06-15-validate-deploy/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-validate-deploy/remappings.txt -------------------------------------------------------------------------------- /mainnet/2023-06-15-validate-deploy/script/ValidateDeploy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-15-validate-deploy/script/ValidateDeploy.s.sol -------------------------------------------------------------------------------- /mainnet/2023-06-21-transfer-system-cfg-owner/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-21-transfer-system-cfg-owner/.env -------------------------------------------------------------------------------- /mainnet/2023-06-21-transfer-system-cfg-owner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-21-transfer-system-cfg-owner/Makefile -------------------------------------------------------------------------------- /mainnet/2023-06-21-transfer-system-cfg-owner/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-21-transfer-system-cfg-owner/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-06-21-transfer-system-cfg-owner/remappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-21-transfer-system-cfg-owner/remappings.txt -------------------------------------------------------------------------------- /mainnet/2023-06-21-transfer-system-cfg-owner/sign.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-06-21-transfer-system-cfg-owner/sign.sh -------------------------------------------------------------------------------- /mainnet/2023-07-11-test-l2-safe/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-11-test-l2-safe/.env -------------------------------------------------------------------------------- /mainnet/2023-07-11-test-l2-safe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-11-test-l2-safe/Makefile -------------------------------------------------------------------------------- /mainnet/2023-07-11-test-l2-safe/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-11-test-l2-safe/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-07-11-test-l2-safe/script/DeployTestProxy.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-11-test-l2-safe/script/DeployTestProxy.s.sol -------------------------------------------------------------------------------- /mainnet/2023-07-11-test-l2-safe/script/TestL2Safe.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-11-test-l2-safe/script/TestL2Safe.s.sol -------------------------------------------------------------------------------- /mainnet/2023-07-17-test-l1-nested-safe/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-17-test-l1-nested-safe/.env -------------------------------------------------------------------------------- /mainnet/2023-07-17-test-l1-nested-safe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-17-test-l1-nested-safe/Makefile -------------------------------------------------------------------------------- /mainnet/2023-07-17-test-l1-nested-safe/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-17-test-l1-nested-safe/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-07-19-challenger-1-of-2/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-19-challenger-1-of-2/.env -------------------------------------------------------------------------------- /mainnet/2023-07-19-challenger-1-of-2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-19-challenger-1-of-2/Makefile -------------------------------------------------------------------------------- /mainnet/2023-07-19-challenger-1-of-2/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-19-challenger-1-of-2/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-07-19-challenger-1-of-2/script/UpgradeL2OO.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-19-challenger-1-of-2/script/UpgradeL2OO.s.sol -------------------------------------------------------------------------------- /mainnet/2023-07-19-test-l2-nested-safe/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-19-test-l2-nested-safe/.env -------------------------------------------------------------------------------- /mainnet/2023-07-19-test-l2-nested-safe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-19-test-l2-nested-safe/Makefile -------------------------------------------------------------------------------- /mainnet/2023-07-19-test-l2-nested-safe/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-19-test-l2-nested-safe/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-07-26-transfer-owner-nested-safes/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-26-transfer-owner-nested-safes/.env -------------------------------------------------------------------------------- /mainnet/2023-07-26-transfer-owner-nested-safes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-26-transfer-owner-nested-safes/Makefile -------------------------------------------------------------------------------- /mainnet/2023-07-26-transfer-owner-nested-safes/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-07-26-transfer-owner-nested-safes/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-08-07-test-op-fee-nested-safe/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-07-test-op-fee-nested-safe/.env -------------------------------------------------------------------------------- /mainnet/2023-08-07-test-op-fee-nested-safe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-07-test-op-fee-nested-safe/Makefile -------------------------------------------------------------------------------- /mainnet/2023-08-07-test-op-fee-nested-safe/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-07-test-op-fee-nested-safe/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-08-15-support-eas/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-15-support-eas/.env -------------------------------------------------------------------------------- /mainnet/2023-08-15-support-eas/FINAL-runbook-supportEAS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-15-support-eas/FINAL-runbook-supportEAS.pdf -------------------------------------------------------------------------------- /mainnet/2023-08-15-support-eas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-15-support-eas/Makefile -------------------------------------------------------------------------------- /mainnet/2023-08-15-support-eas/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-15-support-eas/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-08-15-support-eas/script/UpgradeToEAS.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-15-support-eas/script/UpgradeToEAS.s.sol -------------------------------------------------------------------------------- /mainnet/2023-08-22-fee-vault-fix/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-22-fee-vault-fix/.env -------------------------------------------------------------------------------- /mainnet/2023-08-22-fee-vault-fix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-22-fee-vault-fix/Makefile -------------------------------------------------------------------------------- /mainnet/2023-08-22-fee-vault-fix/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-22-fee-vault-fix/foundry.toml -------------------------------------------------------------------------------- /mainnet/2023-08-22-fee-vault-fix/script/FixFeeVaultsL2.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-22-fee-vault-fix/script/FixFeeVaultsL2.s.sol -------------------------------------------------------------------------------- /mainnet/2023-08-28-deploy-revshare/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-28-deploy-revshare/.env -------------------------------------------------------------------------------- /mainnet/2023-08-28-deploy-revshare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-28-deploy-revshare/Makefile -------------------------------------------------------------------------------- /mainnet/2023-08-28-deploy-revshare/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2023-08-28-deploy-revshare/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-02-21-setup-smart-escrow/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-02-21-setup-smart-escrow/.env -------------------------------------------------------------------------------- /mainnet/2024-02-21-setup-smart-escrow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-02-21-setup-smart-escrow/Makefile -------------------------------------------------------------------------------- /mainnet/2024-02-21-setup-smart-escrow/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-02-21-setup-smart-escrow/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-02-23-transfer-op/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-02-23-transfer-op/.env -------------------------------------------------------------------------------- /mainnet/2024-02-23-transfer-op/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-02-23-transfer-op/Makefile -------------------------------------------------------------------------------- /mainnet/2024-02-23-transfer-op/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-02-23-transfer-op/README.md -------------------------------------------------------------------------------- /mainnet/2024-02-23-transfer-op/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-02-23-transfer-op/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-03-05-pause-unpause-test/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-05-pause-unpause-test/.env -------------------------------------------------------------------------------- /mainnet/2024-03-05-pause-unpause-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-05-pause-unpause-test/Makefile -------------------------------------------------------------------------------- /mainnet/2024-03-05-pause-unpause-test/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-05-pause-unpause-test/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-03-05-pause-unpause-test/script/PausePortal.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-05-pause-unpause-test/script/PausePortal.s.sol -------------------------------------------------------------------------------- /mainnet/2024-03-07-ecotone-sysconfig-updates/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-07-ecotone-sysconfig-updates/.env -------------------------------------------------------------------------------- /mainnet/2024-03-07-ecotone-sysconfig-updates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-07-ecotone-sysconfig-updates/Makefile -------------------------------------------------------------------------------- /mainnet/2024-03-07-ecotone-sysconfig-updates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-07-ecotone-sysconfig-updates/README.md -------------------------------------------------------------------------------- /mainnet/2024-03-07-ecotone-sysconfig-updates/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-07-ecotone-sysconfig-updates/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-03-26-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-26-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-03-26-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-26-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-03-26-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-26-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-03-26-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-26-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-03-26-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-03-26-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-04-01-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-01-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-04-01-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-01-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-04-01-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-01-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-04-01-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-01-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-04-01-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-01-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-04-12-deployERC20Factory/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-12-deployERC20Factory/.env -------------------------------------------------------------------------------- /mainnet/2024-04-12-deployERC20Factory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-12-deployERC20Factory/Makefile -------------------------------------------------------------------------------- /mainnet/2024-04-12-deployERC20Factory/deployed/addresses.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /mainnet/2024-04-12-deployERC20Factory/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-12-deployERC20Factory/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-04-15-redeploy-smart-escrow/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-15-redeploy-smart-escrow/.env -------------------------------------------------------------------------------- /mainnet/2024-04-15-redeploy-smart-escrow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-15-redeploy-smart-escrow/Makefile -------------------------------------------------------------------------------- /mainnet/2024-04-15-redeploy-smart-escrow/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-15-redeploy-smart-escrow/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-04-17-upgrade-erc20-factory/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-17-upgrade-erc20-factory/.env -------------------------------------------------------------------------------- /mainnet/2024-04-17-upgrade-erc20-factory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-17-upgrade-erc20-factory/Makefile -------------------------------------------------------------------------------- /mainnet/2024-04-17-upgrade-erc20-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-17-upgrade-erc20-factory/README.md -------------------------------------------------------------------------------- /mainnet/2024-04-17-upgrade-erc20-factory/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-17-upgrade-erc20-factory/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-04-30-deployTempERC20Factory/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-30-deployTempERC20Factory/.env -------------------------------------------------------------------------------- /mainnet/2024-04-30-deployTempERC20Factory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-30-deployTempERC20Factory/Makefile -------------------------------------------------------------------------------- /mainnet/2024-04-30-deployTempERC20Factory/deployed/addresses.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /mainnet/2024-04-30-deployTempERC20Factory/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-30-deployTempERC20Factory/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-04-30-deployTempERC20Factory/inputs/deploy-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mainnet/2024-04-30-deployTempERC20Factory/inputs/misc-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mainnet/2024-04-30-deployTempERC20Factory/src/ERC20Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-04-30-deployTempERC20Factory/src/ERC20Factory.sol -------------------------------------------------------------------------------- /mainnet/2024-05-28-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-28-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-05-28-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-28-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-05-28-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-28-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-05-28-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-28-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-05-28-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-28-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-05-30-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-30-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-05-30-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-30-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-05-30-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-30-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-05-30-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-30-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-05-30-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-05-30-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-06-05-reredeploy-smart-escrow/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-05-reredeploy-smart-escrow/.env -------------------------------------------------------------------------------- /mainnet/2024-06-05-reredeploy-smart-escrow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-05-reredeploy-smart-escrow/Makefile -------------------------------------------------------------------------------- /mainnet/2024-06-05-reredeploy-smart-escrow/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-05-reredeploy-smart-escrow/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-06-17-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-17-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-06-17-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-17-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-06-17-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-17-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-06-17-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-17-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-06-17-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-17-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-06-25-update-gas-config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-25-update-gas-config/.env -------------------------------------------------------------------------------- /mainnet/2024-06-25-update-gas-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-25-update-gas-config/Makefile -------------------------------------------------------------------------------- /mainnet/2024-06-25-update-gas-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-25-update-gas-config/README.md -------------------------------------------------------------------------------- /mainnet/2024-06-25-update-gas-config/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-25-update-gas-config/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-06-25-update-gas-config/script/UpdateGasConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-25-update-gas-config/script/UpdateGasConfig.sol -------------------------------------------------------------------------------- /mainnet/2024-06-28-update-gas-config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-28-update-gas-config/.env -------------------------------------------------------------------------------- /mainnet/2024-06-28-update-gas-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-28-update-gas-config/Makefile -------------------------------------------------------------------------------- /mainnet/2024-06-28-update-gas-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-28-update-gas-config/README.md -------------------------------------------------------------------------------- /mainnet/2024-06-28-update-gas-config/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-28-update-gas-config/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-06-28-update-gas-config/script/UpdateGasConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-06-28-update-gas-config/script/UpdateGasConfig.sol -------------------------------------------------------------------------------- /mainnet/2024-07-10-update-gas-config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-10-update-gas-config/.env -------------------------------------------------------------------------------- /mainnet/2024-07-10-update-gas-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-10-update-gas-config/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-10-update-gas-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-10-update-gas-config/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-10-update-gas-config/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-10-update-gas-config/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-10-update-gas-config/script/UpdateGasConfig.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-10-update-gas-config/script/UpdateGasConfig.sol -------------------------------------------------------------------------------- /mainnet/2024-07-16-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-16-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-07-16-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-16-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-16-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-16-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-16-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-16-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-16-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-16-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-07-23-set-l1-resolver/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-set-l1-resolver/.env -------------------------------------------------------------------------------- /mainnet/2024-07-23-set-l1-resolver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-set-l1-resolver/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-23-set-l1-resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-set-l1-resolver/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-23-set-l1-resolver/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-set-l1-resolver/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-23-set-l1-resolver/script/SetL1Resolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-set-l1-resolver/script/SetL1Resolver.sol -------------------------------------------------------------------------------- /mainnet/2024-07-23-transfer-owner-balance-tracker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-transfer-owner-balance-tracker/.env -------------------------------------------------------------------------------- /mainnet/2024-07-23-transfer-owner-balance-tracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-transfer-owner-balance-tracker/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-23-transfer-owner-balance-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-transfer-owner-balance-tracker/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-23-transfer-owner-balance-tracker/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-23-transfer-owner-balance-tracker/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-24-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-24-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-07-24-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-24-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-24-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-24-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-24-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-24-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-24-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-24-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-07-24-reduce-batcher-proposer-balance-targets/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-24-reduce-batcher-proposer-balance-targets/.env -------------------------------------------------------------------------------- /mainnet/2024-07-30-set-new-l1-resolver/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-set-new-l1-resolver/.env -------------------------------------------------------------------------------- /mainnet/2024-07-30-set-new-l1-resolver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-set-new-l1-resolver/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-30-set-new-l1-resolver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-set-new-l1-resolver/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-30-set-new-l1-resolver/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-set-new-l1-resolver/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-30-set-new-l1-resolver/script/SetL1Resolver.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-set-new-l1-resolver/script/SetL1Resolver.sol -------------------------------------------------------------------------------- /mainnet/2024-07-30-transfer-op/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-transfer-op/.env -------------------------------------------------------------------------------- /mainnet/2024-07-30-transfer-op/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-transfer-op/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-30-transfer-op/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-transfer-op/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-30-transfer-op/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-transfer-op/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-30-transfer-op/script/TransferOPTokens.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-30-transfer-op/script/TransferOPTokens.s.sol -------------------------------------------------------------------------------- /mainnet/2024-07-31-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-31-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-07-31-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-31-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-07-31-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-31-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-07-31-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-31-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-07-31-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-07-31-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/.env -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/Makefile -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/README.md -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement.json -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement1.csv: -------------------------------------------------------------------------------- 1 | neodaoist,0x4BBa239C9cC83619228457502227D801e4738bA0 2 | -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement10.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement11.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement12.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement13.csv: -------------------------------------------------------------------------------- 1 | baseapp,0x6c199d7B757Cb3E16bCb7fD666eAFb6609754bC0 -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement14.csv: -------------------------------------------------------------------------------- 1 | NOP -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement15.csv: -------------------------------------------------------------------------------- 1 | basecamp,0xFeEa32fb5A83fFFF0ffDeC4F853377557FF80224 -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement2.csv: -------------------------------------------------------------------------------- 1 | dimo,0x0a3092E52BD2565e451E846f064D63dC6864FF06,, 2 | -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement3.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement4.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement5.csv: -------------------------------------------------------------------------------- 1 | coin,0x52E6De8B2AE95257E70B0E4B2321263a69594623,, -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement6.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement7.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement8.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/disbursement9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/disbursement9.csv -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-08-27-disburse-basenames/parser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-08-27-disburse-basenames/parser.sh -------------------------------------------------------------------------------- /mainnet/2024-09-23-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-09-23-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-09-23-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-09-23-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-09-23-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-09-23-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-09-23-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-09-23-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-10-01-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-01-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-10-01-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-01-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-10-01-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-01-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-10-01-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-01-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-10-08-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-08-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-10-08-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-08-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-10-08-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-08-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-10-08-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-08-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-10-15-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-15-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-10-15-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-15-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-10-15-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-15-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-10-15-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-15-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-10-22-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-22-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-10-22-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-22-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-10-22-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-22-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-10-22-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-10-22-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-11-18-increase-max-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-11-18-increase-max-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-11-18-increase-max-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-11-18-increase-max-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-11-18-increase-max-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-11-18-increase-max-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-11-18-increase-max-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-11-18-increase-max-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-11-18-increase-max-gas-limit/output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-11-18-increase-max-gas-limit/output -------------------------------------------------------------------------------- /mainnet/2024-12-04-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-04-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-12-04-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-04-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-12-04-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-04-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-12-04-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-04-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-12-11-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-11-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-12-11-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-11-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-12-11-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-11-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-12-11-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-11-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-12-18-holocene-deployments/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-holocene-deployments/.env -------------------------------------------------------------------------------- /mainnet/2024-12-18-holocene-deployments/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-holocene-deployments/Makefile -------------------------------------------------------------------------------- /mainnet/2024-12-18-holocene-deployments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-holocene-deployments/README.md -------------------------------------------------------------------------------- /mainnet/2024-12-18-holocene-deployments/deployed/addresses.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /mainnet/2024-12-18-holocene-deployments/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-holocene-deployments/foundry.toml -------------------------------------------------------------------------------- /mainnet/2024-12-18-holocene-deployments/inputs/deploy-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mainnet/2024-12-18-holocene-deployments/inputs/misc-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mainnet/2024-12-18-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2024-12-18-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2024-12-18-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2024-12-18-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2024-12-18-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-01-08-transfer-proxyadmin-owner-L1alias/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-08-transfer-proxyadmin-owner-L1alias/.env -------------------------------------------------------------------------------- /mainnet/2025-01-08-transfer-proxyadmin-owner-L1alias/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-08-transfer-proxyadmin-owner-L1alias/Makefile -------------------------------------------------------------------------------- /mainnet/2025-01-08-transfer-proxyadmin-owner-L1alias/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-08-transfer-proxyadmin-owner-L1alias/README.md -------------------------------------------------------------------------------- /mainnet/2025-01-15-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-01-15-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-01-15-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-01-15-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-01-15-nested-ownership-transfer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-nested-ownership-transfer/.env -------------------------------------------------------------------------------- /mainnet/2025-01-15-nested-ownership-transfer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-nested-ownership-transfer/Makefile -------------------------------------------------------------------------------- /mainnet/2025-01-15-nested-ownership-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-nested-ownership-transfer/README.md -------------------------------------------------------------------------------- /mainnet/2025-01-15-nested-ownership-transfer/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-nested-ownership-transfer/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-01-15-nested-ownership-transfer/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-nested-ownership-transfer/addresses.json -------------------------------------------------------------------------------- /mainnet/2025-01-15-nested-ownership-transfer/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-nested-ownership-transfer/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-01-15-nested-ownership-transfer/signers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-15-nested-ownership-transfer/signers.json -------------------------------------------------------------------------------- /mainnet/2025-01-22-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-22-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-01-22-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-22-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-01-22-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-22-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-01-22-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-22-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-01-29-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-29-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-01-29-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-29-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-01-29-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-29-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-01-29-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-01-29-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-02-12-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-12-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-02-12-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-12-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-02-12-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-12-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-02-12-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-12-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-02-19-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-19-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-02-19-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-19-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-02-19-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-19-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-02-19-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-19-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-02-25-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-25-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-02-25-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-25-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-02-25-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-25-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-02-25-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-02-25-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-03-05-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-03-05-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-03-05-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-03-05-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-03-05-upgrade-fault-proofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-upgrade-fault-proofs/.env -------------------------------------------------------------------------------- /mainnet/2025-03-05-upgrade-fault-proofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-upgrade-fault-proofs/Makefile -------------------------------------------------------------------------------- /mainnet/2025-03-05-upgrade-fault-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-upgrade-fault-proofs/README.md -------------------------------------------------------------------------------- /mainnet/2025-03-05-upgrade-fault-proofs/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-upgrade-fault-proofs/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-03-05-upgrade-fault-proofs/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-upgrade-fault-proofs/addresses.json -------------------------------------------------------------------------------- /mainnet/2025-03-05-upgrade-fault-proofs/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-upgrade-fault-proofs/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-03-05-upgrade-fault-proofs/script/UpgradeDGF.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-05-upgrade-fault-proofs/script/UpgradeDGF.s.sol -------------------------------------------------------------------------------- /mainnet/2025-03-19-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-19-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-03-19-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-19-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-03-19-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-19-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-03-19-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-19-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-03-26-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-26-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-03-26-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-26-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-03-26-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-26-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-03-26-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-03-26-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-04-07-init-smart-escrow-ownership-transfer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-07-init-smart-escrow-ownership-transfer/.env -------------------------------------------------------------------------------- /mainnet/2025-04-07-update-fee-disperser-ownership/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-07-update-fee-disperser-ownership/.env -------------------------------------------------------------------------------- /mainnet/2025-04-07-update-fee-disperser-ownership/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-07-update-fee-disperser-ownership/Makefile -------------------------------------------------------------------------------- /mainnet/2025-04-07-update-fee-disperser-ownership/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-07-update-fee-disperser-ownership/README.md -------------------------------------------------------------------------------- /mainnet/2025-04-07-update-fee-disperser-ownership/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-07-update-fee-disperser-ownership/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-04-07-update-fee-disperser-ownership/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-07-update-fee-disperser-ownership/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/.env -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/Makefile -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/README.md -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/addresses.json -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/script/UpgradeDGF.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/script/UpgradeDGF.s.sol -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/validations/CB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/validations/CB.md -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/validations/OP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/validations/OP.md -------------------------------------------------------------------------------- /mainnet/2025-04-23-upgrade-fault-proofs/validations/SC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-23-upgrade-fault-proofs/validations/SC.md -------------------------------------------------------------------------------- /mainnet/2025-04-29-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-29-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-04-29-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-29-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-04-29-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-29-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-04-29-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-04-29-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-05-06-fund-ledgers/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-06-fund-ledgers/.env -------------------------------------------------------------------------------- /mainnet/2025-05-06-fund-ledgers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-06-fund-ledgers/Makefile -------------------------------------------------------------------------------- /mainnet/2025-05-06-fund-ledgers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-06-fund-ledgers/README.md -------------------------------------------------------------------------------- /mainnet/2025-05-06-fund-ledgers/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-06-fund-ledgers/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-05-06-fund-ledgers/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-06-fund-ledgers/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-05-06-fund-ledgers/funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-06-fund-ledgers/funding.json -------------------------------------------------------------------------------- /mainnet/2025-05-06-fund-ledgers/script/Fund.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-06-fund-ledgers/script/Fund.s.sol -------------------------------------------------------------------------------- /mainnet/2025-05-07-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-07-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-05-07-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-07-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-05-07-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-07-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-05-07-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-07-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-05-13-incident-multisig-signers/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-13-incident-multisig-signers/.env -------------------------------------------------------------------------------- /mainnet/2025-05-13-incident-multisig-signers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-13-incident-multisig-signers/Makefile -------------------------------------------------------------------------------- /mainnet/2025-05-13-incident-multisig-signers/OwnerDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-13-incident-multisig-signers/OwnerDiff.json -------------------------------------------------------------------------------- /mainnet/2025-05-13-incident-multisig-signers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-13-incident-multisig-signers/README.md -------------------------------------------------------------------------------- /mainnet/2025-05-13-incident-multisig-signers/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-13-incident-multisig-signers/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-05-13-incident-multisig-signers/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-13-incident-multisig-signers/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-05-15-eip1559-denominator-reduction/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-15-eip1559-denominator-reduction/.env -------------------------------------------------------------------------------- /mainnet/2025-05-15-eip1559-denominator-reduction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-15-eip1559-denominator-reduction/Makefile -------------------------------------------------------------------------------- /mainnet/2025-05-15-eip1559-denominator-reduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-15-eip1559-denominator-reduction/README.md -------------------------------------------------------------------------------- /mainnet/2025-05-15-eip1559-denominator-reduction/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-15-eip1559-denominator-reduction/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-05-15-eip1559-denominator-reduction/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-05-15-eip1559-denominator-reduction/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-06-04-upgrade-system-config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-04-upgrade-system-config/.env -------------------------------------------------------------------------------- /mainnet/2025-06-04-upgrade-system-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-04-upgrade-system-config/Makefile -------------------------------------------------------------------------------- /mainnet/2025-06-04-upgrade-system-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-04-upgrade-system-config/README.md -------------------------------------------------------------------------------- /mainnet/2025-06-04-upgrade-system-config/addresses.json: -------------------------------------------------------------------------------- 1 | { 2 | "systemConfig": "0x78FFE9209dFF6Fe1c9B6F3EFdF996BeE60346D0e" 3 | } -------------------------------------------------------------------------------- /mainnet/2025-06-04-upgrade-system-config/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-04-upgrade-system-config/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-06-18-eip1559-elasticity-increase/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-18-eip1559-elasticity-increase/.env -------------------------------------------------------------------------------- /mainnet/2025-06-18-eip1559-elasticity-increase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-18-eip1559-elasticity-increase/Makefile -------------------------------------------------------------------------------- /mainnet/2025-06-18-eip1559-elasticity-increase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-18-eip1559-elasticity-increase/README.md -------------------------------------------------------------------------------- /mainnet/2025-06-18-eip1559-elasticity-increase/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-18-eip1559-elasticity-increase/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-06-18-eip1559-elasticity-increase/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-18-eip1559-elasticity-increase/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-06-25-safe-swap-owner/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-25-safe-swap-owner/.env -------------------------------------------------------------------------------- /mainnet/2025-06-25-safe-swap-owner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-25-safe-swap-owner/Makefile -------------------------------------------------------------------------------- /mainnet/2025-06-25-safe-swap-owner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-25-safe-swap-owner/README.md -------------------------------------------------------------------------------- /mainnet/2025-06-25-safe-swap-owner/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-25-safe-swap-owner/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-06-25-safe-swap-owner/script/SwapOwner.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-25-safe-swap-owner/script/SwapOwner.s.sol -------------------------------------------------------------------------------- /mainnet/2025-06-25-safe-swap-owner/validations/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-06-25-safe-swap-owner/validations/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-07-24-eth-recovery/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-07-24-eth-recovery/.env -------------------------------------------------------------------------------- /mainnet/2025-07-24-eth-recovery/ARBITRUM_VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-07-24-eth-recovery/ARBITRUM_VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-07-24-eth-recovery/BASE_VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-07-24-eth-recovery/BASE_VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-07-24-eth-recovery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-07-24-eth-recovery/Makefile -------------------------------------------------------------------------------- /mainnet/2025-07-24-eth-recovery/OPTIMISM_VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-07-24-eth-recovery/OPTIMISM_VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-07-24-eth-recovery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-07-24-eth-recovery/README.md -------------------------------------------------------------------------------- /mainnet/2025-07-24-eth-recovery/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-07-24-eth-recovery/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-08-13-safe-swap-owner/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-08-13-safe-swap-owner/.env -------------------------------------------------------------------------------- /mainnet/2025-08-13-safe-swap-owner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-08-13-safe-swap-owner/Makefile -------------------------------------------------------------------------------- /mainnet/2025-08-13-safe-swap-owner/OwnerDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-08-13-safe-swap-owner/OwnerDiff.json -------------------------------------------------------------------------------- /mainnet/2025-08-13-safe-swap-owner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-08-13-safe-swap-owner/README.md -------------------------------------------------------------------------------- /mainnet/2025-08-13-safe-swap-owner/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-08-13-safe-swap-owner/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-08-13-safe-swap-owner/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-08-13-safe-swap-owner/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-08-13-safe-swap-owner/script/SwapOwner.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-08-13-safe-swap-owner/script/SwapOwner.s.sol -------------------------------------------------------------------------------- /mainnet/2025-10-06-funding/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-06-funding/.env -------------------------------------------------------------------------------- /mainnet/2025-10-06-funding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-06-funding/Makefile -------------------------------------------------------------------------------- /mainnet/2025-10-06-funding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-06-funding/README.md -------------------------------------------------------------------------------- /mainnet/2025-10-06-funding/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-06-funding/VALIDATION.md -------------------------------------------------------------------------------- /mainnet/2025-10-06-funding/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-06-funding/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-10-06-funding/funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-06-funding/funding.json -------------------------------------------------------------------------------- /mainnet/2025-10-06-funding/script/Fund.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-06-funding/script/Fund.s.sol -------------------------------------------------------------------------------- /mainnet/2025-10-07-upgrade-to-U16a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-07-upgrade-to-U16a/README.md -------------------------------------------------------------------------------- /mainnet/2025-10-20-incident-multisig-signers/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-20-incident-multisig-signers/.env -------------------------------------------------------------------------------- /mainnet/2025-10-20-incident-multisig-signers/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-20-incident-multisig-signers/FACILITATORS.md -------------------------------------------------------------------------------- /mainnet/2025-10-20-incident-multisig-signers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-20-incident-multisig-signers/Makefile -------------------------------------------------------------------------------- /mainnet/2025-10-20-incident-multisig-signers/OwnerDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-20-incident-multisig-signers/OwnerDiff.json -------------------------------------------------------------------------------- /mainnet/2025-10-20-incident-multisig-signers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-20-incident-multisig-signers/README.md -------------------------------------------------------------------------------- /mainnet/2025-10-20-incident-multisig-signers/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-20-incident-multisig-signers/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-10-28-increase-gas-and-elasticity-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-28-increase-gas-and-elasticity-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-10-28-increase-gas-and-elasticity-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-28-increase-gas-and-elasticity-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-10-28-increase-gas-and-elasticity-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-10-28-increase-gas-and-elasticity-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-11-05-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-05-increase-gas-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-11-05-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-05-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-11-05-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-05-increase-gas-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-11-05-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-05-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-11-10-increase-gas-and-elasticity-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-10-increase-gas-and-elasticity-limit/.env -------------------------------------------------------------------------------- /mainnet/2025-11-10-increase-gas-and-elasticity-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-10-increase-gas-and-elasticity-limit/Makefile -------------------------------------------------------------------------------- /mainnet/2025-11-10-increase-gas-and-elasticity-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-10-increase-gas-and-elasticity-limit/README.md -------------------------------------------------------------------------------- /mainnet/2025-11-15-deploy-cb-multicall/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-15-deploy-cb-multicall/.env -------------------------------------------------------------------------------- /mainnet/2025-11-15-deploy-cb-multicall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-15-deploy-cb-multicall/Makefile -------------------------------------------------------------------------------- /mainnet/2025-11-15-deploy-cb-multicall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-15-deploy-cb-multicall/README.md -------------------------------------------------------------------------------- /mainnet/2025-11-15-deploy-cb-multicall/addresses.json: -------------------------------------------------------------------------------- 1 | { 2 | "cbMulticall": "0xf113DA645C65f786c08a48d540Ee5f7A59189ffF" 3 | } -------------------------------------------------------------------------------- /mainnet/2025-11-15-deploy-cb-multicall/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-15-deploy-cb-multicall/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-11-20-deploy-cb-multicall/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-20-deploy-cb-multicall/.env -------------------------------------------------------------------------------- /mainnet/2025-11-20-deploy-cb-multicall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-20-deploy-cb-multicall/Makefile -------------------------------------------------------------------------------- /mainnet/2025-11-20-deploy-cb-multicall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-20-deploy-cb-multicall/README.md -------------------------------------------------------------------------------- /mainnet/2025-11-20-deploy-cb-multicall/addresses.json: -------------------------------------------------------------------------------- 1 | { 2 | "cbMulticall": "0xA8B8CA1d6F0F5Ce63dCEA9121A01b302c5801303" 3 | } -------------------------------------------------------------------------------- /mainnet/2025-11-20-deploy-cb-multicall/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-20-deploy-cb-multicall/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-11-21-u17-jovian-upgrade/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-21-u17-jovian-upgrade/.env -------------------------------------------------------------------------------- /mainnet/2025-11-21-u17-jovian-upgrade/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-21-u17-jovian-upgrade/FACILITATORS.md -------------------------------------------------------------------------------- /mainnet/2025-11-21-u17-jovian-upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-21-u17-jovian-upgrade/Makefile -------------------------------------------------------------------------------- /mainnet/2025-11-21-u17-jovian-upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-21-u17-jovian-upgrade/README.md -------------------------------------------------------------------------------- /mainnet/2025-11-21-u17-jovian-upgrade/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-21-u17-jovian-upgrade/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-11-21-u17-jovian-upgrade/script/MultisigScript.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-21-u17-jovian-upgrade/script/MultisigScript.sol -------------------------------------------------------------------------------- /mainnet/2025-11-25-base-bridge-deployment/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-25-base-bridge-deployment/.env -------------------------------------------------------------------------------- /mainnet/2025-11-25-base-bridge-deployment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-25-base-bridge-deployment/Makefile -------------------------------------------------------------------------------- /mainnet/2025-11-25-base-bridge-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-25-base-bridge-deployment/README.md -------------------------------------------------------------------------------- /mainnet/2025-11-25-base-bridge-deployment/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-25-base-bridge-deployment/addresses.json -------------------------------------------------------------------------------- /mainnet/2025-11-25-base-bridge-deployment/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-25-base-bridge-deployment/config.json -------------------------------------------------------------------------------- /mainnet/2025-11-25-base-bridge-deployment/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-11-25-base-bridge-deployment/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-12-01-pause-bridge-base/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-01-pause-bridge-base/.env -------------------------------------------------------------------------------- /mainnet/2025-12-01-pause-bridge-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-01-pause-bridge-base/Makefile -------------------------------------------------------------------------------- /mainnet/2025-12-01-pause-bridge-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-01-pause-bridge-base/README.md -------------------------------------------------------------------------------- /mainnet/2025-12-01-pause-bridge-base/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-01-pause-bridge-base/foundry.toml -------------------------------------------------------------------------------- /mainnet/2025-12-01-pause-bridge-base/script/PauseBridge.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-01-pause-bridge-base/script/PauseBridge.s.sol -------------------------------------------------------------------------------- /mainnet/2025-12-04-set-jovian-parameters/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-04-set-jovian-parameters/.env -------------------------------------------------------------------------------- /mainnet/2025-12-04-set-jovian-parameters/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-04-set-jovian-parameters/FACILITATORS.md -------------------------------------------------------------------------------- /mainnet/2025-12-04-set-jovian-parameters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-04-set-jovian-parameters/Makefile -------------------------------------------------------------------------------- /mainnet/2025-12-04-set-jovian-parameters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-04-set-jovian-parameters/README.md -------------------------------------------------------------------------------- /mainnet/2025-12-04-set-jovian-parameters/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/2025-12-04-set-jovian-parameters/foundry.toml -------------------------------------------------------------------------------- /mainnet/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/mainnet/addresses.json -------------------------------------------------------------------------------- /sepolia-alpha/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/.env -------------------------------------------------------------------------------- /sepolia-alpha/2023-09-20-deploy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2023-09-20-deploy/.env -------------------------------------------------------------------------------- /sepolia-alpha/2023-09-20-deploy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2023-09-20-deploy/Makefile -------------------------------------------------------------------------------- /sepolia-alpha/2023-09-20-deploy/deployed/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2023-09-20-deploy/deployed/addresses.json -------------------------------------------------------------------------------- /sepolia-alpha/2023-09-20-deploy/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2023-09-20-deploy/foundry.toml -------------------------------------------------------------------------------- /sepolia-alpha/2023-10-06-upgrade-l1-standard-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2023-10-06-upgrade-l1-standard-bridge/.env -------------------------------------------------------------------------------- /sepolia-alpha/2023-10-06-upgrade-l1-standard-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | /src/ 2 | -------------------------------------------------------------------------------- /sepolia-alpha/2023-10-06-upgrade-l1-standard-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2023-10-06-upgrade-l1-standard-bridge/Makefile -------------------------------------------------------------------------------- /sepolia-alpha/2024-05-15-update-scalars/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-05-15-update-scalars/.env -------------------------------------------------------------------------------- /sepolia-alpha/2024-05-15-update-scalars/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-05-15-update-scalars/Makefile -------------------------------------------------------------------------------- /sepolia-alpha/2024-05-15-update-scalars/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-05-15-update-scalars/foundry.toml -------------------------------------------------------------------------------- /sepolia-alpha/2024-08-21-update-batcher-proposer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-08-21-update-batcher-proposer/.env -------------------------------------------------------------------------------- /sepolia-alpha/2024-08-21-update-batcher-proposer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-08-21-update-batcher-proposer/Makefile -------------------------------------------------------------------------------- /sepolia-alpha/2024-08-21-update-batcher-proposer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-08-21-update-batcher-proposer/README.md -------------------------------------------------------------------------------- /sepolia-alpha/2024-08-21-update-batcher-proposer/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-08-21-update-batcher-proposer/foundry.toml -------------------------------------------------------------------------------- /sepolia-alpha/2024-11-19-holocene-contracts/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-11-19-holocene-contracts/.env -------------------------------------------------------------------------------- /sepolia-alpha/2024-11-19-holocene-contracts/.gitignore: -------------------------------------------------------------------------------- 1 | /src/ 2 | -------------------------------------------------------------------------------- /sepolia-alpha/2024-11-19-holocene-contracts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-11-19-holocene-contracts/Makefile -------------------------------------------------------------------------------- /sepolia-alpha/2024-11-19-holocene-contracts/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia-alpha/2024-11-19-holocene-contracts/foundry.toml -------------------------------------------------------------------------------- /sepolia/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/.env -------------------------------------------------------------------------------- /sepolia/2023-09-26-deploy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-09-26-deploy/.env -------------------------------------------------------------------------------- /sepolia/2023-09-26-deploy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-09-26-deploy/Makefile -------------------------------------------------------------------------------- /sepolia/2023-09-26-deploy/deploy-config/deploy-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-09-26-deploy/deploy-config/deploy-config.json -------------------------------------------------------------------------------- /sepolia/2023-09-26-deploy/deployed/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-09-26-deploy/deployed/addresses.json -------------------------------------------------------------------------------- /sepolia/2023-09-26-deploy/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-09-26-deploy/foundry.toml -------------------------------------------------------------------------------- /sepolia/2023-10-07-upgrade-l1-standard-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-10-07-upgrade-l1-standard-bridge/.env -------------------------------------------------------------------------------- /sepolia/2023-10-07-upgrade-l1-standard-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | /src/ 2 | -------------------------------------------------------------------------------- /sepolia/2023-10-07-upgrade-l1-standard-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-10-07-upgrade-l1-standard-bridge/Makefile -------------------------------------------------------------------------------- /sepolia/2023-10-07-upgrade-l1-standard-bridge/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2023-10-07-upgrade-l1-standard-bridge/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-01-22-deploy-revshare/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-01-22-deploy-revshare/.env -------------------------------------------------------------------------------- /sepolia/2024-01-22-deploy-revshare/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-01-22-deploy-revshare/Makefile -------------------------------------------------------------------------------- /sepolia/2024-01-22-deploy-revshare/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-01-22-deploy-revshare/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-02-28-pause-unpause-portal/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-02-28-pause-unpause-portal/.env -------------------------------------------------------------------------------- /sepolia/2024-02-28-pause-unpause-portal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-02-28-pause-unpause-portal/Makefile -------------------------------------------------------------------------------- /sepolia/2024-02-28-pause-unpause-portal/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-02-28-pause-unpause-portal/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-03-07-ecotone-sysconfig-updates/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-03-07-ecotone-sysconfig-updates/.env -------------------------------------------------------------------------------- /sepolia/2024-03-07-ecotone-sysconfig-updates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-03-07-ecotone-sysconfig-updates/Makefile -------------------------------------------------------------------------------- /sepolia/2024-03-07-ecotone-sysconfig-updates/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-03-07-ecotone-sysconfig-updates/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-03-26-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-03-26-increase-gas-limit/.env -------------------------------------------------------------------------------- /sepolia/2024-03-26-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-03-26-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /sepolia/2024-03-26-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-03-26-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-03-26-increase-gas-limit/script/UpdateGasLimit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-03-26-increase-gas-limit/script/UpdateGasLimit.sol -------------------------------------------------------------------------------- /sepolia/2024-04-10-deploy-ERC20Factory/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-04-10-deploy-ERC20Factory/.env -------------------------------------------------------------------------------- /sepolia/2024-04-10-deploy-ERC20Factory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-04-10-deploy-ERC20Factory/Makefile -------------------------------------------------------------------------------- /sepolia/2024-04-10-deploy-ERC20Factory/deployed/addresses.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sepolia/2024-04-10-deploy-ERC20Factory/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-04-10-deploy-ERC20Factory/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-04-30-deployTempERC20Factory/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-04-30-deployTempERC20Factory/.env -------------------------------------------------------------------------------- /sepolia/2024-04-30-deployTempERC20Factory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-04-30-deployTempERC20Factory/Makefile -------------------------------------------------------------------------------- /sepolia/2024-04-30-deployTempERC20Factory/deployed/addresses.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sepolia/2024-04-30-deployTempERC20Factory/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-04-30-deployTempERC20Factory/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-04-30-deployTempERC20Factory/inputs/deploy-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sepolia/2024-04-30-deployTempERC20Factory/inputs/misc-config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sepolia/2024-04-30-deployTempERC20Factory/src/ERC20Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-04-30-deployTempERC20Factory/src/ERC20Factory.sol -------------------------------------------------------------------------------- /sepolia/2024-05-30-transfer-proxyadmin-owners/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-05-30-transfer-proxyadmin-owners/.env -------------------------------------------------------------------------------- /sepolia/2024-05-30-transfer-proxyadmin-owners/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-05-30-transfer-proxyadmin-owners/Makefile -------------------------------------------------------------------------------- /sepolia/2024-05-30-transfer-proxyadmin-owners/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-05-30-transfer-proxyadmin-owners/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-08-26-update-batcher-hash/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-08-26-update-batcher-hash/.env -------------------------------------------------------------------------------- /sepolia/2024-08-26-update-batcher-hash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-08-26-update-batcher-hash/Makefile -------------------------------------------------------------------------------- /sepolia/2024-08-26-update-batcher-hash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-08-26-update-batcher-hash/README.md -------------------------------------------------------------------------------- /sepolia/2024-08-26-update-batcher-hash/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-08-26-update-batcher-hash/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-09-11-deploy-new-PDG/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-deploy-new-PDG/.env -------------------------------------------------------------------------------- /sepolia/2024-09-11-deploy-new-PDG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-deploy-new-PDG/Makefile -------------------------------------------------------------------------------- /sepolia/2024-09-11-deploy-new-PDG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-deploy-new-PDG/README.md -------------------------------------------------------------------------------- /sepolia/2024-09-11-deploy-new-PDG/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-deploy-new-PDG/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-09-11-deploy-new-PDG/script/DeployNewPDG.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-deploy-new-PDG/script/DeployNewPDG.s.sol -------------------------------------------------------------------------------- /sepolia/2024-09-11-update-proposer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-update-proposer/.env -------------------------------------------------------------------------------- /sepolia/2024-09-11-update-proposer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-update-proposer/Makefile -------------------------------------------------------------------------------- /sepolia/2024-09-11-update-proposer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-update-proposer/README.md -------------------------------------------------------------------------------- /sepolia/2024-09-11-update-proposer/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-update-proposer/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-09-11-update-proposer/script/UpdateProposer.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-09-11-update-proposer/script/UpdateProposer.s.sol -------------------------------------------------------------------------------- /sepolia/2024-10-09-increase-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-10-09-increase-gas-limit/.env -------------------------------------------------------------------------------- /sepolia/2024-10-09-increase-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-10-09-increase-gas-limit/Makefile -------------------------------------------------------------------------------- /sepolia/2024-10-09-increase-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-10-09-increase-gas-limit/README.md -------------------------------------------------------------------------------- /sepolia/2024-10-09-increase-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-10-09-increase-gas-limit/foundry.toml -------------------------------------------------------------------------------- /sepolia/2024-12-06-increase-max-gas-limit/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-12-06-increase-max-gas-limit/.env -------------------------------------------------------------------------------- /sepolia/2024-12-06-increase-max-gas-limit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-12-06-increase-max-gas-limit/Makefile -------------------------------------------------------------------------------- /sepolia/2024-12-06-increase-max-gas-limit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-12-06-increase-max-gas-limit/README.md -------------------------------------------------------------------------------- /sepolia/2024-12-06-increase-max-gas-limit/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2024-12-06-increase-max-gas-limit/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-01-23-upgrade-balance-tracker/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-01-23-upgrade-balance-tracker/.env -------------------------------------------------------------------------------- /sepolia/2025-01-23-upgrade-balance-tracker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-01-23-upgrade-balance-tracker/Makefile -------------------------------------------------------------------------------- /sepolia/2025-01-23-upgrade-balance-tracker/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-01-23-upgrade-balance-tracker/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-02-14-upgrade-fault-proofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-02-14-upgrade-fault-proofs/.env -------------------------------------------------------------------------------- /sepolia/2025-02-14-upgrade-fault-proofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-02-14-upgrade-fault-proofs/Makefile -------------------------------------------------------------------------------- /sepolia/2025-02-14-upgrade-fault-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-02-14-upgrade-fault-proofs/README.md -------------------------------------------------------------------------------- /sepolia/2025-02-14-upgrade-fault-proofs/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-02-14-upgrade-fault-proofs/VALIDATION.md -------------------------------------------------------------------------------- /sepolia/2025-02-14-upgrade-fault-proofs/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-02-14-upgrade-fault-proofs/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-02-14-upgrade-fault-proofs/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-02-14-upgrade-fault-proofs/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-02-14-upgrade-fault-proofs/script/UpgradeDGF.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-02-14-upgrade-fault-proofs/script/UpgradeDGF.s.sol -------------------------------------------------------------------------------- /sepolia/2025-03-12-upgrade-fault-proofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-12-upgrade-fault-proofs/.env -------------------------------------------------------------------------------- /sepolia/2025-03-12-upgrade-fault-proofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-12-upgrade-fault-proofs/Makefile -------------------------------------------------------------------------------- /sepolia/2025-03-12-upgrade-fault-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-12-upgrade-fault-proofs/README.md -------------------------------------------------------------------------------- /sepolia/2025-03-12-upgrade-fault-proofs/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-12-upgrade-fault-proofs/VALIDATION.md -------------------------------------------------------------------------------- /sepolia/2025-03-12-upgrade-fault-proofs/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-12-upgrade-fault-proofs/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-03-12-upgrade-fault-proofs/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-12-upgrade-fault-proofs/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-03-12-upgrade-fault-proofs/script/UpgradeDGF.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-12-upgrade-fault-proofs/script/UpgradeDGF.s.sol -------------------------------------------------------------------------------- /sepolia/2025-03-14-mirror-mainnet-hierarchy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-14-mirror-mainnet-hierarchy/.env -------------------------------------------------------------------------------- /sepolia/2025-03-14-mirror-mainnet-hierarchy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-14-mirror-mainnet-hierarchy/Makefile -------------------------------------------------------------------------------- /sepolia/2025-03-14-mirror-mainnet-hierarchy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-14-mirror-mainnet-hierarchy/README.md -------------------------------------------------------------------------------- /sepolia/2025-03-14-mirror-mainnet-hierarchy/Validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-14-mirror-mainnet-hierarchy/Validation.md -------------------------------------------------------------------------------- /sepolia/2025-03-14-mirror-mainnet-hierarchy/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-14-mirror-mainnet-hierarchy/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-03-14-mirror-mainnet-hierarchy/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-03-14-mirror-mainnet-hierarchy/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-04-01-nested-ownership-transfer/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-01-nested-ownership-transfer/.env -------------------------------------------------------------------------------- /sepolia/2025-04-01-nested-ownership-transfer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-01-nested-ownership-transfer/Makefile -------------------------------------------------------------------------------- /sepolia/2025-04-01-nested-ownership-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-01-nested-ownership-transfer/README.md -------------------------------------------------------------------------------- /sepolia/2025-04-01-nested-ownership-transfer/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-01-nested-ownership-transfer/VALIDATION.md -------------------------------------------------------------------------------- /sepolia/2025-04-01-nested-ownership-transfer/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-01-nested-ownership-transfer/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-04-01-nested-ownership-transfer/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-01-nested-ownership-transfer/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-04-09-testnet-multisig-signers/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-09-testnet-multisig-signers/.env -------------------------------------------------------------------------------- /sepolia/2025-04-09-testnet-multisig-signers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-09-testnet-multisig-signers/Makefile -------------------------------------------------------------------------------- /sepolia/2025-04-09-testnet-multisig-signers/OwnerDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-09-testnet-multisig-signers/OwnerDiff.json -------------------------------------------------------------------------------- /sepolia/2025-04-09-testnet-multisig-signers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-09-testnet-multisig-signers/README.md -------------------------------------------------------------------------------- /sepolia/2025-04-09-testnet-multisig-signers/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-09-testnet-multisig-signers/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/.env -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/Makefile -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/README.md -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/script/UpgradeDGF.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/script/UpgradeDGF.s.sol -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/validations/SafeA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/validations/SafeA.md -------------------------------------------------------------------------------- /sepolia/2025-04-14-upgrade-fault-proofs/validations/SafeB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-04-14-upgrade-fault-proofs/validations/SafeB.md -------------------------------------------------------------------------------- /sepolia/2025-05-08-update-fee-disperser-ownership/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-08-update-fee-disperser-ownership/.env -------------------------------------------------------------------------------- /sepolia/2025-05-08-update-fee-disperser-ownership/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-08-update-fee-disperser-ownership/Makefile -------------------------------------------------------------------------------- /sepolia/2025-05-08-update-fee-disperser-ownership/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-08-update-fee-disperser-ownership/README.md -------------------------------------------------------------------------------- /sepolia/2025-05-08-update-fee-disperser-ownership/VALIDATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-08-update-fee-disperser-ownership/VALIDATION.md -------------------------------------------------------------------------------- /sepolia/2025-05-08-update-fee-disperser-ownership/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-08-update-fee-disperser-ownership/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-05-15-eip1559-denominator-reduction/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-15-eip1559-denominator-reduction/.env -------------------------------------------------------------------------------- /sepolia/2025-05-15-eip1559-denominator-reduction/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-15-eip1559-denominator-reduction/Makefile -------------------------------------------------------------------------------- /sepolia/2025-05-15-eip1559-denominator-reduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-15-eip1559-denominator-reduction/README.md -------------------------------------------------------------------------------- /sepolia/2025-05-15-eip1559-denominator-reduction/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-05-15-eip1559-denominator-reduction/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-06-04-upgrade-system-config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-06-04-upgrade-system-config/.env -------------------------------------------------------------------------------- /sepolia/2025-06-04-upgrade-system-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-06-04-upgrade-system-config/Makefile -------------------------------------------------------------------------------- /sepolia/2025-06-04-upgrade-system-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-06-04-upgrade-system-config/README.md -------------------------------------------------------------------------------- /sepolia/2025-06-04-upgrade-system-config/addresses.json: -------------------------------------------------------------------------------- 1 | { 2 | "systemConfig": "0xfdA350e8038728B689976D4A9E8A318400A150C5" 3 | } -------------------------------------------------------------------------------- /sepolia/2025-06-04-upgrade-system-config/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-06-04-upgrade-system-config/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-09-22-upgrade-to-U16a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-09-22-upgrade-to-U16a/README.md -------------------------------------------------------------------------------- /sepolia/2025-09-22-upgrade-to-U16a/validation.yml: -------------------------------------------------------------------------------- 1 | 'disabled': true 2 | -------------------------------------------------------------------------------- /sepolia/2025-10-09-fusaka-defense/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-09-fusaka-defense/.env -------------------------------------------------------------------------------- /sepolia/2025-10-09-fusaka-defense/FACILITATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-09-fusaka-defense/FACILITATOR.md -------------------------------------------------------------------------------- /sepolia/2025-10-09-fusaka-defense/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-09-fusaka-defense/Makefile -------------------------------------------------------------------------------- /sepolia/2025-10-09-fusaka-defense/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-09-fusaka-defense/README.md -------------------------------------------------------------------------------- /sepolia/2025-10-09-fusaka-defense/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-09-fusaka-defense/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-10-09-fusaka-defense/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-09-fusaka-defense/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-10-09-fusaka-defense/script/UpgradeDGF.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-09-fusaka-defense/script/UpgradeDGF.s.sol -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-alpha-deployment/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-alpha-deployment/.env -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-alpha-deployment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-alpha-deployment/Makefile -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-alpha-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-alpha-deployment/README.md -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-alpha-deployment/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-alpha-deployment/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-alpha-deployment/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-alpha-deployment/config.json -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-alpha-deployment/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-alpha-deployment/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-deployment/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-deployment/.env -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-deployment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-deployment/Makefile -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-deployment/README.md -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-deployment/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-deployment/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-deployment/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-deployment/config.json -------------------------------------------------------------------------------- /sepolia/2025-10-17-base-bridge-deployment/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-17-base-bridge-deployment/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-10-23-pause-bridge-base/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-23-pause-bridge-base/.env -------------------------------------------------------------------------------- /sepolia/2025-10-23-pause-bridge-base/FACILITATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-23-pause-bridge-base/FACILITATOR.md -------------------------------------------------------------------------------- /sepolia/2025-10-23-pause-bridge-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-23-pause-bridge-base/Makefile -------------------------------------------------------------------------------- /sepolia/2025-10-23-pause-bridge-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-23-pause-bridge-base/README.md -------------------------------------------------------------------------------- /sepolia/2025-10-23-pause-bridge-base/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-23-pause-bridge-base/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-10-23-pause-bridge-base/script/PauseBridge.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-23-pause-bridge-base/script/PauseBridge.s.sol -------------------------------------------------------------------------------- /sepolia/2025-10-24-pause-bridge-base/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-24-pause-bridge-base/.env -------------------------------------------------------------------------------- /sepolia/2025-10-24-pause-bridge-base/FACILITATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-24-pause-bridge-base/FACILITATOR.md -------------------------------------------------------------------------------- /sepolia/2025-10-24-pause-bridge-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-24-pause-bridge-base/Makefile -------------------------------------------------------------------------------- /sepolia/2025-10-24-pause-bridge-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-24-pause-bridge-base/README.md -------------------------------------------------------------------------------- /sepolia/2025-10-24-pause-bridge-base/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-24-pause-bridge-base/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-10-24-pause-bridge-base/script/PauseBridge.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-10-24-pause-bridge-base/script/PauseBridge.s.sol -------------------------------------------------------------------------------- /sepolia/2025-11-03-incident-multisig-signers/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-03-incident-multisig-signers/.env -------------------------------------------------------------------------------- /sepolia/2025-11-03-incident-multisig-signers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-03-incident-multisig-signers/Makefile -------------------------------------------------------------------------------- /sepolia/2025-11-03-incident-multisig-signers/OwnerDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-03-incident-multisig-signers/OwnerDiff.json -------------------------------------------------------------------------------- /sepolia/2025-11-03-incident-multisig-signers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-03-incident-multisig-signers/README.md -------------------------------------------------------------------------------- /sepolia/2025-11-03-incident-multisig-signers/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-03-incident-multisig-signers/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-11-07-deploy-cb-multicall/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-deploy-cb-multicall/.env -------------------------------------------------------------------------------- /sepolia/2025-11-07-deploy-cb-multicall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-deploy-cb-multicall/Makefile -------------------------------------------------------------------------------- /sepolia/2025-11-07-deploy-cb-multicall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-deploy-cb-multicall/README.md -------------------------------------------------------------------------------- /sepolia/2025-11-07-deploy-cb-multicall/addresses.json: -------------------------------------------------------------------------------- 1 | { 2 | "cbMulticall": "0xf113DA645C65f786c08a48d540Ee5f7A59189ffF" 3 | } -------------------------------------------------------------------------------- /sepolia/2025-11-07-deploy-cb-multicall/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-deploy-cb-multicall/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-11-07-upgrade-fault-proofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-upgrade-fault-proofs/.env -------------------------------------------------------------------------------- /sepolia/2025-11-07-upgrade-fault-proofs/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-upgrade-fault-proofs/FACILITATORS.md -------------------------------------------------------------------------------- /sepolia/2025-11-07-upgrade-fault-proofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-upgrade-fault-proofs/Makefile -------------------------------------------------------------------------------- /sepolia/2025-11-07-upgrade-fault-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-upgrade-fault-proofs/README.md -------------------------------------------------------------------------------- /sepolia/2025-11-07-upgrade-fault-proofs/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-07-upgrade-fault-proofs/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-11-13-update-bridge-alpha-config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-13-update-bridge-alpha-config/.env -------------------------------------------------------------------------------- /sepolia/2025-11-13-update-bridge-alpha-config/FACILITATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-13-update-bridge-alpha-config/FACILITATOR.md -------------------------------------------------------------------------------- /sepolia/2025-11-13-update-bridge-alpha-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-13-update-bridge-alpha-config/Makefile -------------------------------------------------------------------------------- /sepolia/2025-11-13-update-bridge-alpha-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-13-update-bridge-alpha-config/README.md -------------------------------------------------------------------------------- /sepolia/2025-11-13-update-bridge-alpha-config/addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-13-update-bridge-alpha-config/addresses.json -------------------------------------------------------------------------------- /sepolia/2025-11-13-update-bridge-alpha-config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-13-update-bridge-alpha-config/config.json -------------------------------------------------------------------------------- /sepolia/2025-11-13-update-bridge-alpha-config/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-13-update-bridge-alpha-config/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-11-17-deploy-cb-multicall/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-17-deploy-cb-multicall/.env -------------------------------------------------------------------------------- /sepolia/2025-11-17-deploy-cb-multicall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-17-deploy-cb-multicall/Makefile -------------------------------------------------------------------------------- /sepolia/2025-11-17-deploy-cb-multicall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-17-deploy-cb-multicall/README.md -------------------------------------------------------------------------------- /sepolia/2025-11-17-deploy-cb-multicall/addresses.json: -------------------------------------------------------------------------------- 1 | { 2 | "cbMulticall": "0xA8B8CA1d6F0F5Ce63dCEA9121A01b302c5801303" 3 | } -------------------------------------------------------------------------------- /sepolia/2025-11-17-deploy-cb-multicall/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-17-deploy-cb-multicall/foundry.toml -------------------------------------------------------------------------------- /sepolia/2025-11-18-set-jovian-parameters/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-18-set-jovian-parameters/.env -------------------------------------------------------------------------------- /sepolia/2025-11-18-set-jovian-parameters/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-18-set-jovian-parameters/FACILITATORS.md -------------------------------------------------------------------------------- /sepolia/2025-11-18-set-jovian-parameters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-18-set-jovian-parameters/Makefile -------------------------------------------------------------------------------- /sepolia/2025-11-18-set-jovian-parameters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-18-set-jovian-parameters/README.md -------------------------------------------------------------------------------- /sepolia/2025-11-18-set-jovian-parameters/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/sepolia/2025-11-18-set-jovian-parameters/foundry.toml -------------------------------------------------------------------------------- /setup-templates/template-funding/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-funding/.env -------------------------------------------------------------------------------- /setup-templates/template-funding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-funding/Makefile -------------------------------------------------------------------------------- /setup-templates/template-funding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-funding/README.md -------------------------------------------------------------------------------- /setup-templates/template-funding/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-funding/foundry.toml -------------------------------------------------------------------------------- /setup-templates/template-funding/funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-funding/funding.json -------------------------------------------------------------------------------- /setup-templates/template-funding/script/Fund.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-funding/script/Fund.s.sol -------------------------------------------------------------------------------- /setup-templates/template-gas-and-elasticity-increase/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-gas-and-elasticity-increase/.env -------------------------------------------------------------------------------- /setup-templates/template-gas-and-elasticity-increase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-gas-and-elasticity-increase/Makefile -------------------------------------------------------------------------------- /setup-templates/template-gas-and-elasticity-increase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-gas-and-elasticity-increase/README.md -------------------------------------------------------------------------------- /setup-templates/template-gas-increase/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-gas-increase/.env -------------------------------------------------------------------------------- /setup-templates/template-gas-increase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-gas-increase/Makefile -------------------------------------------------------------------------------- /setup-templates/template-gas-increase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-gas-increase/README.md -------------------------------------------------------------------------------- /setup-templates/template-gas-increase/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-gas-increase/foundry.toml -------------------------------------------------------------------------------- /setup-templates/template-generic/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-generic/.env -------------------------------------------------------------------------------- /setup-templates/template-generic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-generic/Makefile -------------------------------------------------------------------------------- /setup-templates/template-generic/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-generic/foundry.toml -------------------------------------------------------------------------------- /setup-templates/template-generic/script/BasicScript.s.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-generic/script/BasicScript.s.sol -------------------------------------------------------------------------------- /setup-templates/template-pause-bridge-base/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-pause-bridge-base/.env -------------------------------------------------------------------------------- /setup-templates/template-pause-bridge-base/FACILITATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-pause-bridge-base/FACILITATOR.md -------------------------------------------------------------------------------- /setup-templates/template-pause-bridge-base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-pause-bridge-base/Makefile -------------------------------------------------------------------------------- /setup-templates/template-pause-bridge-base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-pause-bridge-base/README.md -------------------------------------------------------------------------------- /setup-templates/template-pause-bridge-base/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-pause-bridge-base/foundry.toml -------------------------------------------------------------------------------- /setup-templates/template-safe-management/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-safe-management/.env -------------------------------------------------------------------------------- /setup-templates/template-safe-management/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-safe-management/Makefile -------------------------------------------------------------------------------- /setup-templates/template-safe-management/OwnerDiff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-safe-management/OwnerDiff.json -------------------------------------------------------------------------------- /setup-templates/template-safe-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-safe-management/README.md -------------------------------------------------------------------------------- /setup-templates/template-safe-management/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-safe-management/foundry.toml -------------------------------------------------------------------------------- /setup-templates/template-set-bridge-partner-threshold/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-set-bridge-partner-threshold/.env -------------------------------------------------------------------------------- /setup-templates/template-set-bridge-partner-threshold/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-set-bridge-partner-threshold/Makefile -------------------------------------------------------------------------------- /setup-templates/template-set-bridge-partner-threshold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-set-bridge-partner-threshold/README.md -------------------------------------------------------------------------------- /setup-templates/template-switch-to-permissioned-game/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-switch-to-permissioned-game/.env -------------------------------------------------------------------------------- /setup-templates/template-switch-to-permissioned-game/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-switch-to-permissioned-game/Makefile -------------------------------------------------------------------------------- /setup-templates/template-switch-to-permissioned-game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-switch-to-permissioned-game/README.md -------------------------------------------------------------------------------- /setup-templates/template-upgrade-fault-proofs/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-upgrade-fault-proofs/.env -------------------------------------------------------------------------------- /setup-templates/template-upgrade-fault-proofs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-upgrade-fault-proofs/Makefile -------------------------------------------------------------------------------- /setup-templates/template-upgrade-fault-proofs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-upgrade-fault-proofs/README.md -------------------------------------------------------------------------------- /setup-templates/template-upgrade-fault-proofs/foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/setup-templates/template-upgrade-fault-proofs/foundry.toml -------------------------------------------------------------------------------- /solana/MCM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/MCM.mk -------------------------------------------------------------------------------- /solana/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/Makefile -------------------------------------------------------------------------------- /solana/devnet-alpha/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/.env -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-20-deploy-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-20-deploy-bridge/.env -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-20-deploy-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | bridge/ 2 | *keypair.json 3 | -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-20-deploy-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-20-deploy-bridge/Makefile -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-23-mcm-set-pause-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-23-mcm-set-pause-bridge/.env -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-23-mcm-set-pause-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-23-mcm-set-pause-bridge/Makefile -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-23-mcm-set-pause-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-23-mcm-set-pause-bridge/README.md -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/.env -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/Makefile -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/README.md -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-23-mcm-unpause-bridge/proposal.json -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-10-24-mcm-pause-unpause-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-10-24-mcm-pause-unpause-bridge/.env -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-11-14-update-bridge-config/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-11-14-update-bridge-config/.env -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-11-14-update-bridge-config/.gitignore: -------------------------------------------------------------------------------- 1 | bridge/ 2 | -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-11-14-update-bridge-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-11-14-update-bridge-config/Makefile -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-11-14-update-bridge-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-11-14-update-bridge-config/README.md -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-12-01-upgrade-bridge-and-rollback/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet-alpha/2025-12-01-upgrade-bridge-and-rollback/.env -------------------------------------------------------------------------------- /solana/devnet-alpha/2025-12-01-upgrade-bridge-and-rollback/.gitignore: -------------------------------------------------------------------------------- 1 | bridge/ 2 | *keypair.json 3 | rollback.so 4 | -------------------------------------------------------------------------------- /solana/devnet/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/.env -------------------------------------------------------------------------------- /solana/devnet/2025-10-20-deploy-mcm/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-20-deploy-mcm/.env -------------------------------------------------------------------------------- /solana/devnet/2025-10-20-deploy-mcm/.gitignore: -------------------------------------------------------------------------------- 1 | chainlink-ccip/ 2 | -------------------------------------------------------------------------------- /solana/devnet/2025-10-20-deploy-mcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-20-deploy-mcm/Makefile -------------------------------------------------------------------------------- /solana/devnet/2025-10-20-deploy-mcm/patches/eip712.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-20-deploy-mcm/patches/eip712.patch -------------------------------------------------------------------------------- /solana/devnet/2025-10-20-deploy-mcm/patches/invoke_signed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-20-deploy-mcm/patches/invoke_signed.patch -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-22-mcm-upgrade/.env -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/.gitignore: -------------------------------------------------------------------------------- 1 | chainlink-ccip/ 2 | -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-22-mcm-upgrade/FACILITATORS.md -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-22-mcm-upgrade/Makefile -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-22-mcm-upgrade/README.md -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/patches/eip712.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-22-mcm-upgrade/patches/eip712.patch -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/patches/id.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-22-mcm-upgrade/patches/id.patch -------------------------------------------------------------------------------- /solana/devnet/2025-10-22-mcm-upgrade/proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-22-mcm-upgrade/proposal.json -------------------------------------------------------------------------------- /solana/devnet/2025-10-23-deploy-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-23-deploy-bridge/.env -------------------------------------------------------------------------------- /solana/devnet/2025-10-23-deploy-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | bridge/ 2 | *keypair.json 3 | -------------------------------------------------------------------------------- /solana/devnet/2025-10-23-deploy-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-23-deploy-bridge/Makefile -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-pause-unpause-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-pause-unpause-bridge/.env -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-pause-unpause-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-pause-unpause-bridge/Makefile -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-pause-unpause-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-pause-unpause-bridge/README.md -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-pause-unpause-bridge/proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-pause-unpause-bridge/proposal.json -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-program-upgrade/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-program-upgrade/.env -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-program-upgrade/.gitignore: -------------------------------------------------------------------------------- 1 | chainlink-ccip/ 2 | -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-program-upgrade/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-program-upgrade/FACILITATORS.md -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-program-upgrade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-program-upgrade/Makefile -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-program-upgrade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-program-upgrade/README.md -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-program-upgrade/patches/id.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-program-upgrade/patches/id.patch -------------------------------------------------------------------------------- /solana/devnet/2025-10-24-mcm-program-upgrade/proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/devnet/2025-10-24-mcm-program-upgrade/proposal.json -------------------------------------------------------------------------------- /solana/mainnet/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/.env -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-deploy-mcm/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-deploy-mcm/.env -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-deploy-mcm/.gitignore: -------------------------------------------------------------------------------- 1 | chainlink-ccip/ 2 | *keypair.json 3 | -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-deploy-mcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-deploy-mcm/Makefile -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-deploy-mcm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-deploy-mcm/README.md -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-0/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-0/.env -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-0/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-0/FACILITATORS.md -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-0/Makefile -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-0/README.md -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-0/proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-0/proposal.json -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-1/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-1/.env -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-1/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-1/FACILITATORS.md -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-1/Makefile -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-1/README.md -------------------------------------------------------------------------------- /solana/mainnet/2025-10-27-signers-update-mcm-1/proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-27-signers-update-mcm-1/proposal.json -------------------------------------------------------------------------------- /solana/mainnet/2025-10-29-deploy-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-29-deploy-bridge/.env -------------------------------------------------------------------------------- /solana/mainnet/2025-10-29-deploy-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | bridge/ 2 | *keypair.json 3 | -------------------------------------------------------------------------------- /solana/mainnet/2025-10-29-deploy-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-29-deploy-bridge/Makefile -------------------------------------------------------------------------------- /solana/mainnet/2025-10-29-deploy-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-10-29-deploy-bridge/README.md -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-set-pause-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-set-pause-bridge/.env -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-set-pause-bridge/FACILITATORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-set-pause-bridge/FACILITATORS.md -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-set-pause-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-set-pause-bridge/Makefile -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-set-pause-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-set-pause-bridge/README.md -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-set-pause-bridge/proposal-pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-set-pause-bridge/proposal-pause.json -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-upgrade-bridge-and-rollback/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-upgrade-bridge-and-rollback/.env -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-upgrade-bridge-and-rollback/.gitignore: -------------------------------------------------------------------------------- 1 | bridge/ 2 | *keypair.json 3 | rollback.so 4 | -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-upgrade-bridge-and-rollback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-upgrade-bridge-and-rollback/Makefile -------------------------------------------------------------------------------- /solana/mainnet/2025-12-01-upgrade-bridge-and-rollback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/mainnet/2025-12-01-upgrade-bridge-and-rollback/README.md -------------------------------------------------------------------------------- /solana/setup-templates/template-set-pause-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-set-pause-bridge/.env -------------------------------------------------------------------------------- /solana/setup-templates/template-set-pause-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-set-pause-bridge/Makefile -------------------------------------------------------------------------------- /solana/setup-templates/template-set-pause-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-set-pause-bridge/README.md -------------------------------------------------------------------------------- /solana/setup-templates/template-update-signers-mcm/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-update-signers-mcm/.env -------------------------------------------------------------------------------- /solana/setup-templates/template-update-signers-mcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-update-signers-mcm/Makefile -------------------------------------------------------------------------------- /solana/setup-templates/template-update-signers-mcm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-update-signers-mcm/README.md -------------------------------------------------------------------------------- /solana/setup-templates/template-upgrade-bridge/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-upgrade-bridge/.env -------------------------------------------------------------------------------- /solana/setup-templates/template-upgrade-bridge/.gitignore: -------------------------------------------------------------------------------- 1 | bridge/ 2 | *keypair.json 3 | -------------------------------------------------------------------------------- /solana/setup-templates/template-upgrade-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-upgrade-bridge/Makefile -------------------------------------------------------------------------------- /solana/setup-templates/template-upgrade-bridge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/base/contract-deployments/HEAD/solana/setup-templates/template-upgrade-bridge/README.md --------------------------------------------------------------------------------