Skip to content

Commit

Permalink
feat: add linea risk steward
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite committed Jan 20, 2025
1 parent 93187e6 commit d6a3647
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 @@ -2051,6 +2051,7 @@ address,name,chainId
0x812E7c19421D9f41A6DDCF047d5cc2dE2Ca5Bfa2,AaveV3Linea POOL_CONFIGURATOR,59144
0x1236010CECea55998384e795B59815D871f5f94d,AaveV3Linea POOL_CONFIGURATOR_IMPL,59144
0x36616cf17557639614c1cdDb356b1B83fc0B2132,AaveV3Linea POOL_IMPL,59144
0x3238FC1d642b60F41a35f62570237656C85F4744,AaveV3Linea RISK_STEWARD,59144
0x28ad75CA21793835b975130e9FdA149A476a2b7c,AaveV3Linea STATIC_A_TOKEN_FACTORY,59144
0x117684358D990E42Eb1649E7e8C4691951dc1E71,AaveV3Linea UI_INCENTIVE_DATA_PROVIDER,59144
0xf751969521E20A972A0776CDB0497Fad0F773F1F,AaveV3Linea UI_POOL_DATA_PROVIDER,59144
Expand Down
1 change: 1 addition & 0 deletions scripts/configs/pools/linea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const lineaProtoV3: PoolConfig = {
POOL_ADDRESSES_PROVIDER: '0x89502c3731F69DDC95B65753708A07F8Cd0373F4',
additionalAddresses: {
CONFIG_ENGINE: '0x6c23bAF050ec192afc0B967a93b83e6c5405df43',
RISK_STEWARD: '0x3238FC1d642b60F41a35f62570237656C85F4744',
POOL_ADDRESSES_PROVIDER_REGISTRY: '0x96dFCCB3F9ACDaF6c8f8a35E814023C3484d1eA2',
UI_INCENTIVE_DATA_PROVIDER: '0x117684358D990E42Eb1649E7e8C4691951dc1E71',
UI_POOL_DATA_PROVIDER: '0xf751969521E20A972A0776CDB0497Fad0F773F1F',
Expand Down
3 changes: 3 additions & 0 deletions src/AaveV3Linea.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ library AaveV3Linea {
// https://lineascan.build/address/0x6c23bAF050ec192afc0B967a93b83e6c5405df43
address internal constant CONFIG_ENGINE = 0x6c23bAF050ec192afc0B967a93b83e6c5405df43;

// https://lineascan.build/address/0x3238FC1d642b60F41a35f62570237656C85F4744
address internal constant RISK_STEWARD = 0x3238FC1d642b60F41a35f62570237656C85F4744;

// https://lineascan.build/address/0x96dFCCB3F9ACDaF6c8f8a35E814023C3484d1eA2
address internal constant POOL_ADDRESSES_PROVIDER_REGISTRY =
0x96dFCCB3F9ACDaF6c8f8a35E814023C3484d1eA2;
Expand Down
3 changes: 3 additions & 0 deletions src/ts/AaveV3Linea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ export const EMISSION_MANAGER = '0x0165C65FB21bDC9Cdc09C627d62AB3a983337158';
// https://lineascan.build/address/0x6c23bAF050ec192afc0B967a93b83e6c5405df43
export const CONFIG_ENGINE = '0x6c23bAF050ec192afc0B967a93b83e6c5405df43';

// https://lineascan.build/address/0x3238FC1d642b60F41a35f62570237656C85F4744
export const RISK_STEWARD = '0x3238FC1d642b60F41a35f62570237656C85F4744';

// https://lineascan.build/address/0x96dFCCB3F9ACDaF6c8f8a35E814023C3484d1eA2
export const POOL_ADDRESSES_PROVIDER_REGISTRY = '0x96dFCCB3F9ACDaF6c8f8a35E814023C3484d1eA2';

Expand Down

0 comments on commit d6a3647

Please sign in to comment.