@defisaver/positions-sdk 0.0.30-dev → 0.0.30
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/README.md +63 -63
- package/cjs/compoundV3/index.js +1 -1
- package/cjs/config/contracts.d.ts +220 -1087
- package/cjs/config/contracts.js +44 -171
- package/cjs/contracts.js +10 -4
- package/cjs/curveUsd/index.js +1 -1
- package/cjs/helpers/curveUsdHelpers/index.d.ts +1 -2
- package/cjs/helpers/curveUsdHelpers/index.js +17 -25
- package/cjs/moneymarket/moneymarketCommonService.js +1 -1
- package/cjs/services/utils.d.ts +0 -4
- package/cjs/services/utils.js +1 -13
- package/cjs/types/contracts/generated/CrvUSDView.d.ts +4 -30
- package/cjs/types/curveUsd.d.ts +0 -6
- package/esm/compoundV3/index.js +1 -1
- package/esm/config/contracts.d.ts +220 -1087
- package/esm/config/contracts.js +44 -171
- package/esm/contracts.js +10 -4
- package/esm/curveUsd/index.js +1 -1
- package/esm/helpers/curveUsdHelpers/index.d.ts +1 -2
- package/esm/helpers/curveUsdHelpers/index.js +18 -26
- package/esm/moneymarket/moneymarketCommonService.js +1 -1
- package/esm/services/utils.d.ts +0 -4
- package/esm/services/utils.js +0 -11
- package/esm/types/contracts/generated/CrvUSDView.d.ts +4 -30
- package/esm/types/curveUsd.d.ts +0 -6
- package/package.json +40 -40
- package/src/aaveV2/index.ts +226 -226
- package/src/aaveV3/index.ts +561 -561
- package/src/assets/index.ts +60 -60
- package/src/chickenBonds/index.ts +123 -123
- package/src/compoundV2/index.ts +219 -219
- package/src/compoundV3/index.ts +275 -275
- package/src/config/contracts.js +676 -803
- package/src/constants/index.ts +3 -3
- package/src/contracts.ts +126 -120
- package/src/curveUsd/index.ts +228 -228
- package/src/exchange/index.ts +17 -17
- package/src/helpers/aaveHelpers/index.ts +134 -134
- package/src/helpers/chickenBondsHelpers/index.ts +23 -23
- package/src/helpers/compoundHelpers/index.ts +181 -181
- package/src/helpers/curveUsdHelpers/index.ts +32 -40
- package/src/helpers/index.ts +5 -5
- package/src/helpers/makerHelpers/index.ts +94 -94
- package/src/helpers/sparkHelpers/index.ts +106 -106
- package/src/index.ts +40 -40
- package/src/liquity/index.ts +116 -116
- package/src/maker/index.ts +101 -101
- package/src/markets/aave/index.ts +80 -80
- package/src/markets/aave/marketAssets.ts +24 -24
- package/src/markets/compound/index.ts +141 -141
- package/src/markets/compound/marketsAssets.ts +48 -48
- package/src/markets/curveUsd/index.ts +69 -69
- package/src/markets/index.ts +3 -3
- package/src/markets/spark/index.ts +29 -29
- package/src/markets/spark/marketAssets.ts +10 -10
- package/src/moneymarket/moneymarketCommonService.ts +75 -75
- package/src/morpho/markets.ts +39 -39
- package/src/morphoAaveV2/index.ts +255 -255
- package/src/morphoAaveV3/index.ts +619 -619
- package/src/multicall/index.ts +22 -22
- package/src/services/dsrService.ts +15 -15
- package/src/services/priceService.ts +21 -21
- package/src/services/utils.ts +35 -48
- package/src/spark/index.ts +422 -422
- package/src/staking/staking.ts +167 -167
- package/src/types/aave.ts +256 -256
- package/src/types/chickenBonds.ts +45 -45
- package/src/types/common.ts +83 -83
- package/src/types/compound.ts +128 -128
- package/src/types/contracts/generated/CrvUSDView.ts +8 -43
- package/src/types/curveUsd.ts +112 -118
- package/src/types/index.ts +6 -6
- package/src/types/liquity.ts +30 -30
- package/src/types/maker.ts +50 -50
- package/src/types/spark.ts +106 -106
- package/yarn-error.log +0 -64
|
@@ -57,409 +57,35 @@ export namespace AaveV3View {
|
|
|
57
57
|
address: string;
|
|
58
58
|
createdBlock: number;
|
|
59
59
|
oldVersions: {
|
|
60
|
-
"16483408":
|
|
61
|
-
|
|
62
|
-
inputs: {
|
|
63
|
-
internalType: string;
|
|
64
|
-
name: string;
|
|
65
|
-
type: string;
|
|
66
|
-
}[];
|
|
67
|
-
name: string;
|
|
68
|
-
outputs: {
|
|
69
|
-
components: {
|
|
70
|
-
internalType: string;
|
|
71
|
-
name: string;
|
|
72
|
-
type: string;
|
|
73
|
-
}[];
|
|
74
|
-
internalType: string;
|
|
75
|
-
name: string;
|
|
76
|
-
type: string;
|
|
77
|
-
}[];
|
|
78
|
-
stateMutability: string;
|
|
79
|
-
type: string;
|
|
80
|
-
}[];
|
|
81
|
-
address: string;
|
|
82
|
-
};
|
|
83
|
-
"16690564": {
|
|
84
|
-
abi: {
|
|
85
|
-
inputs: {
|
|
86
|
-
internalType: string;
|
|
87
|
-
name: string;
|
|
88
|
-
type: string;
|
|
89
|
-
}[];
|
|
90
|
-
name: string;
|
|
91
|
-
outputs: {
|
|
92
|
-
components: {
|
|
93
|
-
internalType: string;
|
|
94
|
-
name: string;
|
|
95
|
-
type: string;
|
|
96
|
-
}[];
|
|
97
|
-
internalType: string;
|
|
98
|
-
name: string;
|
|
99
|
-
type: string;
|
|
100
|
-
}[];
|
|
101
|
-
stateMutability: string;
|
|
102
|
-
type: string;
|
|
103
|
-
}[];
|
|
104
|
-
address: string;
|
|
105
|
-
};
|
|
60
|
+
"16483408": string;
|
|
61
|
+
"16690564": string;
|
|
106
62
|
};
|
|
107
63
|
};
|
|
108
64
|
"10": {
|
|
109
65
|
address: string;
|
|
110
66
|
createdBlock: number;
|
|
111
67
|
oldVersions: {
|
|
112
|
-
"6723401":
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
address: string;
|
|
134
|
-
};
|
|
135
|
-
"6926482": {
|
|
136
|
-
abi: {
|
|
137
|
-
inputs: {
|
|
138
|
-
internalType: string;
|
|
139
|
-
name: string;
|
|
140
|
-
type: string;
|
|
141
|
-
}[];
|
|
142
|
-
name: string;
|
|
143
|
-
outputs: {
|
|
144
|
-
components: {
|
|
145
|
-
internalType: string;
|
|
146
|
-
name: string;
|
|
147
|
-
type: string;
|
|
148
|
-
}[];
|
|
149
|
-
internalType: string;
|
|
150
|
-
name: string;
|
|
151
|
-
type: string;
|
|
152
|
-
}[];
|
|
153
|
-
stateMutability: string;
|
|
154
|
-
type: string;
|
|
155
|
-
}[];
|
|
156
|
-
address: string;
|
|
157
|
-
};
|
|
158
|
-
"8908372": {
|
|
159
|
-
abi: {
|
|
160
|
-
inputs: {
|
|
161
|
-
internalType: string;
|
|
162
|
-
name: string;
|
|
163
|
-
type: string;
|
|
164
|
-
}[];
|
|
165
|
-
name: string;
|
|
166
|
-
outputs: {
|
|
167
|
-
components: {
|
|
168
|
-
internalType: string;
|
|
169
|
-
name: string;
|
|
170
|
-
type: string;
|
|
171
|
-
}[];
|
|
172
|
-
internalType: string;
|
|
173
|
-
name: string;
|
|
174
|
-
type: string;
|
|
175
|
-
}[];
|
|
176
|
-
stateMutability: string;
|
|
177
|
-
type: string;
|
|
178
|
-
}[];
|
|
179
|
-
address: string;
|
|
180
|
-
};
|
|
181
|
-
"13445522": {
|
|
182
|
-
abi: {
|
|
183
|
-
inputs: {
|
|
184
|
-
internalType: string;
|
|
185
|
-
name: string;
|
|
186
|
-
type: string;
|
|
187
|
-
}[];
|
|
188
|
-
name: string;
|
|
189
|
-
outputs: {
|
|
190
|
-
components: {
|
|
191
|
-
internalType: string;
|
|
192
|
-
name: string;
|
|
193
|
-
type: string;
|
|
194
|
-
}[];
|
|
195
|
-
internalType: string;
|
|
196
|
-
name: string;
|
|
197
|
-
type: string;
|
|
198
|
-
}[];
|
|
199
|
-
stateMutability: string;
|
|
200
|
-
type: string;
|
|
201
|
-
}[];
|
|
202
|
-
address: string;
|
|
203
|
-
};
|
|
204
|
-
"18286606": {
|
|
205
|
-
abi: {
|
|
206
|
-
inputs: {
|
|
207
|
-
internalType: string;
|
|
208
|
-
name: string;
|
|
209
|
-
type: string;
|
|
210
|
-
}[];
|
|
211
|
-
name: string;
|
|
212
|
-
outputs: {
|
|
213
|
-
components: {
|
|
214
|
-
internalType: string;
|
|
215
|
-
name: string;
|
|
216
|
-
type: string;
|
|
217
|
-
}[];
|
|
218
|
-
internalType: string;
|
|
219
|
-
name: string;
|
|
220
|
-
type: string;
|
|
221
|
-
}[];
|
|
222
|
-
stateMutability: string;
|
|
223
|
-
type: string;
|
|
224
|
-
}[];
|
|
225
|
-
address: string;
|
|
226
|
-
};
|
|
227
|
-
"23450199": {
|
|
228
|
-
abi: {
|
|
229
|
-
inputs: {
|
|
230
|
-
internalType: string;
|
|
231
|
-
name: string;
|
|
232
|
-
type: string;
|
|
233
|
-
}[];
|
|
234
|
-
name: string;
|
|
235
|
-
outputs: {
|
|
236
|
-
components: {
|
|
237
|
-
internalType: string;
|
|
238
|
-
name: string;
|
|
239
|
-
type: string;
|
|
240
|
-
}[];
|
|
241
|
-
internalType: string;
|
|
242
|
-
name: string;
|
|
243
|
-
type: string;
|
|
244
|
-
}[];
|
|
245
|
-
stateMutability: string;
|
|
246
|
-
type: string;
|
|
247
|
-
}[];
|
|
248
|
-
address: string;
|
|
249
|
-
};
|
|
250
|
-
"76015698": {
|
|
251
|
-
abi: {
|
|
252
|
-
inputs: {
|
|
253
|
-
internalType: string;
|
|
254
|
-
name: string;
|
|
255
|
-
type: string;
|
|
256
|
-
}[];
|
|
257
|
-
name: string;
|
|
258
|
-
outputs: {
|
|
259
|
-
components: {
|
|
260
|
-
internalType: string;
|
|
261
|
-
name: string;
|
|
262
|
-
type: string;
|
|
263
|
-
}[];
|
|
264
|
-
internalType: string;
|
|
265
|
-
name: string;
|
|
266
|
-
type: string;
|
|
267
|
-
}[];
|
|
268
|
-
stateMutability: string;
|
|
269
|
-
type: string;
|
|
270
|
-
}[];
|
|
271
|
-
address: string;
|
|
272
|
-
};
|
|
273
|
-
"106560861": {
|
|
274
|
-
abi: {
|
|
275
|
-
inputs: {
|
|
276
|
-
internalType: string;
|
|
277
|
-
name: string;
|
|
278
|
-
type: string;
|
|
279
|
-
}[];
|
|
280
|
-
name: string;
|
|
281
|
-
outputs: {
|
|
282
|
-
components: {
|
|
283
|
-
internalType: string;
|
|
284
|
-
name: string;
|
|
285
|
-
type: string;
|
|
286
|
-
}[];
|
|
287
|
-
internalType: string;
|
|
288
|
-
name: string;
|
|
289
|
-
type: string;
|
|
290
|
-
}[];
|
|
291
|
-
stateMutability: string;
|
|
292
|
-
type: string;
|
|
293
|
-
}[];
|
|
294
|
-
address: string;
|
|
295
|
-
};
|
|
296
|
-
};
|
|
297
|
-
};
|
|
298
|
-
"42161": {
|
|
299
|
-
address: string;
|
|
300
|
-
createdBlock: number;
|
|
301
|
-
oldVersions: {
|
|
302
|
-
"12855842": {
|
|
303
|
-
abi: {
|
|
304
|
-
inputs: {
|
|
305
|
-
internalType: string;
|
|
306
|
-
name: string;
|
|
307
|
-
type: string;
|
|
308
|
-
}[];
|
|
309
|
-
name: string;
|
|
310
|
-
outputs: {
|
|
311
|
-
components: {
|
|
312
|
-
internalType: string;
|
|
313
|
-
name: string;
|
|
314
|
-
type: string;
|
|
315
|
-
}[];
|
|
316
|
-
internalType: string;
|
|
317
|
-
name: string;
|
|
318
|
-
type: string;
|
|
319
|
-
}[];
|
|
320
|
-
stateMutability: string;
|
|
321
|
-
type: string;
|
|
322
|
-
}[];
|
|
323
|
-
address: string;
|
|
324
|
-
};
|
|
325
|
-
"16400389": {
|
|
326
|
-
abi: {
|
|
327
|
-
inputs: {
|
|
328
|
-
internalType: string;
|
|
329
|
-
name: string;
|
|
330
|
-
type: string;
|
|
331
|
-
}[];
|
|
332
|
-
name: string;
|
|
333
|
-
outputs: {
|
|
334
|
-
components: {
|
|
335
|
-
internalType: string;
|
|
336
|
-
name: string;
|
|
337
|
-
type: string;
|
|
338
|
-
}[];
|
|
339
|
-
internalType: string;
|
|
340
|
-
name: string;
|
|
341
|
-
type: string;
|
|
342
|
-
}[];
|
|
343
|
-
stateMutability: string;
|
|
344
|
-
type: string;
|
|
345
|
-
}[];
|
|
346
|
-
address: string;
|
|
347
|
-
};
|
|
348
|
-
"18522551": {
|
|
349
|
-
abi: {
|
|
350
|
-
inputs: {
|
|
351
|
-
internalType: string;
|
|
352
|
-
name: string;
|
|
353
|
-
type: string;
|
|
354
|
-
}[];
|
|
355
|
-
name: string;
|
|
356
|
-
outputs: {
|
|
357
|
-
components: {
|
|
358
|
-
internalType: string;
|
|
359
|
-
name: string;
|
|
360
|
-
type: string;
|
|
361
|
-
}[];
|
|
362
|
-
internalType: string;
|
|
363
|
-
name: string;
|
|
364
|
-
type: string;
|
|
365
|
-
}[];
|
|
366
|
-
stateMutability: string;
|
|
367
|
-
type: string;
|
|
368
|
-
}[];
|
|
369
|
-
address: string;
|
|
370
|
-
};
|
|
371
|
-
"19702666": {
|
|
372
|
-
abi: {
|
|
373
|
-
inputs: {
|
|
374
|
-
internalType: string;
|
|
375
|
-
name: string;
|
|
376
|
-
type: string;
|
|
377
|
-
}[];
|
|
378
|
-
name: string;
|
|
379
|
-
outputs: {
|
|
380
|
-
components: {
|
|
381
|
-
internalType: string;
|
|
382
|
-
name: string;
|
|
383
|
-
type: string;
|
|
384
|
-
}[];
|
|
385
|
-
internalType: string;
|
|
386
|
-
name: string;
|
|
387
|
-
type: string;
|
|
388
|
-
}[];
|
|
389
|
-
stateMutability: string;
|
|
390
|
-
type: string;
|
|
391
|
-
}[];
|
|
392
|
-
address: string;
|
|
393
|
-
};
|
|
394
|
-
"24918146": {
|
|
395
|
-
abi: {
|
|
396
|
-
inputs: {
|
|
397
|
-
internalType: string;
|
|
398
|
-
name: string;
|
|
399
|
-
type: string;
|
|
400
|
-
}[];
|
|
401
|
-
name: string;
|
|
402
|
-
outputs: {
|
|
403
|
-
components: {
|
|
404
|
-
internalType: string;
|
|
405
|
-
name: string;
|
|
406
|
-
type: string;
|
|
407
|
-
}[];
|
|
408
|
-
internalType: string;
|
|
409
|
-
name: string;
|
|
410
|
-
type: string;
|
|
411
|
-
}[];
|
|
412
|
-
stateMutability: string;
|
|
413
|
-
type: string;
|
|
414
|
-
}[];
|
|
415
|
-
address: string;
|
|
416
|
-
};
|
|
417
|
-
"63484252": {
|
|
418
|
-
abi: {
|
|
419
|
-
inputs: {
|
|
420
|
-
internalType: string;
|
|
421
|
-
name: string;
|
|
422
|
-
type: string;
|
|
423
|
-
}[];
|
|
424
|
-
name: string;
|
|
425
|
-
outputs: {
|
|
426
|
-
components: {
|
|
427
|
-
internalType: string;
|
|
428
|
-
name: string;
|
|
429
|
-
type: string;
|
|
430
|
-
}[];
|
|
431
|
-
internalType: string;
|
|
432
|
-
name: string;
|
|
433
|
-
type: string;
|
|
434
|
-
}[];
|
|
435
|
-
stateMutability: string;
|
|
436
|
-
type: string;
|
|
437
|
-
}[];
|
|
438
|
-
address: string;
|
|
439
|
-
};
|
|
440
|
-
"108724549": {
|
|
441
|
-
abi: {
|
|
442
|
-
inputs: {
|
|
443
|
-
internalType: string;
|
|
444
|
-
name: string;
|
|
445
|
-
type: string;
|
|
446
|
-
}[];
|
|
447
|
-
name: string;
|
|
448
|
-
outputs: {
|
|
449
|
-
components: {
|
|
450
|
-
internalType: string;
|
|
451
|
-
name: string;
|
|
452
|
-
type: string;
|
|
453
|
-
}[];
|
|
454
|
-
internalType: string;
|
|
455
|
-
name: string;
|
|
456
|
-
type: string;
|
|
457
|
-
}[];
|
|
458
|
-
stateMutability: string;
|
|
459
|
-
type: string;
|
|
460
|
-
}[];
|
|
461
|
-
address: string;
|
|
462
|
-
};
|
|
68
|
+
"6723401": string;
|
|
69
|
+
"6926482": string;
|
|
70
|
+
"8908372": string;
|
|
71
|
+
"13445522": string;
|
|
72
|
+
"18286606": string;
|
|
73
|
+
"23450199": string;
|
|
74
|
+
"76015698": string;
|
|
75
|
+
"106560861": string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
"42161": {
|
|
79
|
+
address: string;
|
|
80
|
+
createdBlock: number;
|
|
81
|
+
oldVersions: {
|
|
82
|
+
"12855842": string;
|
|
83
|
+
"16400389": string;
|
|
84
|
+
"18522551": string;
|
|
85
|
+
"19702666": string;
|
|
86
|
+
"24918146": string;
|
|
87
|
+
"63484252": string;
|
|
88
|
+
"108724549": string;
|
|
463
89
|
};
|
|
464
90
|
};
|
|
465
91
|
"8453": {
|
|
@@ -1458,29 +1084,7 @@ export namespace CompV3View {
|
|
|
1458
1084
|
address: string;
|
|
1459
1085
|
createdBlock: number;
|
|
1460
1086
|
oldVersions: {
|
|
1461
|
-
"15520449":
|
|
1462
|
-
abi: {
|
|
1463
|
-
inputs: {
|
|
1464
|
-
internalType: string;
|
|
1465
|
-
name: string;
|
|
1466
|
-
type: string;
|
|
1467
|
-
}[];
|
|
1468
|
-
name: string;
|
|
1469
|
-
outputs: {
|
|
1470
|
-
components: {
|
|
1471
|
-
internalType: string;
|
|
1472
|
-
name: string;
|
|
1473
|
-
type: string;
|
|
1474
|
-
}[];
|
|
1475
|
-
internalType: string;
|
|
1476
|
-
name: string;
|
|
1477
|
-
type: string;
|
|
1478
|
-
}[];
|
|
1479
|
-
stateMutability: string;
|
|
1480
|
-
type: string;
|
|
1481
|
-
}[];
|
|
1482
|
-
address: string;
|
|
1483
|
-
};
|
|
1087
|
+
"15520449": string;
|
|
1484
1088
|
};
|
|
1485
1089
|
};
|
|
1486
1090
|
"8453": {
|
|
@@ -1737,287 +1341,36 @@ export namespace CompV3USDCBulkerArb {
|
|
|
1737
1341
|
outputs: never[];
|
|
1738
1342
|
stateMutability: string;
|
|
1739
1343
|
type: string;
|
|
1740
|
-
anonymous?: undefined;
|
|
1741
|
-
} | {
|
|
1742
|
-
stateMutability: string;
|
|
1743
|
-
type: string;
|
|
1744
|
-
inputs?: undefined;
|
|
1745
|
-
name?: undefined;
|
|
1746
|
-
anonymous?: undefined;
|
|
1747
|
-
outputs?: undefined;
|
|
1748
|
-
})[];
|
|
1749
|
-
export { abi_21 as abi };
|
|
1750
|
-
let networks_21: {
|
|
1751
|
-
"42161": {
|
|
1752
|
-
address: string;
|
|
1753
|
-
};
|
|
1754
|
-
};
|
|
1755
|
-
export { networks_21 as networks };
|
|
1756
|
-
}
|
|
1757
|
-
export namespace wstETH {
|
|
1758
|
-
let abi_22: ({
|
|
1759
|
-
inputs: {
|
|
1760
|
-
internalType: string;
|
|
1761
|
-
name: string;
|
|
1762
|
-
type: string;
|
|
1763
|
-
}[];
|
|
1764
|
-
stateMutability: string;
|
|
1765
|
-
type: string;
|
|
1766
|
-
anonymous?: undefined;
|
|
1767
|
-
name?: undefined;
|
|
1768
|
-
outputs?: undefined;
|
|
1769
|
-
} | {
|
|
1770
|
-
anonymous: boolean;
|
|
1771
|
-
inputs: {
|
|
1772
|
-
indexed: boolean;
|
|
1773
|
-
internalType: string;
|
|
1774
|
-
name: string;
|
|
1775
|
-
type: string;
|
|
1776
|
-
}[];
|
|
1777
|
-
name: string;
|
|
1778
|
-
type: string;
|
|
1779
|
-
stateMutability?: undefined;
|
|
1780
|
-
outputs?: undefined;
|
|
1781
|
-
} | {
|
|
1782
|
-
inputs: {
|
|
1783
|
-
internalType: string;
|
|
1784
|
-
name: string;
|
|
1785
|
-
type: string;
|
|
1786
|
-
}[];
|
|
1787
|
-
name: string;
|
|
1788
|
-
outputs: {
|
|
1789
|
-
internalType: string;
|
|
1790
|
-
name: string;
|
|
1791
|
-
type: string;
|
|
1792
|
-
}[];
|
|
1793
|
-
stateMutability: string;
|
|
1794
|
-
type: string;
|
|
1795
|
-
anonymous?: undefined;
|
|
1796
|
-
} | {
|
|
1797
|
-
stateMutability: string;
|
|
1798
|
-
type: string;
|
|
1799
|
-
inputs?: undefined;
|
|
1800
|
-
anonymous?: undefined;
|
|
1801
|
-
name?: undefined;
|
|
1802
|
-
outputs?: undefined;
|
|
1803
|
-
})[];
|
|
1804
|
-
export { abi_22 as abi };
|
|
1805
|
-
let networks_22: {
|
|
1806
|
-
"1": {
|
|
1807
|
-
address: string;
|
|
1808
|
-
};
|
|
1809
|
-
};
|
|
1810
|
-
export { networks_22 as networks };
|
|
1811
|
-
}
|
|
1812
|
-
export namespace AaveLoanInfoV2 {
|
|
1813
|
-
let abi_23: ({
|
|
1814
|
-
inputs: {
|
|
1815
|
-
internalType: string;
|
|
1816
|
-
name: string;
|
|
1817
|
-
type: string;
|
|
1818
|
-
}[];
|
|
1819
|
-
name: string;
|
|
1820
|
-
outputs: {
|
|
1821
|
-
components: {
|
|
1822
|
-
internalType: string;
|
|
1823
|
-
name: string;
|
|
1824
|
-
type: string;
|
|
1825
|
-
}[];
|
|
1826
|
-
internalType: string;
|
|
1827
|
-
name: string;
|
|
1828
|
-
type: string;
|
|
1829
|
-
}[];
|
|
1830
|
-
stateMutability: string;
|
|
1831
|
-
type: string;
|
|
1832
|
-
} | {
|
|
1833
|
-
inputs: {
|
|
1834
|
-
internalType: string;
|
|
1835
|
-
name: string;
|
|
1836
|
-
type: string;
|
|
1837
|
-
}[];
|
|
1838
|
-
name: string;
|
|
1839
|
-
outputs: {
|
|
1840
|
-
internalType: string;
|
|
1841
|
-
name: string;
|
|
1842
|
-
type: string;
|
|
1843
|
-
}[];
|
|
1844
|
-
stateMutability: string;
|
|
1845
|
-
type: string;
|
|
1846
|
-
})[];
|
|
1847
|
-
export { abi_23 as abi };
|
|
1848
|
-
let networks_23: {
|
|
1849
|
-
"1": {
|
|
1850
|
-
address: string;
|
|
1851
|
-
createdBlock: number;
|
|
1852
|
-
oldVersions: {
|
|
1853
|
-
"11374778": {
|
|
1854
|
-
abi: {
|
|
1855
|
-
inputs: {
|
|
1856
|
-
internalType: string;
|
|
1857
|
-
name: string;
|
|
1858
|
-
type: string;
|
|
1859
|
-
}[];
|
|
1860
|
-
name: string;
|
|
1861
|
-
outputs: {
|
|
1862
|
-
components: {
|
|
1863
|
-
internalType: string;
|
|
1864
|
-
name: string;
|
|
1865
|
-
type: string;
|
|
1866
|
-
}[];
|
|
1867
|
-
internalType: string;
|
|
1868
|
-
name: string;
|
|
1869
|
-
type: string;
|
|
1870
|
-
}[];
|
|
1871
|
-
stateMutability: string;
|
|
1872
|
-
type: string;
|
|
1873
|
-
}[];
|
|
1874
|
-
address: string;
|
|
1875
|
-
};
|
|
1876
|
-
"11375123": {
|
|
1877
|
-
abi: {
|
|
1878
|
-
inputs: {
|
|
1879
|
-
internalType: string;
|
|
1880
|
-
name: string;
|
|
1881
|
-
type: string;
|
|
1882
|
-
}[];
|
|
1883
|
-
name: string;
|
|
1884
|
-
outputs: {
|
|
1885
|
-
components: {
|
|
1886
|
-
internalType: string;
|
|
1887
|
-
name: string;
|
|
1888
|
-
type: string;
|
|
1889
|
-
}[];
|
|
1890
|
-
internalType: string;
|
|
1891
|
-
name: string;
|
|
1892
|
-
type: string;
|
|
1893
|
-
}[];
|
|
1894
|
-
stateMutability: string;
|
|
1895
|
-
type: string;
|
|
1896
|
-
}[];
|
|
1897
|
-
address: string;
|
|
1898
|
-
};
|
|
1899
|
-
"11377499": {
|
|
1900
|
-
abi: {
|
|
1901
|
-
inputs: {
|
|
1902
|
-
internalType: string;
|
|
1903
|
-
name: string;
|
|
1904
|
-
type: string;
|
|
1905
|
-
}[];
|
|
1906
|
-
name: string;
|
|
1907
|
-
outputs: {
|
|
1908
|
-
components: {
|
|
1909
|
-
internalType: string;
|
|
1910
|
-
name: string;
|
|
1911
|
-
type: string;
|
|
1912
|
-
}[];
|
|
1913
|
-
internalType: string;
|
|
1914
|
-
name: string;
|
|
1915
|
-
type: string;
|
|
1916
|
-
}[];
|
|
1917
|
-
stateMutability: string;
|
|
1918
|
-
type: string;
|
|
1919
|
-
}[];
|
|
1920
|
-
address: string;
|
|
1921
|
-
};
|
|
1922
|
-
"11420152": {
|
|
1923
|
-
abi: {
|
|
1924
|
-
inputs: {
|
|
1925
|
-
internalType: string;
|
|
1926
|
-
name: string;
|
|
1927
|
-
type: string;
|
|
1928
|
-
}[];
|
|
1929
|
-
name: string;
|
|
1930
|
-
outputs: {
|
|
1931
|
-
components: {
|
|
1932
|
-
internalType: string;
|
|
1933
|
-
name: string;
|
|
1934
|
-
type: string;
|
|
1935
|
-
}[];
|
|
1936
|
-
internalType: string;
|
|
1937
|
-
name: string;
|
|
1938
|
-
type: string;
|
|
1939
|
-
}[];
|
|
1940
|
-
stateMutability: string;
|
|
1941
|
-
type: string;
|
|
1942
|
-
}[];
|
|
1943
|
-
address: string;
|
|
1944
|
-
};
|
|
1945
|
-
"11637629": {
|
|
1946
|
-
abi: {
|
|
1947
|
-
inputs: {
|
|
1948
|
-
internalType: string;
|
|
1949
|
-
name: string;
|
|
1950
|
-
type: string;
|
|
1951
|
-
}[];
|
|
1952
|
-
name: string;
|
|
1953
|
-
outputs: {
|
|
1954
|
-
components: {
|
|
1955
|
-
internalType: string;
|
|
1956
|
-
name: string;
|
|
1957
|
-
type: string;
|
|
1958
|
-
}[];
|
|
1959
|
-
internalType: string;
|
|
1960
|
-
name: string;
|
|
1961
|
-
type: string;
|
|
1962
|
-
}[];
|
|
1963
|
-
stateMutability: string;
|
|
1964
|
-
type: string;
|
|
1965
|
-
}[];
|
|
1966
|
-
address: string;
|
|
1967
|
-
};
|
|
1968
|
-
"12317383": {
|
|
1969
|
-
abi: {
|
|
1970
|
-
inputs: {
|
|
1971
|
-
internalType: string;
|
|
1972
|
-
name: string;
|
|
1973
|
-
type: string;
|
|
1974
|
-
}[];
|
|
1975
|
-
name: string;
|
|
1976
|
-
outputs: {
|
|
1977
|
-
components: {
|
|
1978
|
-
internalType: string;
|
|
1979
|
-
name: string;
|
|
1980
|
-
type: string;
|
|
1981
|
-
}[];
|
|
1982
|
-
internalType: string;
|
|
1983
|
-
name: string;
|
|
1984
|
-
type: string;
|
|
1985
|
-
}[];
|
|
1986
|
-
stateMutability: string;
|
|
1987
|
-
type: string;
|
|
1988
|
-
}[];
|
|
1989
|
-
address: string;
|
|
1990
|
-
};
|
|
1991
|
-
"15484097": {
|
|
1992
|
-
abi: {
|
|
1993
|
-
inputs: {
|
|
1994
|
-
internalType: string;
|
|
1995
|
-
name: string;
|
|
1996
|
-
type: string;
|
|
1997
|
-
}[];
|
|
1998
|
-
name: string;
|
|
1999
|
-
outputs: {
|
|
2000
|
-
components: {
|
|
2001
|
-
internalType: string;
|
|
2002
|
-
name: string;
|
|
2003
|
-
type: string;
|
|
2004
|
-
}[];
|
|
2005
|
-
internalType: string;
|
|
2006
|
-
name: string;
|
|
2007
|
-
type: string;
|
|
2008
|
-
}[];
|
|
2009
|
-
stateMutability: string;
|
|
2010
|
-
type: string;
|
|
2011
|
-
}[];
|
|
2012
|
-
address: string;
|
|
2013
|
-
};
|
|
2014
|
-
};
|
|
1344
|
+
anonymous?: undefined;
|
|
1345
|
+
} | {
|
|
1346
|
+
stateMutability: string;
|
|
1347
|
+
type: string;
|
|
1348
|
+
inputs?: undefined;
|
|
1349
|
+
name?: undefined;
|
|
1350
|
+
anonymous?: undefined;
|
|
1351
|
+
outputs?: undefined;
|
|
1352
|
+
})[];
|
|
1353
|
+
export { abi_21 as abi };
|
|
1354
|
+
let networks_21: {
|
|
1355
|
+
"42161": {
|
|
1356
|
+
address: string;
|
|
2015
1357
|
};
|
|
2016
1358
|
};
|
|
2017
|
-
export {
|
|
1359
|
+
export { networks_21 as networks };
|
|
2018
1360
|
}
|
|
2019
|
-
export namespace
|
|
2020
|
-
let
|
|
1361
|
+
export namespace wstETH {
|
|
1362
|
+
let abi_22: ({
|
|
1363
|
+
inputs: {
|
|
1364
|
+
internalType: string;
|
|
1365
|
+
name: string;
|
|
1366
|
+
type: string;
|
|
1367
|
+
}[];
|
|
1368
|
+
stateMutability: string;
|
|
1369
|
+
type: string;
|
|
1370
|
+
anonymous?: undefined;
|
|
1371
|
+
name?: undefined;
|
|
1372
|
+
outputs?: undefined;
|
|
1373
|
+
} | {
|
|
2021
1374
|
anonymous: boolean;
|
|
2022
1375
|
inputs: {
|
|
2023
1376
|
indexed: boolean;
|
|
@@ -2027,8 +1380,8 @@ export namespace LendingPoolAddressesProvider {
|
|
|
2027
1380
|
}[];
|
|
2028
1381
|
name: string;
|
|
2029
1382
|
type: string;
|
|
2030
|
-
outputs?: undefined;
|
|
2031
1383
|
stateMutability?: undefined;
|
|
1384
|
+
outputs?: undefined;
|
|
2032
1385
|
} | {
|
|
2033
1386
|
inputs: {
|
|
2034
1387
|
internalType: string;
|
|
@@ -2044,28 +1397,29 @@ export namespace LendingPoolAddressesProvider {
|
|
|
2044
1397
|
stateMutability: string;
|
|
2045
1398
|
type: string;
|
|
2046
1399
|
anonymous?: undefined;
|
|
1400
|
+
} | {
|
|
1401
|
+
stateMutability: string;
|
|
1402
|
+
type: string;
|
|
1403
|
+
inputs?: undefined;
|
|
1404
|
+
anonymous?: undefined;
|
|
1405
|
+
name?: undefined;
|
|
1406
|
+
outputs?: undefined;
|
|
2047
1407
|
})[];
|
|
2048
|
-
export {
|
|
2049
|
-
let
|
|
1408
|
+
export { abi_22 as abi };
|
|
1409
|
+
let networks_22: {
|
|
2050
1410
|
"1": {
|
|
2051
1411
|
address: string;
|
|
2052
1412
|
};
|
|
2053
1413
|
};
|
|
2054
|
-
export {
|
|
1414
|
+
export { networks_22 as networks };
|
|
2055
1415
|
}
|
|
2056
|
-
export namespace
|
|
2057
|
-
let
|
|
1416
|
+
export namespace AaveLoanInfoV2 {
|
|
1417
|
+
let abi_23: ({
|
|
2058
1418
|
inputs: {
|
|
2059
1419
|
internalType: string;
|
|
2060
1420
|
name: string;
|
|
2061
1421
|
type: string;
|
|
2062
1422
|
}[];
|
|
2063
|
-
stateMutability: string;
|
|
2064
|
-
type: string;
|
|
2065
|
-
name?: undefined;
|
|
2066
|
-
outputs?: undefined;
|
|
2067
|
-
} | {
|
|
2068
|
-
inputs: never[];
|
|
2069
1423
|
name: string;
|
|
2070
1424
|
outputs: {
|
|
2071
1425
|
components: {
|
|
@@ -2094,16 +1448,27 @@ export namespace AaveProtocolDataProvider {
|
|
|
2094
1448
|
stateMutability: string;
|
|
2095
1449
|
type: string;
|
|
2096
1450
|
})[];
|
|
2097
|
-
export {
|
|
2098
|
-
let
|
|
1451
|
+
export { abi_23 as abi };
|
|
1452
|
+
let networks_23: {
|
|
2099
1453
|
"1": {
|
|
2100
1454
|
address: string;
|
|
1455
|
+
createdBlock: number;
|
|
1456
|
+
oldVersions: {
|
|
1457
|
+
"11374778": string;
|
|
1458
|
+
"11375123": string;
|
|
1459
|
+
"11375721": string;
|
|
1460
|
+
"11377499": string;
|
|
1461
|
+
"11420152": string;
|
|
1462
|
+
"11637629": string;
|
|
1463
|
+
"12317383": string;
|
|
1464
|
+
"15484097": string;
|
|
1465
|
+
};
|
|
2101
1466
|
};
|
|
2102
1467
|
};
|
|
2103
|
-
export {
|
|
1468
|
+
export { networks_23 as networks };
|
|
2104
1469
|
}
|
|
2105
|
-
export namespace
|
|
2106
|
-
let
|
|
1470
|
+
export namespace LendingPoolAddressesProvider {
|
|
1471
|
+
let abi_24: ({
|
|
2107
1472
|
anonymous: boolean;
|
|
2108
1473
|
inputs: {
|
|
2109
1474
|
indexed: boolean;
|
|
@@ -2115,36 +1480,6 @@ export namespace AaveLendingPoolV2 {
|
|
|
2115
1480
|
type: string;
|
|
2116
1481
|
outputs?: undefined;
|
|
2117
1482
|
stateMutability?: undefined;
|
|
2118
|
-
} | {
|
|
2119
|
-
inputs: {
|
|
2120
|
-
internalType: string;
|
|
2121
|
-
name: string;
|
|
2122
|
-
type: string;
|
|
2123
|
-
}[];
|
|
2124
|
-
name: string;
|
|
2125
|
-
outputs: {
|
|
2126
|
-
components: ({
|
|
2127
|
-
components: {
|
|
2128
|
-
internalType: string;
|
|
2129
|
-
name: string;
|
|
2130
|
-
type: string;
|
|
2131
|
-
}[];
|
|
2132
|
-
internalType: string;
|
|
2133
|
-
name: string;
|
|
2134
|
-
type: string;
|
|
2135
|
-
} | {
|
|
2136
|
-
internalType: string;
|
|
2137
|
-
name: string;
|
|
2138
|
-
type: string;
|
|
2139
|
-
components?: undefined;
|
|
2140
|
-
})[];
|
|
2141
|
-
internalType: string;
|
|
2142
|
-
name: string;
|
|
2143
|
-
type: string;
|
|
2144
|
-
}[];
|
|
2145
|
-
stateMutability: string;
|
|
2146
|
-
type: string;
|
|
2147
|
-
anonymous?: undefined;
|
|
2148
1483
|
} | {
|
|
2149
1484
|
inputs: {
|
|
2150
1485
|
internalType: string;
|
|
@@ -2161,21 +1496,27 @@ export namespace AaveLendingPoolV2 {
|
|
|
2161
1496
|
type: string;
|
|
2162
1497
|
anonymous?: undefined;
|
|
2163
1498
|
})[];
|
|
2164
|
-
export {
|
|
2165
|
-
let
|
|
1499
|
+
export { abi_24 as abi };
|
|
1500
|
+
let networks_24: {
|
|
2166
1501
|
"1": {
|
|
2167
1502
|
address: string;
|
|
2168
1503
|
};
|
|
2169
1504
|
};
|
|
2170
|
-
export {
|
|
1505
|
+
export { networks_24 as networks };
|
|
2171
1506
|
}
|
|
2172
|
-
export namespace
|
|
2173
|
-
let
|
|
1507
|
+
export namespace AaveProtocolDataProvider {
|
|
1508
|
+
let abi_25: ({
|
|
2174
1509
|
inputs: {
|
|
2175
1510
|
internalType: string;
|
|
2176
1511
|
name: string;
|
|
2177
1512
|
type: string;
|
|
2178
1513
|
}[];
|
|
1514
|
+
stateMutability: string;
|
|
1515
|
+
type: string;
|
|
1516
|
+
name?: undefined;
|
|
1517
|
+
outputs?: undefined;
|
|
1518
|
+
} | {
|
|
1519
|
+
inputs: never[];
|
|
2179
1520
|
name: string;
|
|
2180
1521
|
outputs: {
|
|
2181
1522
|
components: {
|
|
@@ -2204,142 +1545,130 @@ export namespace CompoundLoanInfo {
|
|
|
2204
1545
|
stateMutability: string;
|
|
2205
1546
|
type: string;
|
|
2206
1547
|
})[];
|
|
2207
|
-
export {
|
|
2208
|
-
let
|
|
1548
|
+
export { abi_25 as abi };
|
|
1549
|
+
let networks_25: {
|
|
2209
1550
|
"1": {
|
|
2210
1551
|
address: string;
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
"
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
}[];
|
|
2332
|
-
name: string;
|
|
2333
|
-
outputs: {
|
|
2334
|
-
internalType: string;
|
|
2335
|
-
name: string;
|
|
2336
|
-
type: string;
|
|
2337
|
-
}[];
|
|
2338
|
-
stateMutability: string;
|
|
2339
|
-
type: string;
|
|
2340
|
-
}[];
|
|
2341
|
-
address: string;
|
|
2342
|
-
};
|
|
1552
|
+
};
|
|
1553
|
+
};
|
|
1554
|
+
export { networks_25 as networks };
|
|
1555
|
+
}
|
|
1556
|
+
export namespace AaveLendingPoolV2 {
|
|
1557
|
+
let abi_26: ({
|
|
1558
|
+
anonymous: boolean;
|
|
1559
|
+
inputs: {
|
|
1560
|
+
indexed: boolean;
|
|
1561
|
+
internalType: string;
|
|
1562
|
+
name: string;
|
|
1563
|
+
type: string;
|
|
1564
|
+
}[];
|
|
1565
|
+
name: string;
|
|
1566
|
+
type: string;
|
|
1567
|
+
outputs?: undefined;
|
|
1568
|
+
stateMutability?: undefined;
|
|
1569
|
+
} | {
|
|
1570
|
+
inputs: {
|
|
1571
|
+
internalType: string;
|
|
1572
|
+
name: string;
|
|
1573
|
+
type: string;
|
|
1574
|
+
}[];
|
|
1575
|
+
name: string;
|
|
1576
|
+
outputs: {
|
|
1577
|
+
components: ({
|
|
1578
|
+
components: {
|
|
1579
|
+
internalType: string;
|
|
1580
|
+
name: string;
|
|
1581
|
+
type: string;
|
|
1582
|
+
}[];
|
|
1583
|
+
internalType: string;
|
|
1584
|
+
name: string;
|
|
1585
|
+
type: string;
|
|
1586
|
+
} | {
|
|
1587
|
+
internalType: string;
|
|
1588
|
+
name: string;
|
|
1589
|
+
type: string;
|
|
1590
|
+
components?: undefined;
|
|
1591
|
+
})[];
|
|
1592
|
+
internalType: string;
|
|
1593
|
+
name: string;
|
|
1594
|
+
type: string;
|
|
1595
|
+
}[];
|
|
1596
|
+
stateMutability: string;
|
|
1597
|
+
type: string;
|
|
1598
|
+
anonymous?: undefined;
|
|
1599
|
+
} | {
|
|
1600
|
+
inputs: {
|
|
1601
|
+
internalType: string;
|
|
1602
|
+
name: string;
|
|
1603
|
+
type: string;
|
|
1604
|
+
}[];
|
|
1605
|
+
name: string;
|
|
1606
|
+
outputs: {
|
|
1607
|
+
internalType: string;
|
|
1608
|
+
name: string;
|
|
1609
|
+
type: string;
|
|
1610
|
+
}[];
|
|
1611
|
+
stateMutability: string;
|
|
1612
|
+
type: string;
|
|
1613
|
+
anonymous?: undefined;
|
|
1614
|
+
})[];
|
|
1615
|
+
export { abi_26 as abi };
|
|
1616
|
+
let networks_26: {
|
|
1617
|
+
"1": {
|
|
1618
|
+
address: string;
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
export { networks_26 as networks };
|
|
1622
|
+
}
|
|
1623
|
+
export namespace CompoundLoanInfo {
|
|
1624
|
+
let abi_27: ({
|
|
1625
|
+
inputs: {
|
|
1626
|
+
internalType: string;
|
|
1627
|
+
name: string;
|
|
1628
|
+
type: string;
|
|
1629
|
+
}[];
|
|
1630
|
+
name: string;
|
|
1631
|
+
outputs: {
|
|
1632
|
+
components: {
|
|
1633
|
+
internalType: string;
|
|
1634
|
+
name: string;
|
|
1635
|
+
type: string;
|
|
1636
|
+
}[];
|
|
1637
|
+
internalType: string;
|
|
1638
|
+
name: string;
|
|
1639
|
+
type: string;
|
|
1640
|
+
}[];
|
|
1641
|
+
stateMutability: string;
|
|
1642
|
+
type: string;
|
|
1643
|
+
} | {
|
|
1644
|
+
inputs: {
|
|
1645
|
+
internalType: string;
|
|
1646
|
+
name: string;
|
|
1647
|
+
type: string;
|
|
1648
|
+
}[];
|
|
1649
|
+
name: string;
|
|
1650
|
+
outputs: {
|
|
1651
|
+
internalType: string;
|
|
1652
|
+
name: string;
|
|
1653
|
+
type: string;
|
|
1654
|
+
}[];
|
|
1655
|
+
stateMutability: string;
|
|
1656
|
+
type: string;
|
|
1657
|
+
})[];
|
|
1658
|
+
export { abi_27 as abi };
|
|
1659
|
+
let networks_27: {
|
|
1660
|
+
"1": {
|
|
1661
|
+
address: string;
|
|
1662
|
+
createdBlock: number;
|
|
1663
|
+
oldVersions: {
|
|
1664
|
+
"10024350": string;
|
|
1665
|
+
"10027063": string;
|
|
1666
|
+
"10052917": string;
|
|
1667
|
+
"10411281": string;
|
|
1668
|
+
"10684038": string;
|
|
1669
|
+
"12503103": string;
|
|
1670
|
+
"13416222": string;
|
|
1671
|
+
"15442192": string;
|
|
2343
1672
|
};
|
|
2344
1673
|
};
|
|
2345
1674
|
};
|
|
@@ -2705,39 +2034,7 @@ export namespace MorphoAaveV2View {
|
|
|
2705
2034
|
address: string;
|
|
2706
2035
|
createdBlock: number;
|
|
2707
2036
|
oldVersions: {
|
|
2708
|
-
"16586304":
|
|
2709
|
-
abi: {
|
|
2710
|
-
inputs: {
|
|
2711
|
-
internalType: string;
|
|
2712
|
-
name: string;
|
|
2713
|
-
type: string;
|
|
2714
|
-
}[];
|
|
2715
|
-
name: string;
|
|
2716
|
-
outputs: {
|
|
2717
|
-
components: ({
|
|
2718
|
-
internalType: string;
|
|
2719
|
-
name: string;
|
|
2720
|
-
type: string;
|
|
2721
|
-
components?: undefined;
|
|
2722
|
-
} | {
|
|
2723
|
-
components: {
|
|
2724
|
-
internalType: string;
|
|
2725
|
-
name: string;
|
|
2726
|
-
type: string;
|
|
2727
|
-
}[];
|
|
2728
|
-
internalType: string;
|
|
2729
|
-
name: string;
|
|
2730
|
-
type: string;
|
|
2731
|
-
})[];
|
|
2732
|
-
internalType: string;
|
|
2733
|
-
name: string;
|
|
2734
|
-
type: string;
|
|
2735
|
-
}[];
|
|
2736
|
-
stateMutability: string;
|
|
2737
|
-
type: string;
|
|
2738
|
-
}[];
|
|
2739
|
-
address: string;
|
|
2740
|
-
};
|
|
2037
|
+
"16586304": string;
|
|
2741
2038
|
};
|
|
2742
2039
|
};
|
|
2743
2040
|
};
|
|
@@ -2803,29 +2100,7 @@ export namespace SparkView {
|
|
|
2803
2100
|
address: string;
|
|
2804
2101
|
createdBlock: number;
|
|
2805
2102
|
oldVersions: {
|
|
2806
|
-
"17734126":
|
|
2807
|
-
abi: {
|
|
2808
|
-
inputs: {
|
|
2809
|
-
internalType: string;
|
|
2810
|
-
name: string;
|
|
2811
|
-
type: string;
|
|
2812
|
-
}[];
|
|
2813
|
-
name: string;
|
|
2814
|
-
outputs: {
|
|
2815
|
-
components: {
|
|
2816
|
-
internalType: string;
|
|
2817
|
-
name: string;
|
|
2818
|
-
type: string;
|
|
2819
|
-
}[];
|
|
2820
|
-
internalType: string;
|
|
2821
|
-
name: string;
|
|
2822
|
-
type: string;
|
|
2823
|
-
}[];
|
|
2824
|
-
stateMutability: string;
|
|
2825
|
-
type: string;
|
|
2826
|
-
}[];
|
|
2827
|
-
address: string;
|
|
2828
|
-
};
|
|
2103
|
+
"17734126": string;
|
|
2829
2104
|
};
|
|
2830
2105
|
};
|
|
2831
2106
|
};
|
|
@@ -3638,12 +2913,6 @@ export namespace crvUSDsfrxETHAmm {
|
|
|
3638
2913
|
}
|
|
3639
2914
|
export namespace crvUSDView {
|
|
3640
2915
|
let abi_50: ({
|
|
3641
|
-
inputs: never[];
|
|
3642
|
-
name: string;
|
|
3643
|
-
type: string;
|
|
3644
|
-
outputs?: undefined;
|
|
3645
|
-
stateMutability?: undefined;
|
|
3646
|
-
} | {
|
|
3647
2916
|
inputs: {
|
|
3648
2917
|
internalType: string;
|
|
3649
2918
|
name: string;
|
|
@@ -3693,75 +2962,7 @@ export namespace crvUSDView {
|
|
|
3693
2962
|
address: string;
|
|
3694
2963
|
createdBlock: number;
|
|
3695
2964
|
oldVersions: {
|
|
3696
|
-
"17657253":
|
|
3697
|
-
address: string;
|
|
3698
|
-
abi: {
|
|
3699
|
-
inputs: {
|
|
3700
|
-
internalType: string;
|
|
3701
|
-
name: string;
|
|
3702
|
-
type: string;
|
|
3703
|
-
}[];
|
|
3704
|
-
name: string;
|
|
3705
|
-
outputs: {
|
|
3706
|
-
components: {
|
|
3707
|
-
internalType: string;
|
|
3708
|
-
name: string;
|
|
3709
|
-
type: string;
|
|
3710
|
-
}[];
|
|
3711
|
-
internalType: string;
|
|
3712
|
-
name: string;
|
|
3713
|
-
type: string;
|
|
3714
|
-
}[];
|
|
3715
|
-
stateMutability: string;
|
|
3716
|
-
type: string;
|
|
3717
|
-
}[];
|
|
3718
|
-
};
|
|
3719
|
-
"17683243": {
|
|
3720
|
-
address: string;
|
|
3721
|
-
abi: {
|
|
3722
|
-
inputs: {
|
|
3723
|
-
internalType: string;
|
|
3724
|
-
name: string;
|
|
3725
|
-
type: string;
|
|
3726
|
-
}[];
|
|
3727
|
-
name: string;
|
|
3728
|
-
outputs: {
|
|
3729
|
-
components: {
|
|
3730
|
-
internalType: string;
|
|
3731
|
-
name: string;
|
|
3732
|
-
type: string;
|
|
3733
|
-
}[];
|
|
3734
|
-
internalType: string;
|
|
3735
|
-
name: string;
|
|
3736
|
-
type: string;
|
|
3737
|
-
}[];
|
|
3738
|
-
stateMutability: string;
|
|
3739
|
-
type: string;
|
|
3740
|
-
}[];
|
|
3741
|
-
};
|
|
3742
|
-
"18419795": {
|
|
3743
|
-
address: string;
|
|
3744
|
-
abi: {
|
|
3745
|
-
inputs: {
|
|
3746
|
-
internalType: string;
|
|
3747
|
-
name: string;
|
|
3748
|
-
type: string;
|
|
3749
|
-
}[];
|
|
3750
|
-
name: string;
|
|
3751
|
-
outputs: {
|
|
3752
|
-
components: {
|
|
3753
|
-
internalType: string;
|
|
3754
|
-
name: string;
|
|
3755
|
-
type: string;
|
|
3756
|
-
}[];
|
|
3757
|
-
internalType: string;
|
|
3758
|
-
name: string;
|
|
3759
|
-
type: string;
|
|
3760
|
-
}[];
|
|
3761
|
-
stateMutability: string;
|
|
3762
|
-
type: string;
|
|
3763
|
-
}[];
|
|
3764
|
-
};
|
|
2965
|
+
"17657253": string;
|
|
3765
2966
|
};
|
|
3766
2967
|
};
|
|
3767
2968
|
};
|
|
@@ -3833,60 +3034,9 @@ export namespace LiquityView {
|
|
|
3833
3034
|
address: string;
|
|
3834
3035
|
createdBlock: number;
|
|
3835
3036
|
oldVersions: {
|
|
3836
|
-
"12549073":
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
internalType: string;
|
|
3840
|
-
name: string;
|
|
3841
|
-
type: string;
|
|
3842
|
-
}[];
|
|
3843
|
-
name: string;
|
|
3844
|
-
outputs: {
|
|
3845
|
-
internalType: string;
|
|
3846
|
-
name: string;
|
|
3847
|
-
type: string;
|
|
3848
|
-
}[];
|
|
3849
|
-
stateMutability: string;
|
|
3850
|
-
type: string;
|
|
3851
|
-
}[];
|
|
3852
|
-
address: string;
|
|
3853
|
-
};
|
|
3854
|
-
"12567960": {
|
|
3855
|
-
abi: {
|
|
3856
|
-
inputs: {
|
|
3857
|
-
internalType: string;
|
|
3858
|
-
name: string;
|
|
3859
|
-
type: string;
|
|
3860
|
-
}[];
|
|
3861
|
-
name: string;
|
|
3862
|
-
outputs: {
|
|
3863
|
-
internalType: string;
|
|
3864
|
-
name: string;
|
|
3865
|
-
type: string;
|
|
3866
|
-
}[];
|
|
3867
|
-
stateMutability: string;
|
|
3868
|
-
type: string;
|
|
3869
|
-
}[];
|
|
3870
|
-
address: string;
|
|
3871
|
-
};
|
|
3872
|
-
"12638758": {
|
|
3873
|
-
abi: {
|
|
3874
|
-
inputs: {
|
|
3875
|
-
internalType: string;
|
|
3876
|
-
name: string;
|
|
3877
|
-
type: string;
|
|
3878
|
-
}[];
|
|
3879
|
-
name: string;
|
|
3880
|
-
outputs: {
|
|
3881
|
-
internalType: string;
|
|
3882
|
-
name: string;
|
|
3883
|
-
type: string;
|
|
3884
|
-
}[];
|
|
3885
|
-
stateMutability: string;
|
|
3886
|
-
type: string;
|
|
3887
|
-
}[];
|
|
3888
|
-
address: string;
|
|
3889
|
-
};
|
|
3037
|
+
"12549073": string;
|
|
3038
|
+
"12567960": string;
|
|
3039
|
+
"12638758": string;
|
|
3890
3040
|
"12746821": {
|
|
3891
3041
|
abi: {
|
|
3892
3042
|
inputs: {
|
|
@@ -4077,24 +3227,7 @@ export namespace McdView {
|
|
|
4077
3227
|
address: string;
|
|
4078
3228
|
createdBlock: number;
|
|
4079
3229
|
oldVersions: {
|
|
4080
|
-
"14384301":
|
|
4081
|
-
abi: {
|
|
4082
|
-
inputs: {
|
|
4083
|
-
internalType: string;
|
|
4084
|
-
name: string;
|
|
4085
|
-
type: string;
|
|
4086
|
-
}[];
|
|
4087
|
-
name: string;
|
|
4088
|
-
outputs: {
|
|
4089
|
-
internalType: string;
|
|
4090
|
-
name: string;
|
|
4091
|
-
type: string;
|
|
4092
|
-
}[];
|
|
4093
|
-
stateMutability: string;
|
|
4094
|
-
type: string;
|
|
4095
|
-
}[];
|
|
4096
|
-
address: string;
|
|
4097
|
-
};
|
|
3230
|
+
"14384301": string;
|
|
4098
3231
|
};
|
|
4099
3232
|
};
|
|
4100
3233
|
};
|