Skip to content

Commit

Permalink
[#790] Add SafeMigration and SafeToL2Migration contract addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay-ap committed Aug 29, 2024
1 parent a8b2c94 commit 1a402a3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ Solidity optimizer: `disabled`
- `CreateCall` at `0x9b35Af71d77eaf8d7e40252370304687390A1A52`
- `SignMessageLib` at `0xd53cd0aB83D845Ac265BE939c57F53AD838012c9`
- `SafeToL2Setup` at `0x80E0d1577aD3d982BF2F49aAB00BfA161AA763c4`
- `SafeToL2Migration` at `0x7Baec386CAF8e02B0BB4AFc98b4F9381EEeE283C`
- `SafeMigration` at `0x6881104d40E00942B216c63BccbaF3D1064b3970` (Target Safe version: v1.4.1)

### Storage reader contracts

Expand Down
12 changes: 12 additions & 0 deletions src/deploy/deploy_migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@ const deploy: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
log: true,
deterministicDeployment: true,
});

// SafeMigration with v1.4.1 as target version
await deploy("SafeMigration", {
from: deployer,
args: [
"0x41675C099F32341bf84BFc5382aF534df5C7461a",
"0x29fcB43b46531BcA003ddC8FCB67FFE91900C762",
"0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99",
],
log: true,
deterministicDeployment: true,
});
};

deploy.tags = ["not-l2-to-l2-migration", "migration"];
Expand Down

0 comments on commit 1a402a3

Please sign in to comment.