Skip to content

Commit

Permalink
feat: add addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-manuel committed Apr 9, 2024
1 parent c2230ec commit 2984de8
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Base.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.13;

library Base {

/******************************************************************************************************************/
/*** DSR Oracle Addresses ***/
/******************************************************************************************************************/

address internal constant DSR_AUTH_ORACLE = 0x2Dd2a2Fe346B5704380EfbF6Bd522042eC3E8FAe;
address internal constant DSR_RECEIVER = 0xaDEAf02Ddb5Bed574045050B8096307bE66E0676;
address internal constant DSR_BALANCER_RATE_PROVIDER = 0xeC0C14Ea7fF20F104496d960FDEBF5a0a0cC14D0;

}
7 changes: 7 additions & 0 deletions src/Ethereum.sol
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,11 @@ library Ethereum {
address internal constant POOL_LOGIC = 0x1761a0f74032963B6Ad0774C5EBF4586c0bD7604;
address internal constant SUPPLY_LOGIC = 0x46256841e36b7557BB8e4c706beD38b17A9EB2c1;

/******************************************************************************************************************/
/*** L2 Forwarders ***/
/******************************************************************************************************************/

address internal constant DSR_FORWARDER_OPTIMISM = 0x4042127DecC0cF7cc0966791abebf7F76294DeF3;
address internal constant DSR_FORWARDER_BASE = 0x4042127DecC0cF7cc0966791abebf7F76294DeF3;

}
14 changes: 14 additions & 0 deletions src/Optimism.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.13;

library Optimism {

/******************************************************************************************************************/
/*** DSR Oracle Addresses ***/
/******************************************************************************************************************/

address internal constant DSR_AUTH_ORACLE = 0x33a3aB524A43E69f30bFd9Ae97d1Ec679FF00B64;
address internal constant DSR_RECEIVER = 0xE206AEbca7B28e3E8d6787df00B010D4a77c32F3;
address internal constant DSR_BALANCER_RATE_PROVIDER = 0x15ACEE5F73b36762Ab1a6b7C98787b8148447898;

}

0 comments on commit 2984de8

Please sign in to comment.