Skip to content

Commit

Permalink
fix: add protocol guardian for scroll (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite authored Jan 15, 2024
1 parent da28047 commit 06b67e5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/configs/networks/scroll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export const scrollAddresses: NetworkAddresses = {
addresses: {
TRANSPARENT_PROXY_FACTORY: '0xFa2eeb2d0054C3Db2A606E2cd9EE111b62707D1e',
PROXY_ADMIN: '0x782559e349b084bB7C07c08404aE6E3436cDAE2E',
// TODO: CREATE_3_FACTORY: '',
// TODO: PROTOCOL_GUARDIAN: '',
PROTOCOL_GUARDIAN: '0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7',
},
};
3 changes: 3 additions & 0 deletions src/MiscScroll.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ library MiscScroll {

// https://scrollscan.com/address/0x782559e349b084bB7C07c08404aE6E3436cDAE2E
address internal constant PROXY_ADMIN = 0x782559e349b084bB7C07c08404aE6E3436cDAE2E;

// https://scrollscan.com/address/0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7
address internal constant PROTOCOL_GUARDIAN = 0x63B20270b695E44Ac94Ad7592D5f81E3575b93e7;
}
3 changes: 3 additions & 0 deletions src/ts/MiscScroll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ export const TRANSPARENT_PROXY_FACTORY = '0xFa2eeb2d0054C3Db2A606E2cd9EE111b6270

// https://scrollscan.com/address/0x782559e349b084bB7C07c08404aE6E3436cDAE2E
export const PROXY_ADMIN = '0x782559e349b084bB7C07c08404aE6E3436cDAE2E';

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

0 comments on commit 06b67e5

Please sign in to comment.