Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add new addresses (SC-788) #20

Merged
merged 6 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/Base.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,20 @@ library Base {
/*** Token Addresses ***/
/******************************************************************************************************************/

address internal constant USDC = 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913;
address internal constant SKY = 0x60e3c701e65DEE30c23c9Fb78c3866479cc0944a;
address internal constant SUSDS = 0x5875eEE11Cf8398102FdAd704C9E96607675467a;
address internal constant USDC = 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913;
address internal constant USDS = 0x820C137fa70C8691f0e44Dc420a5e53c168921Dc;

/******************************************************************************************************************/
/*** Bridging Addresses ***/
/******************************************************************************************************************/

address internal constant CCTP_TOKEN_MESSENGER = 0x1682Ae6375C4E4A97e4B583BC394c861A46D8962;

address internal constant SKY_GOV_RELAY = 0xdD0BCc201C9E47c6F6eE68E4dB05b652Bb6aC255;
address internal constant TOKEN_BRIDGE = 0xee44cdb68D618d58F75d9fe0818B640BD7B8A7B7;

/******************************************************************************************************************/
/*** Governance Relay Addresses ***/
/******************************************************************************************************************/
Expand Down
28 changes: 23 additions & 5 deletions src/Ethereum.sol
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ library Ethereum {

address internal constant SPARK_PROXY = 0x3300f198988e4C9C63F75dF86De36421f06af8c4;

/******************************************************************************************************************/
/*** Allocation System Addresses ***/
/******************************************************************************************************************/

address internal constant ALLOCATOR_BUFFER = 0xc395D150e71378B47A1b8E9de0c1a83b75a08324;
address internal constant ALLOCATOR_ORACLE = 0xc7B91C401C02B73CBdF424dFaaa60950d5040dB7;
address internal constant ALLOCATOR_REGISTRY = 0xCdCFA95343DA7821fdD01dc4d0AeDA958051bB3B;
address internal constant ALLOCATOR_ROLES = 0x9A865A710399cea85dbD9144b7a09C889e94E803;
address internal constant ALLOCATOR_VAULT = 0x691a6c29e9e96dd897718305427Ad5D534db16BA;

/******************************************************************************************************************/
/*** Morpho Addresses ***/
/******************************************************************************************************************/
Expand Down Expand Up @@ -182,12 +192,20 @@ library Ethereum {

address internal constant CCTP_TOKEN_MESSENGER = 0xBd3fa81B58Ba92a82136038B25aDec7066af3155;

address internal constant DSR_FORWARDER_OPTIMISM = 0x4042127DecC0cF7cc0966791abebf7F76294DeF3;
address internal constant DSR_FORWARDER_BASE = 0x8Ed551D485701fe489c215E13E42F6fc59563e0e;
address internal constant DSR_FORWARDER_ARBITRUM = 0x7F36E7F562Ee3f320644F6031e03E12a02B85799;
address internal constant DSR_FORWARDER_WORLD_CHAIN = 0xA34437dAAE56A7CC6DC757048933D7777b3e547B;
address internal constant ARBITRUM_DSR_FORWARDER = 0x7F36E7F562Ee3f320644F6031e03E12a02B85799;
address internal constant OPTIMISM_DSR_FORWARDER = 0x4042127DecC0cF7cc0966791abebf7F76294DeF3;
address internal constant WORLD_CHAIN_DSR_FORWARDER = 0xA34437dAAE56A7CC6DC757048933D7777b3e547B;

/******************************************************************************************************************/
/*** Base Addresses ***/
/******************************************************************************************************************/

address internal constant BASE_DSR_FORWARDER = 0x8Ed551D485701fe489c215E13E42F6fc59563e0e;
address internal constant BASE_SSR_FORWARDER = 0xB2833392527f41262eB0E3C7b47AFbe030ef188E;

address internal constant SSR_FORWARDER_BASE = 0xB2833392527f41262eB0E3C7b47AFbe030ef188E;
address internal constant BASE_ESCROW = 0x7F311a4D48377030bD810395f4CCfC03bdbe9Ef3;
address internal constant BASE_SKY_GOV_RELAY = 0x1Ee0AE8A993F2f5abDB51EAF4AC2876202b65c3b;
address internal constant BASE_TOKEN_BRIDGE = 0xA5874756416Fa632257eEA380CAbd2E87cED352A;

/******************************************************************************************************************/
/*** Multisigs ***/
Expand Down
Loading