@@ -8,8 +8,10 @@ const { comptrollerAbi, cToken, flrETH } = require('./abi');
8
8
const { symbol } = require ( '@defillama/sdk/build/erc20' ) ;
9
9
10
10
const COMPTROLLER_ADDRESS = '0x8041680Fb73E1Fe5F851e76233DCDfA0f2D2D7c8' ;
11
+ const ISO_COMPTROLLER_ADDRESS = '0xDcce91d46Ecb209645A26B5885500127819BeAdd' ;
11
12
const FLR_ETH = '0x26a1fab310bd080542dc864647d05985360b16a5' ;
12
13
const WETH = '0x1502fa4be69d526124d453619276faccab275d3d' ;
14
+ const C_ETH_MARKET = '0xd7291D5001693d15b6e4d56d73B5d2cD7eCfE5c6' ;
13
15
const FLARE_CHAIN = 'flare' ;
14
16
15
17
const JOULE = {
@@ -76,12 +78,12 @@ const calculateApy = (ratePerTimestamps) => {
76
78
) ;
77
79
} ;
78
80
79
- const getRewards = async ( rewardType , markets , isBorrow = false ) => {
81
+ const getRewards = async ( rewardType , markets , comptroller , isBorrow = false ) => {
80
82
return (
81
83
await sdk . api . abi . multiCall ( {
82
84
chain : FLARE_CHAIN ,
83
85
calls : markets . map ( ( market ) => ( {
84
- target : COMPTROLLER_ADDRESS ,
86
+ target : comptroller ,
85
87
params : [ rewardType , market ] ,
86
88
} ) ) ,
87
89
abi : comptrollerAbi . find (
@@ -103,10 +105,10 @@ const multiCallMarkets = async (markets, method, abi) => {
103
105
) . output . map ( ( { output } ) => output ) ;
104
106
} ;
105
107
106
- const getApy = async ( ) => {
108
+ const getApy = async ( comptroller ) => {
107
109
const allMarketsRes = (
108
110
await sdk . api . abi . call ( {
109
- target : COMPTROLLER_ADDRESS ,
111
+ target : comptroller ,
110
112
chain : FLARE_CHAIN ,
111
113
abi : comptrollerAbi . find ( ( { name } ) => name === 'getAllMarkets' ) ,
112
114
permitFailure : true ,
@@ -119,23 +121,23 @@ const getApy = async () => {
119
121
await sdk . api . abi . multiCall ( {
120
122
chain : FLARE_CHAIN ,
121
123
calls : allMarkets . map ( ( market ) => ( {
122
- target : COMPTROLLER_ADDRESS ,
124
+ target : comptroller ,
123
125
params : market ,
124
126
} ) ) ,
125
127
abi : comptrollerAbi . find ( ( { name } ) => name === 'markets' ) ,
126
128
permitFailure : true ,
127
129
} )
128
130
) . output . map ( ( { output } ) => output ) ;
129
131
130
- const jouleRewards = await getRewards ( REWARD_TYPES . JOULE , allMarkets ) ;
131
- const flrRewards = await getRewards ( REWARD_TYPES . FLR , allMarkets ) ;
132
- const kiiRewards = await getRewards ( REWARD_TYPES . KII , allMarkets ) ;
133
- const rFLRRewards = await getRewards ( REWARD_TYPES . RFLR , allMarkets ) ;
132
+ const jouleRewards = await getRewards ( REWARD_TYPES . JOULE , allMarkets , comptroller ) ;
133
+ const flrRewards = await getRewards ( REWARD_TYPES . FLR , allMarkets , comptroller ) ;
134
+ const kiiRewards = await getRewards ( REWARD_TYPES . KII , allMarkets , comptroller ) ;
135
+ const rFLRRewards = await getRewards ( REWARD_TYPES . RFLR , allMarkets , comptroller ) ;
134
136
135
- const jouleBorrowRewards = await getRewards ( REWARD_TYPES . JOULE , allMarkets , true ) ;
136
- const flrBorrowRewards = await getRewards ( REWARD_TYPES . FLR , allMarkets , true ) ;
137
- const kiiBorrowRewards = await getRewards ( REWARD_TYPES . KII , allMarkets , true ) ;
138
- const rflrBorrowRewards = await getRewards ( REWARD_TYPES . RFLR , allMarkets , true ) ;
137
+ const jouleBorrowRewards = await getRewards ( REWARD_TYPES . JOULE , allMarkets , comptroller , true ) ;
138
+ const flrBorrowRewards = await getRewards ( REWARD_TYPES . FLR , allMarkets , comptroller , true ) ;
139
+ const kiiBorrowRewards = await getRewards ( REWARD_TYPES . KII , allMarkets , comptroller , true ) ;
140
+ const rflrBorrowRewards = await getRewards ( REWARD_TYPES . RFLR , allMarkets , comptroller , true ) ;
139
141
140
142
const supplyRatePerTimestamp = await multiCallMarkets (
141
143
allMarkets ,
@@ -161,22 +163,32 @@ const getApy = async () => {
161
163
cToken
162
164
) ;
163
165
164
- const underlyingTokens = await multiCallMarkets (
165
- allMarkets ,
166
+ const tempMarkets = allMarkets . filter ( m => m . toLocaleLowerCase ( ) != C_ETH_MARKET . toLocaleLowerCase ( ) )
167
+
168
+ let underlyingTokens = await multiCallMarkets (
169
+ tempMarkets ,
166
170
'underlying' ,
167
171
cToken
168
172
) ;
169
- const underlyingSymbols = await multiCallMarkets (
173
+
174
+ let underlyingSymbols = await multiCallMarkets (
170
175
underlyingTokens ,
171
176
'symbol' ,
172
177
cToken
173
178
) ;
174
- const underlyingDecimals = await multiCallMarkets (
179
+
180
+ let underlyingDecimals = await multiCallMarkets (
175
181
underlyingTokens ,
176
182
'decimals' ,
177
183
cToken
178
184
) ;
179
185
186
+ if ( underlyingTokens . length != allMarkets . length ) {
187
+ underlyingTokens = underlyingTokens . concat ( [ FLR . address ] ) ;
188
+ underlyingSymbols = underlyingSymbols . concat ( 'FLR' ) ;
189
+ underlyingDecimals = underlyingDecimals . concat ( 18 ) ;
190
+ }
191
+
180
192
const prices = await getPrices (
181
193
underlyingTokens . concat ( [ FLR . address , JOULE . address ] ) . map ( ( token ) => 'flare:' + token )
182
194
) ;
@@ -311,8 +323,13 @@ const getApy = async () => {
311
323
return pools ;
312
324
} ;
313
325
326
+ const getAPys = async ( ) => {
327
+ const pools = await getApy ( COMPTROLLER_ADDRESS ) ;
328
+ return pools . concat ( await getApy ( ISO_COMPTROLLER_ADDRESS ) )
329
+ }
330
+
314
331
module . exports = {
315
332
timetravel : false ,
316
- apy : getApy ,
333
+ apy : getAPys ,
317
334
url : 'https://app.kinetic.market/dashboard' ,
318
335
} ;
0 commit comments