Skip to content

Commit

Permalink
feat: Add create3 factory to scroll network (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
sendra authored Jun 26, 2024
1 parent 893f570 commit 548b080
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/configs/networks/scroll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const scrollAddresses: NetworkAddresses<{
addresses: {
TRANSPARENT_PROXY_FACTORY: '0xFa2eeb2d0054C3Db2A606E2cd9EE111b62707D1e',
PROXY_ADMIN: '0x782559e349b084bB7C07c08404aE6E3436cDAE2E',
CREATE_3_FACTORY: '0xC6f44D0daC966658Db36742f5153bDa0EBbb45ab',
PROTOCOL_GUARDIAN: '0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7',
wstETH_stETH_AGGREGATOR: '0xE61Da4C909F7d86797a0D06Db63c34f76c9bCBDC',
},
Expand Down
3 changes: 3 additions & 0 deletions src/MiscScroll.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ library MiscScroll {
// https://scrollscan.com/address/0x782559e349b084bB7C07c08404aE6E3436cDAE2E
address internal constant PROXY_ADMIN = 0x782559e349b084bB7C07c08404aE6E3436cDAE2E;

// https://scrollscan.com/address/0xC6f44D0daC966658Db36742f5153bDa0EBbb45ab
address internal constant CREATE_3_FACTORY = 0xC6f44D0daC966658Db36742f5153bDa0EBbb45ab;

// https://scrollscan.com/address/0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7
address internal constant PROTOCOL_GUARDIAN = 0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7;

Expand Down
3 changes: 3 additions & 0 deletions src/ts/MiscScroll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ export const TRANSPARENT_PROXY_FACTORY = '0xFa2eeb2d0054C3Db2A606E2cd9EE111b6270
// https://scrollscan.com/address/0x782559e349b084bB7C07c08404aE6E3436cDAE2E
export const PROXY_ADMIN = '0x782559e349b084bB7C07c08404aE6E3436cDAE2E';

// https://scrollscan.com/address/0xC6f44D0daC966658Db36742f5153bDa0EBbb45ab
export const CREATE_3_FACTORY = '0xC6f44D0daC966658Db36742f5153bDa0EBbb45ab';

// https://scrollscan.com/address/0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7
export const PROTOCOL_GUARDIAN = '0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7';

Expand Down

0 comments on commit 548b080

Please sign in to comment.