Skip to content

Commit

Permalink
feat: add risk steward for etherfi (#569)
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite authored Sep 3, 2024
1 parent d9fee6c commit 6b29c5f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions safe.csv
Original file line number Diff line number Diff line change
Expand Up @@ -730,6 +730,7 @@ address,name,chainId
0x5ccAc427EcEf826c94f8a79a3cB6CF5A385D3eB5,AaveV3EthereumEtherFi POOL_CONFIGURATOR_IMPL,1
0xf231D3E81a282638E88724d354940425eDB4b1A5,AaveV3EthereumEtherFi POOL_IMPL,1
0x8831a5EEB5e10D2E5148Ca91ee9E4716a00c2CB2,AaveV3EthereumEtherFi REPAY_WITH_COLLATERAL_ADAPTER,1
0x7FbBCCFB548c110226fEF5BEc816Ea04B5170EA3,AaveV3EthereumEtherFi RISK_STEWARD,1
0x1Ff525426800279843B71C0F818594DeCdC3b522,AaveV3EthereumEtherFi STATIC_A_TOKEN_FACTORY,1
0xB04427eFdd15b0EC233400d2F7f7E4fd0291C285,AaveV3EthereumEtherFi SWAP_COLLATERAL_ADAPTER,1
0x162A7AC02f547ad796CA549f757e2b8d1D9b10a6,AaveV3EthereumEtherFi UI_INCENTIVE_DATA_PROVIDER,1
Expand Down
1 change: 1 addition & 0 deletions scripts/configs/pools/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ export const etherFiEthereumMainnetProtoV3Pool: PoolConfig = {
CONFIG_ENGINE: '0x482548b76D4C577A0b5cb2A1f97EFB2893E957ed',
STATIC_A_TOKEN_FACTORY: '0x1Ff525426800279843B71C0F818594DeCdC3b522',
CAPS_PLUS_RISK_STEWARD: '0x1EBdbE77bbDDD284BdCE8D7981D7eD26D6af58cA',
RISK_STEWARD: '0x7FbBCCFB548c110226fEF5BEc816Ea04B5170EA3',
},
initial: {
COLLECTOR: '0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c',
Expand Down
3 changes: 3 additions & 0 deletions src/AaveV3EthereumEtherFi.sol
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ library AaveV3EthereumEtherFi {

// https://etherscan.io/address/0x1EBdbE77bbDDD284BdCE8D7981D7eD26D6af58cA
address internal constant CAPS_PLUS_RISK_STEWARD = 0x1EBdbE77bbDDD284BdCE8D7981D7eD26D6af58cA;

// https://etherscan.io/address/0x7FbBCCFB548c110226fEF5BEc816Ea04B5170EA3
address internal constant RISK_STEWARD = 0x7FbBCCFB548c110226fEF5BEc816Ea04B5170EA3;
}

library AaveV3EthereumEtherFiAssets {}
Expand Down
3 changes: 3 additions & 0 deletions src/ts/AaveV3EthereumEtherFi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ export const STATIC_A_TOKEN_FACTORY = '0x1Ff525426800279843B71C0F818594DeCdC3b52
// https://etherscan.io/address/0x1EBdbE77bbDDD284BdCE8D7981D7eD26D6af58cA
export const CAPS_PLUS_RISK_STEWARD = '0x1EBdbE77bbDDD284BdCE8D7981D7eD26D6af58cA';

// https://etherscan.io/address/0x7FbBCCFB548c110226fEF5BEc816Ea04B5170EA3
export const RISK_STEWARD = '0x7FbBCCFB548c110226fEF5BEc816Ea04B5170EA3';

export const CHAIN_ID = 1;
export const ASSETS = {} as const;
export const E_MODES = {
Expand Down

0 comments on commit 6b29c5f

Please sign in to comment.