curvance 1.0.23 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/abis/BaseCToken.json +13 -10
- package/dist/abis/BorrowableCToken.json +13 -10
- package/dist/abis/MarketManagerIsolated.json +43 -123
- package/dist/abis/ProtocolReader.json +92 -9
- package/dist/abis/RedstoneCoreAdaptor.json +32 -5
- package/dist/abis/SimpleZapper.json +411 -0
- package/dist/chains/index.d.ts +22 -10
- package/dist/chains/index.d.ts.map +1 -1
- package/dist/chains/monad-testnet.json +83 -71
- package/dist/classes/BorrowableCToken.d.ts +51 -0
- package/dist/classes/BorrowableCToken.d.ts.map +1 -0
- package/dist/classes/BorrowableCToken.js +113 -0
- package/dist/classes/BorrowableCToken.js.map +1 -0
- package/dist/classes/CToken.d.ts +46 -74
- package/dist/classes/CToken.d.ts.map +1 -1
- package/dist/classes/CToken.js +196 -138
- package/dist/classes/CToken.js.map +1 -1
- package/dist/classes/Calldata.d.ts +12 -0
- package/dist/classes/Calldata.d.ts.map +1 -0
- package/dist/classes/Calldata.js +19 -0
- package/dist/classes/Calldata.js.map +1 -0
- package/dist/classes/ERC20.d.ts +3 -3
- package/dist/classes/ERC20.d.ts.map +1 -1
- package/dist/classes/ERC20.js +5 -2
- package/dist/classes/ERC20.js.map +1 -1
- package/dist/classes/Faucet.d.ts +2 -1
- package/dist/classes/Faucet.d.ts.map +1 -1
- package/dist/classes/Faucet.js +11 -1
- package/dist/classes/Faucet.js.map +1 -1
- package/dist/classes/Market.d.ts +107 -13
- package/dist/classes/Market.d.ts.map +1 -1
- package/dist/classes/Market.js +122 -16
- package/dist/classes/Market.js.map +1 -1
- package/dist/classes/OracleManager.d.ts +1 -1
- package/dist/classes/OracleManager.d.ts.map +1 -1
- package/dist/classes/OracleManager.js +2 -1
- package/dist/classes/OracleManager.js.map +1 -1
- package/dist/classes/ProtocolReader.d.ts +21 -20
- package/dist/classes/ProtocolReader.d.ts.map +1 -1
- package/dist/classes/ProtocolReader.js +9 -5
- package/dist/classes/ProtocolReader.js.map +1 -1
- package/dist/classes/Redstone.d.ts +3 -2
- package/dist/classes/Redstone.d.ts.map +1 -1
- package/dist/classes/Redstone.js +3 -3
- package/dist/classes/Redstone.js.map +1 -1
- package/dist/classes/Zapper.d.ts +28 -0
- package/dist/classes/Zapper.d.ts.map +1 -0
- package/dist/classes/Zapper.js +52 -0
- package/dist/classes/Zapper.js.map +1 -0
- package/dist/helpers.d.ts +34 -11
- package/dist/helpers.d.ts.map +1 -1
- package/dist/helpers.js +30 -16
- package/dist/helpers.js.map +1 -1
- package/dist/setup.d.ts +18 -3
- package/dist/setup.d.ts.map +1 -1
- package/dist/setup.js +31 -14
- package/dist/setup.js.map +1 -1
- package/dist/types.d.ts +20 -2
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"type": "constructor",
|
|
4
|
+
"inputs": [
|
|
5
|
+
{
|
|
6
|
+
"name": "cr",
|
|
7
|
+
"type": "address",
|
|
8
|
+
"internalType": "contract ICentralRegistry"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"name": "wNative",
|
|
12
|
+
"type": "address",
|
|
13
|
+
"internalType": "address"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"stateMutability": "nonpayable"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"type": "receive",
|
|
20
|
+
"stateMutability": "payable"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"type": "function",
|
|
24
|
+
"name": "centralRegistry",
|
|
25
|
+
"inputs": [],
|
|
26
|
+
"outputs": [
|
|
27
|
+
{
|
|
28
|
+
"name": "",
|
|
29
|
+
"type": "address",
|
|
30
|
+
"internalType": "contract ICentralRegistry"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"stateMutability": "view"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"type": "function",
|
|
37
|
+
"name": "redeemAndSwap",
|
|
38
|
+
"inputs": [
|
|
39
|
+
{
|
|
40
|
+
"name": "redeemAction",
|
|
41
|
+
"type": "tuple",
|
|
42
|
+
"internalType": "struct BaseZapper.RedeemAction",
|
|
43
|
+
"components": [
|
|
44
|
+
{
|
|
45
|
+
"name": "cToken",
|
|
46
|
+
"type": "address",
|
|
47
|
+
"internalType": "address"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "shares",
|
|
51
|
+
"type": "uint256",
|
|
52
|
+
"internalType": "uint256"
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "forceRedeemCollateral",
|
|
56
|
+
"type": "bool",
|
|
57
|
+
"internalType": "bool"
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "swapAction",
|
|
63
|
+
"type": "tuple",
|
|
64
|
+
"internalType": "struct SwapperLib.Swap",
|
|
65
|
+
"components": [
|
|
66
|
+
{
|
|
67
|
+
"name": "inputToken",
|
|
68
|
+
"type": "address",
|
|
69
|
+
"internalType": "address"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"name": "inputAmount",
|
|
73
|
+
"type": "uint256",
|
|
74
|
+
"internalType": "uint256"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "outputToken",
|
|
78
|
+
"type": "address",
|
|
79
|
+
"internalType": "address"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "target",
|
|
83
|
+
"type": "address",
|
|
84
|
+
"internalType": "address"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "slippage",
|
|
88
|
+
"type": "uint256",
|
|
89
|
+
"internalType": "uint256"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "call",
|
|
93
|
+
"type": "bytes",
|
|
94
|
+
"internalType": "bytes"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "receiver",
|
|
100
|
+
"type": "address",
|
|
101
|
+
"internalType": "address"
|
|
102
|
+
}
|
|
103
|
+
],
|
|
104
|
+
"outputs": [
|
|
105
|
+
{
|
|
106
|
+
"name": "outAmount",
|
|
107
|
+
"type": "uint256",
|
|
108
|
+
"internalType": "uint256"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"stateMutability": "nonpayable"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"type": "function",
|
|
115
|
+
"name": "redeemSwapAndDeposit",
|
|
116
|
+
"inputs": [
|
|
117
|
+
{
|
|
118
|
+
"name": "cToken",
|
|
119
|
+
"type": "address",
|
|
120
|
+
"internalType": "address"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "redeemAction",
|
|
124
|
+
"type": "tuple",
|
|
125
|
+
"internalType": "struct BaseZapper.RedeemAction",
|
|
126
|
+
"components": [
|
|
127
|
+
{
|
|
128
|
+
"name": "cToken",
|
|
129
|
+
"type": "address",
|
|
130
|
+
"internalType": "address"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "shares",
|
|
134
|
+
"type": "uint256",
|
|
135
|
+
"internalType": "uint256"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "forceRedeemCollateral",
|
|
139
|
+
"type": "bool",
|
|
140
|
+
"internalType": "bool"
|
|
141
|
+
}
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "swapAction",
|
|
146
|
+
"type": "tuple",
|
|
147
|
+
"internalType": "struct SwapperLib.Swap",
|
|
148
|
+
"components": [
|
|
149
|
+
{
|
|
150
|
+
"name": "inputToken",
|
|
151
|
+
"type": "address",
|
|
152
|
+
"internalType": "address"
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"name": "inputAmount",
|
|
156
|
+
"type": "uint256",
|
|
157
|
+
"internalType": "uint256"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "outputToken",
|
|
161
|
+
"type": "address",
|
|
162
|
+
"internalType": "address"
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "target",
|
|
166
|
+
"type": "address",
|
|
167
|
+
"internalType": "address"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"name": "slippage",
|
|
171
|
+
"type": "uint256",
|
|
172
|
+
"internalType": "uint256"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"name": "call",
|
|
176
|
+
"type": "bytes",
|
|
177
|
+
"internalType": "bytes"
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"name": "expectedShares",
|
|
183
|
+
"type": "uint256",
|
|
184
|
+
"internalType": "uint256"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "collateralizeFor",
|
|
188
|
+
"type": "bool",
|
|
189
|
+
"internalType": "bool"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
"name": "receiver",
|
|
193
|
+
"type": "address",
|
|
194
|
+
"internalType": "address"
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"outputs": [
|
|
198
|
+
{
|
|
199
|
+
"name": "outAmount",
|
|
200
|
+
"type": "uint256",
|
|
201
|
+
"internalType": "uint256"
|
|
202
|
+
}
|
|
203
|
+
],
|
|
204
|
+
"stateMutability": "nonpayable"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"type": "function",
|
|
208
|
+
"name": "swapAndDeposit",
|
|
209
|
+
"inputs": [
|
|
210
|
+
{
|
|
211
|
+
"name": "cToken",
|
|
212
|
+
"type": "address",
|
|
213
|
+
"internalType": "address"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "depositAsWrappedNative",
|
|
217
|
+
"type": "bool",
|
|
218
|
+
"internalType": "bool"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"name": "swapAction",
|
|
222
|
+
"type": "tuple",
|
|
223
|
+
"internalType": "struct SwapperLib.Swap",
|
|
224
|
+
"components": [
|
|
225
|
+
{
|
|
226
|
+
"name": "inputToken",
|
|
227
|
+
"type": "address",
|
|
228
|
+
"internalType": "address"
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"name": "inputAmount",
|
|
232
|
+
"type": "uint256",
|
|
233
|
+
"internalType": "uint256"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "outputToken",
|
|
237
|
+
"type": "address",
|
|
238
|
+
"internalType": "address"
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"name": "target",
|
|
242
|
+
"type": "address",
|
|
243
|
+
"internalType": "address"
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "slippage",
|
|
247
|
+
"type": "uint256",
|
|
248
|
+
"internalType": "uint256"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "call",
|
|
252
|
+
"type": "bytes",
|
|
253
|
+
"internalType": "bytes"
|
|
254
|
+
}
|
|
255
|
+
]
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"name": "expectedShares",
|
|
259
|
+
"type": "uint256",
|
|
260
|
+
"internalType": "uint256"
|
|
261
|
+
},
|
|
262
|
+
{
|
|
263
|
+
"name": "collateralizeFor",
|
|
264
|
+
"type": "bool",
|
|
265
|
+
"internalType": "bool"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "receiver",
|
|
269
|
+
"type": "address",
|
|
270
|
+
"internalType": "address"
|
|
271
|
+
}
|
|
272
|
+
],
|
|
273
|
+
"outputs": [
|
|
274
|
+
{
|
|
275
|
+
"name": "outAmount",
|
|
276
|
+
"type": "uint256",
|
|
277
|
+
"internalType": "uint256"
|
|
278
|
+
}
|
|
279
|
+
],
|
|
280
|
+
"stateMutability": "payable"
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"type": "function",
|
|
284
|
+
"name": "swapAndRepay",
|
|
285
|
+
"inputs": [
|
|
286
|
+
{
|
|
287
|
+
"name": "borrowableCToken",
|
|
288
|
+
"type": "address",
|
|
289
|
+
"internalType": "address"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"name": "depositAsWrappedNative",
|
|
293
|
+
"type": "bool",
|
|
294
|
+
"internalType": "bool"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"name": "swapAction",
|
|
298
|
+
"type": "tuple",
|
|
299
|
+
"internalType": "struct SwapperLib.Swap",
|
|
300
|
+
"components": [
|
|
301
|
+
{
|
|
302
|
+
"name": "inputToken",
|
|
303
|
+
"type": "address",
|
|
304
|
+
"internalType": "address"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"name": "inputAmount",
|
|
308
|
+
"type": "uint256",
|
|
309
|
+
"internalType": "uint256"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "outputToken",
|
|
313
|
+
"type": "address",
|
|
314
|
+
"internalType": "address"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"name": "target",
|
|
318
|
+
"type": "address",
|
|
319
|
+
"internalType": "address"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"name": "slippage",
|
|
323
|
+
"type": "uint256",
|
|
324
|
+
"internalType": "uint256"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"name": "call",
|
|
328
|
+
"type": "bytes",
|
|
329
|
+
"internalType": "bytes"
|
|
330
|
+
}
|
|
331
|
+
]
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"name": "repayAssets",
|
|
335
|
+
"type": "uint256",
|
|
336
|
+
"internalType": "uint256"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"name": "receiver",
|
|
340
|
+
"type": "address",
|
|
341
|
+
"internalType": "address"
|
|
342
|
+
}
|
|
343
|
+
],
|
|
344
|
+
"outputs": [
|
|
345
|
+
{
|
|
346
|
+
"name": "outAmount",
|
|
347
|
+
"type": "uint256",
|
|
348
|
+
"internalType": "uint256"
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"stateMutability": "payable"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"type": "function",
|
|
355
|
+
"name": "wrappedNative",
|
|
356
|
+
"inputs": [],
|
|
357
|
+
"outputs": [
|
|
358
|
+
{
|
|
359
|
+
"name": "",
|
|
360
|
+
"type": "address",
|
|
361
|
+
"internalType": "address"
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
"stateMutability": "view"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"type": "error",
|
|
368
|
+
"name": "BaseZapper__ExecutionError",
|
|
369
|
+
"inputs": []
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"type": "error",
|
|
373
|
+
"name": "BaseZapper__InsufficientToRepay",
|
|
374
|
+
"inputs": []
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"type": "error",
|
|
378
|
+
"name": "BaseZapper__Unauthorized",
|
|
379
|
+
"inputs": []
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"type": "error",
|
|
383
|
+
"name": "BaseZapper__UnderlyingTokenIsNotInputToken",
|
|
384
|
+
"inputs": []
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"type": "error",
|
|
388
|
+
"name": "CentralRegistryLib__InvalidCentralRegistry",
|
|
389
|
+
"inputs": []
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"type": "error",
|
|
393
|
+
"name": "LowLevelCallsHelper__CallFailed",
|
|
394
|
+
"inputs": []
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"type": "error",
|
|
398
|
+
"name": "LowLevelCallsHelper__InsufficientBalance",
|
|
399
|
+
"inputs": []
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"type": "error",
|
|
403
|
+
"name": "Reentrancy",
|
|
404
|
+
"inputs": []
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"type": "error",
|
|
408
|
+
"name": "SwapperLib__UnknownCalldata",
|
|
409
|
+
"inputs": []
|
|
410
|
+
}
|
|
411
|
+
]
|
package/dist/chains/index.d.ts
CHANGED
|
@@ -67,42 +67,54 @@ export declare const chains: {
|
|
|
67
67
|
"Apriori (aprMON) / wMON": {
|
|
68
68
|
address: string;
|
|
69
69
|
isMarket: boolean;
|
|
70
|
+
plugins: {
|
|
71
|
+
nativeVaultPositionManager: string;
|
|
72
|
+
nativeVaultZapper: string;
|
|
73
|
+
};
|
|
70
74
|
"aprMON-DynamicIRM": string;
|
|
71
75
|
tokens: {
|
|
72
76
|
aprMON: string;
|
|
73
77
|
WMON: string;
|
|
74
78
|
};
|
|
75
|
-
"WMON-DynamicIRM": string;
|
|
76
79
|
};
|
|
77
80
|
"Fastlane (shMON) / wMON": {
|
|
78
81
|
address: string;
|
|
79
82
|
isMarket: boolean;
|
|
83
|
+
plugins: {
|
|
84
|
+
nativeVaultPositionManager: string;
|
|
85
|
+
nativeVaultZapper: string;
|
|
86
|
+
};
|
|
80
87
|
"shMON-DynamicIRM": string;
|
|
81
88
|
tokens: {
|
|
82
89
|
shMON: string;
|
|
83
90
|
WMON: string;
|
|
84
91
|
};
|
|
85
|
-
"WMON-DynamicIRM": string;
|
|
86
92
|
};
|
|
87
|
-
"
|
|
93
|
+
"Kintsu (sMON) / wMON": {
|
|
88
94
|
address: string;
|
|
89
95
|
isMarket: boolean;
|
|
90
|
-
|
|
96
|
+
plugins: {
|
|
97
|
+
nativeVaultPositionManager: string;
|
|
98
|
+
nativeVaultZapper: string;
|
|
99
|
+
};
|
|
100
|
+
"sMON-DynamicIRM": string;
|
|
91
101
|
tokens: {
|
|
92
|
-
|
|
102
|
+
sMON: string;
|
|
93
103
|
WMON: string;
|
|
94
104
|
};
|
|
95
|
-
"WMON-DynamicIRM": string;
|
|
96
105
|
};
|
|
97
|
-
"
|
|
106
|
+
"Magma (gMON) / wMON": {
|
|
98
107
|
address: string;
|
|
99
108
|
isMarket: boolean;
|
|
100
|
-
|
|
109
|
+
plugins: {
|
|
110
|
+
nativeVaultPositionManager: string;
|
|
111
|
+
nativeVaultZapper: string;
|
|
112
|
+
};
|
|
113
|
+
"gMON-DynamicIRM": string;
|
|
101
114
|
tokens: {
|
|
102
|
-
|
|
115
|
+
gMON: string;
|
|
103
116
|
WMON: string;
|
|
104
117
|
};
|
|
105
|
-
"WMON-DynamicIRM": string;
|
|
106
118
|
};
|
|
107
119
|
ProtocolReader: string;
|
|
108
120
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/chains/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/chains/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAElB,CAAC"}
|
|
@@ -1,107 +1,119 @@
|
|
|
1
1
|
{
|
|
2
|
-
"CentralRegistry": "
|
|
3
|
-
"OracleManager": "
|
|
4
|
-
"ChainlinkAdaptor": "
|
|
5
|
-
"RedstoneClassicAdaptor": "
|
|
6
|
-
"RedstoneCoreAdaptor": "
|
|
7
|
-
"RedstoneAdaptorMulticallChecker": "
|
|
8
|
-
"MockOracle": "
|
|
9
|
-
"USDC": "
|
|
10
|
-
"WBTC": "
|
|
11
|
-
"SWETH": "
|
|
12
|
-
"DAI": "
|
|
13
|
-
"LUSD": "
|
|
14
|
-
"mkUSD": "
|
|
15
|
-
"mETH": "
|
|
16
|
-
"mUSD": "
|
|
17
|
-
"Faucet": "
|
|
2
|
+
"CentralRegistry": "0x95706D8E2c2dC42ef246aF264f1aEF78813bFAac",
|
|
3
|
+
"OracleManager": "0x0e005155311BC191fbBD7062cf4E60C36BDC7e96",
|
|
4
|
+
"ChainlinkAdaptor": "0x7F3f4C93B1b2cdFF88D6b5D875c1A2b28FBC8b83",
|
|
5
|
+
"RedstoneClassicAdaptor": "0xA65d0e3d557fbB145E0ccF89B72e15D14641A6f0",
|
|
6
|
+
"RedstoneCoreAdaptor": "0x2f5f3635C5253809F91a7Ac7459B41351C1D8670",
|
|
7
|
+
"RedstoneAdaptorMulticallChecker": "0xD12705101273c504b35e7F459A185a46297617B7",
|
|
8
|
+
"MockOracle": "0x0D1838603B2fCF47381c7d8c5bB7f570660d329D",
|
|
9
|
+
"USDC": "0xaD7a1905794015Ad333e49fe870Ad930A32D83f4",
|
|
10
|
+
"WBTC": "0x591b338B1A5Dc21676Dc5Fe428C168CeeaC22f4B",
|
|
11
|
+
"SWETH": "0xB04c5d9fE8C595A70D3839F5dE74361FD88023A6",
|
|
12
|
+
"DAI": "0x133192566d8984a20a646482B4C884bCDa947b64",
|
|
13
|
+
"LUSD": "0x35D7EA6Bc1A8bC47c11c9Ee6DB59Cbb84BF93A3a",
|
|
14
|
+
"mkUSD": "0x3B911808801d32F3C9Fdfc6Aab861b564874af13",
|
|
15
|
+
"mETH": "0xCd347fd43bd389D6D58832b4BD75e8A99eAA1535",
|
|
16
|
+
"mUSD": "0xC36c2C24A29945B767f82A6a70E3d28C7A2Fcc61",
|
|
17
|
+
"Faucet": "0xd3FDC0b3696C16699e68742a2ECa82baf2eC00Cb",
|
|
18
18
|
"Test WBTC / Test USDC": {
|
|
19
|
-
"address": "
|
|
19
|
+
"address": "0xa88713E9220AffaEA731D1D15aa1971EbF7dB4C5",
|
|
20
20
|
"isMarket": true,
|
|
21
|
-
"WBTC-DynamicIRM": "
|
|
21
|
+
"WBTC-DynamicIRM": "0x171D7588f641b478Bdae093c8200B8Ea1F6700D9",
|
|
22
22
|
"tokens": {
|
|
23
|
-
"WBTC": "
|
|
24
|
-
"USDC": "
|
|
23
|
+
"WBTC": "0x64723Ab5c115629a2a926c10D1f02eE23D12c3E5",
|
|
24
|
+
"USDC": "0x84c24BC0A810701df8798cD9f6D1E4E42E503121"
|
|
25
25
|
},
|
|
26
|
-
"USDC-DynamicIRM": "
|
|
26
|
+
"USDC-DynamicIRM": "0x0Fcab145a9156191c3236ACf561495BCf09BDA15"
|
|
27
27
|
},
|
|
28
28
|
"Test LUSD / Test SWETH": {
|
|
29
|
-
"address": "
|
|
29
|
+
"address": "0x3C39D0FD1f6797E893e360790A43d4F7E62CcD2e",
|
|
30
30
|
"isMarket": true,
|
|
31
|
-
"LUSD-DynamicIRM": "
|
|
31
|
+
"LUSD-DynamicIRM": "0x0b6Ee93e2d57c3Ea6A08c432A9c4dc0BA9fECF3c",
|
|
32
32
|
"tokens": {
|
|
33
|
-
"LUSD": "
|
|
34
|
-
"SWETH": "
|
|
33
|
+
"LUSD": "0x0990F62aD2cd62deB3911A14a86625aF279324BE",
|
|
34
|
+
"SWETH": "0x82FdB629B5Fbb16f1F5B407658F025726a710b47"
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"Test mUSD / Test mETH": {
|
|
38
|
-
"address": "
|
|
38
|
+
"address": "0x67FEcbcd68B376EA537B464e31D6A16c1b4e842A",
|
|
39
39
|
"isMarket": true,
|
|
40
40
|
"tokens": {
|
|
41
|
-
"mUSD": "
|
|
42
|
-
"mETH": "
|
|
41
|
+
"mUSD": "0x51dAC461A63CF49AD52b7A565958442F29058133",
|
|
42
|
+
"mETH": "0xB3aC2CD15d594fb655073af03867109E564EB1cd"
|
|
43
43
|
},
|
|
44
|
-
"mETH-DynamicIRM": "
|
|
44
|
+
"mETH-DynamicIRM": "0xE2667C58082aec17F3c49940fB2eb64212b3f006"
|
|
45
45
|
},
|
|
46
46
|
"Test DAI / Test mkUSD": {
|
|
47
|
-
"address": "
|
|
47
|
+
"address": "0x3741Fee86bF4bcf7edEdE9FC45fc993baeA2d8d2",
|
|
48
48
|
"isMarket": true,
|
|
49
|
-
"DAI-DynamicIRM": "
|
|
49
|
+
"DAI-DynamicIRM": "0x872FF63Ed4E3A76988F21546d7dBFA82B033524C",
|
|
50
50
|
"tokens": {
|
|
51
|
-
"DAI": "
|
|
52
|
-
"mkUSD": "
|
|
51
|
+
"DAI": "0x05e5A31D678939304133Df3035b82175F0Fe17b1",
|
|
52
|
+
"mkUSD": "0x6B0655A35782bf5eC509B485062553CcD4EE00B4"
|
|
53
53
|
},
|
|
54
|
-
"mkUSD-DynamicIRM": "
|
|
54
|
+
"mkUSD-DynamicIRM": "0x50a4e86D650064666b609f0EB7cda5a053C78A72"
|
|
55
55
|
},
|
|
56
|
-
"MessagingHub": "
|
|
57
|
-
"CVE": "
|
|
58
|
-
"RewardManager": "
|
|
59
|
-
"VeCVE": "
|
|
60
|
-
"GaugeManager": "
|
|
61
|
-
"VotingHub": "
|
|
62
|
-
"WMON-MockPermissionV3Aggregator": "
|
|
63
|
-
"WMON-ChainlinkAdaptor": "
|
|
64
|
-
"VaultAggregator-WMON-aprMON": "
|
|
65
|
-
"VaultAggregator-WMON-shMON": "
|
|
56
|
+
"MessagingHub": "0x3ADF8B22a10107A0460006aC6222a8311Dc0De3D",
|
|
57
|
+
"CVE": "0x942B140e3eE2C31fCd53b7F358f63e7472BE1D41",
|
|
58
|
+
"RewardManager": "0xa7c260e9722B96F9436E8aCc410B7CDF4F2Fe447",
|
|
59
|
+
"VeCVE": "0xD914Dd0ac84dA75BFFebCbA1051Cf25D9245E15e",
|
|
60
|
+
"GaugeManager": "0xDe3D02a4B9629Eb4877f228987Ec184580EF90F7",
|
|
61
|
+
"VotingHub": "0xa5b3D28C93A7b3516f6845c9534BfB097C01e5ff",
|
|
62
|
+
"WMON-MockPermissionV3Aggregator": "0xCd88999af9e4c9dEA38982a5FdF0940d75232E9c",
|
|
63
|
+
"WMON-ChainlinkAdaptor": "0x559dd93571E7645FB343d2871Da0A8453957fdE3",
|
|
64
|
+
"VaultAggregator-WMON-aprMON": "0x198Be338311682254d32a0Cf7C0DB4Ef4Fe15A6D",
|
|
65
|
+
"VaultAggregator-WMON-shMON": "0x214a33E6Af25b93b779db63039312750F36033EA",
|
|
66
66
|
"Apriori (aprMON) / wMON": {
|
|
67
|
-
"address": "
|
|
67
|
+
"address": "0x9EDb74484bF69923B59Fb870bb14cE654EE85030",
|
|
68
68
|
"isMarket": true,
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"WMON": "0x2F7692f424Ac74d2647f346BC81e39345D486bca"
|
|
69
|
+
"plugins": {
|
|
70
|
+
"nativeVaultPositionManager": "0x9ac9221Ed151b5c629D4e577feF724f311A1B3F0",
|
|
71
|
+
"nativeVaultZapper": "0xFA6316bD9C98181AB30d07F69B449bc1114f05A1"
|
|
73
72
|
},
|
|
74
|
-
"
|
|
73
|
+
"aprMON-DynamicIRM": "0x9404d710850150878A251396457A7032c9e4307B",
|
|
74
|
+
"tokens": {
|
|
75
|
+
"aprMON": "0x3AA88876944c3508ff5691E1d4cC3C0012C40E64",
|
|
76
|
+
"WMON": "0x262b63F92DfBc2C7Ae08A49E8e549Ad5Db048cC1"
|
|
77
|
+
}
|
|
75
78
|
},
|
|
76
79
|
"Fastlane (shMON) / wMON": {
|
|
77
|
-
"address": "
|
|
80
|
+
"address": "0x7e8F20CF13aDCBd015a73d79cc14B70F376BC0b6",
|
|
78
81
|
"isMarket": true,
|
|
79
|
-
"
|
|
80
|
-
|
|
81
|
-
"
|
|
82
|
-
"WMON": "0xdb2fC2Ce605Fefe490243e401d654c318d553B55"
|
|
82
|
+
"plugins": {
|
|
83
|
+
"nativeVaultPositionManager": "0x3B9ce03863925EeD39fF3B984AAf6F7C4d0AA51A",
|
|
84
|
+
"nativeVaultZapper": "0xc448E294A277e59213ec9C90574710546d22017B"
|
|
83
85
|
},
|
|
84
|
-
"
|
|
85
|
-
},
|
|
86
|
-
"Magma (gMON) / wMON": {
|
|
87
|
-
"address": "0x0174b170670c9C8fD576749Fc7Cd4e625aafd5a6",
|
|
88
|
-
"isMarket": true,
|
|
89
|
-
"gMON-DynamicIRM": "0x8700bD7ea892241892782aF411eB6f9E0855BC34",
|
|
86
|
+
"shMON-DynamicIRM": "0x9A99f16f77D9109C6647E249e1D5BDdE27043456",
|
|
90
87
|
"tokens": {
|
|
91
|
-
"
|
|
92
|
-
"WMON": "
|
|
93
|
-
}
|
|
94
|
-
"WMON-DynamicIRM": "0x148eDb0b3E6473B1BF181b39938dac86300dADf3"
|
|
88
|
+
"shMON": "0xE7f1fF97325aa2a89CAA51E4F26dc6Fff1eADB80",
|
|
89
|
+
"WMON": "0x6D42f8B203523Ad49388331BDddc0Ed087b221f5"
|
|
90
|
+
}
|
|
95
91
|
},
|
|
96
92
|
"Kintsu (sMON) / wMON": {
|
|
97
|
-
"address": "
|
|
93
|
+
"address": "0x4ca79543a2960a88fFF2EF9a97B155c037c325AD",
|
|
98
94
|
"isMarket": true,
|
|
99
|
-
"
|
|
95
|
+
"plugins": {
|
|
96
|
+
"nativeVaultPositionManager": "0x4d342fa3d31972BD9Da80a22bc5597d25Bb2CE9E",
|
|
97
|
+
"nativeVaultZapper": "0xeE01F22514006a4bA4aE9F747B0A83714E77B06F"
|
|
98
|
+
},
|
|
99
|
+
"sMON-DynamicIRM": "0xe8361763954c0420092397b361D51a08516fc9D8",
|
|
100
100
|
"tokens": {
|
|
101
|
-
"sMON": "
|
|
102
|
-
"WMON": "
|
|
101
|
+
"sMON": "0x3268aAE70B9D7cfeE96CF886CeE81BcFD68e3F2c",
|
|
102
|
+
"WMON": "0x18FD92a1c40631500617b63617eF3A8BDBcd57d4"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"Magma (gMON) / wMON": {
|
|
106
|
+
"address": "0xD20eBFCEbC49174df0B1Abb300f5Fc8ea5035061",
|
|
107
|
+
"isMarket": true,
|
|
108
|
+
"plugins": {
|
|
109
|
+
"nativeVaultPositionManager": "0xe2C8FbDCFEa8F678B19d454f3cAf6CE7Fa0A19a2",
|
|
110
|
+
"nativeVaultZapper": "0x6c781e4CaDCDC6A59c2A43E138206e06254F732C"
|
|
103
111
|
},
|
|
104
|
-
"
|
|
112
|
+
"gMON-DynamicIRM": "0xbE1a4830AeEE90E6Ed0B918d5e4986046A15460d",
|
|
113
|
+
"tokens": {
|
|
114
|
+
"gMON": "0x539B35dE0489d27Dc97BEDd194648B0741096167",
|
|
115
|
+
"WMON": "0x8b87B990192dE9fd8374e4547D93626494FE5A6F"
|
|
116
|
+
}
|
|
105
117
|
},
|
|
106
|
-
"ProtocolReader": "
|
|
118
|
+
"ProtocolReader": "0xEc0f69709A34265d29765C3777684A9F165d9edb"
|
|
107
119
|
}
|