Skip to content

Commit

Permalink
chore(contracts): add internal on predeploy constants
Browse files Browse the repository at this point in the history
  • Loading branch information
maurelian committed Jun 2, 2021
1 parent 2e93983 commit e08c5cd
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ pragma solidity >0.5.0 <0.8.0;
* @title Lib_PredeployAddresses
*/
library Lib_PredeployAddresses {
address constant L2_TO_L1_MESSAGE_PASSER = 0x4200000000000000000000000000000000000000;
address constant L1_MESSAGE_SENDER = 0x4200000000000000000000000000000000000001;
address constant DEPLOYER_WHITELIST = 0x4200000000000000000000000000000000000002;
address constant ECDSA_CONTRACT_ACCOUNT = 0x4200000000000000000000000000000000000003;
address constant SEQUENCER_ENTRYPOINT = 0x4200000000000000000000000000000000000005;
address constant OVM_ETH = 0x4200000000000000000000000000000000000006;
address constant L2_CROSS_DOMAIN_MESSENGER = 0x4200000000000000000000000000000000000007;
address constant LIB_ADDRESS_MANAGER = 0x4200000000000000000000000000000000000008;
address constant PROXY_EOA = 0x4200000000000000000000000000000000000009;
address constant ERC1820_REGISTRY = 0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24;
address internal constant L2_TO_L1_MESSAGE_PASSER = 0x4200000000000000000000000000000000000000;
address internal constant L1_MESSAGE_SENDER = 0x4200000000000000000000000000000000000001;
address internal constant DEPLOYER_WHITELIST = 0x4200000000000000000000000000000000000002;
address internal constant ECDSA_CONTRACT_ACCOUNT = 0x4200000000000000000000000000000000000003;
address internal constant SEQUENCER_ENTRYPOINT = 0x4200000000000000000000000000000000000005;
address internal constant OVM_ETH = 0x4200000000000000000000000000000000000006;
address internal constant L2_CROSS_DOMAIN_MESSENGER = 0x4200000000000000000000000000000000000007;
address internal constant LIB_ADDRESS_MANAGER = 0x4200000000000000000000000000000000000008;
address internal constant PROXY_EOA = 0x4200000000000000000000000000000000000009;
address internal constant ERC1820_REGISTRY = 0x1820a4B7618BdE71Dce8cdc73aAB6C95905faD24;
}

0 comments on commit e08c5cd

Please sign in to comment.