@qidao/sdk 5.1.99 → 5.1.100
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/constants.d.ts +14 -4
- package/dist/src/vaultInfo.d.ts +104 -13
- package/package.json +1 -1
package/dist/src/vaultInfo.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare enum FRONTEND {
|
|
|
15
15
|
MANHATTAN = 1,
|
|
16
16
|
STELLASWAP = 2
|
|
17
17
|
}
|
|
18
|
+
export type PLATFORM = 'Beefy' | 'Yearn' | 'Curve' | 'AaveV2' | 'AaveV3' | 'Balancer' | 'Lido' | 'Arrakis' | 'QuickSwap' | 'Gains' | 'GotchiVault' | 'Stader' | 'StakeDAO' | 'Tetu' | 'Spookyswap' | 'Convex';
|
|
18
19
|
export interface COLLATERAL {
|
|
19
20
|
aaveId?: string;
|
|
20
21
|
connect(address: string, signerOrProvider: Signer | Provider): QiStablecoin | Erc20Stablecoin | Erc20QiStablecoinwbtc | Erc20QiStablecoincamwbtc | CrosschainQiStablecoin | CrosschainNativeQiStablecoin | CrosschainQiStablecoinV2 | CrosschainQiStablecoinSlim | CrosschainQiStablecoinSlimV2 | CrosschainQiStablecoinwbtc;
|
|
@@ -34,6 +35,7 @@ export interface COLLATERAL {
|
|
|
34
35
|
fallbackUnderlyingAddress?: string;
|
|
35
36
|
underlyingIds: (keyof typeof TOKEN_DESCRIPTIONS)[];
|
|
36
37
|
addedAt: number;
|
|
38
|
+
platform?: PLATFORM[];
|
|
37
39
|
}
|
|
38
40
|
export interface GAUGE_VALID_COLLATERAL extends COLLATERAL {
|
|
39
41
|
snapshotName: SnapshotCanonicalChoiceName;
|
|
@@ -1654,6 +1656,7 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
1654
1656
|
addedAt: number;
|
|
1655
1657
|
fallbackUnderlyingAddress?: undefined;
|
|
1656
1658
|
deprecated?: undefined;
|
|
1659
|
+
platform?: undefined;
|
|
1657
1660
|
} | {
|
|
1658
1661
|
shortName: "wbtc";
|
|
1659
1662
|
vaultAddress: string;
|
|
@@ -3260,6 +3263,7 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
3260
3263
|
addedAt: number;
|
|
3261
3264
|
fallbackUnderlyingAddress?: undefined;
|
|
3262
3265
|
deprecated?: undefined;
|
|
3266
|
+
platform?: undefined;
|
|
3263
3267
|
} | {
|
|
3264
3268
|
shortName: "stake-dao-crv-eth-steth";
|
|
3265
3269
|
fallbackUnderlyingAddress: string;
|
|
@@ -4865,6 +4869,7 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
4865
4869
|
version: 2;
|
|
4866
4870
|
snapshotName: "StakeDAO Curve ETH/stETH (Eth)";
|
|
4867
4871
|
underlyingIds: ("weth" | "lido-staked-ether")[];
|
|
4872
|
+
platform: ("Curve" | "StakeDAO")[];
|
|
4868
4873
|
addedAt: number;
|
|
4869
4874
|
} | {
|
|
4870
4875
|
shortName: "yvcrv-eth-steth";
|
|
@@ -6470,7 +6475,8 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
6470
6475
|
frontend: FRONTEND.MAI;
|
|
6471
6476
|
version: 2;
|
|
6472
6477
|
snapshotName: "Yearn Curve ETH/stETH (Ethereum)";
|
|
6473
|
-
underlyingIds: ("weth" | "lido-staked-ether")[];
|
|
6478
|
+
underlyingIds: ("weth" | "lido-staked-ether" | "yearn-finance")[];
|
|
6479
|
+
platform: ("Yearn" | "Curve")[];
|
|
6474
6480
|
addedAt: number;
|
|
6475
6481
|
} | {
|
|
6476
6482
|
shortName: "yveth";
|
|
@@ -8075,7 +8081,8 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
8075
8081
|
frontend: FRONTEND.MAI;
|
|
8076
8082
|
version: 2;
|
|
8077
8083
|
snapshotName: "Yearn WETH (Ethereum)";
|
|
8078
|
-
underlyingIds: "weth"[];
|
|
8084
|
+
underlyingIds: ("weth" | "yearn-finance")[];
|
|
8085
|
+
platform: "Yearn"[];
|
|
8079
8086
|
addedAt: number;
|
|
8080
8087
|
deprecated?: undefined;
|
|
8081
8088
|
} | {
|
|
@@ -9682,6 +9689,7 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
9682
9689
|
version: 2;
|
|
9683
9690
|
snapshotName: "Yearn LINK (Ethereum)";
|
|
9684
9691
|
underlyingIds: "chainlink"[];
|
|
9692
|
+
platform: "Yearn"[];
|
|
9685
9693
|
addedAt: number;
|
|
9686
9694
|
deprecated?: undefined;
|
|
9687
9695
|
} | {
|
|
@@ -11287,7 +11295,8 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
11287
11295
|
frontend: FRONTEND.MAI;
|
|
11288
11296
|
version: 2;
|
|
11289
11297
|
snapshotName: "Yearn Curve ETH/stETH (Ethereum)";
|
|
11290
|
-
underlyingIds: ("weth" | "lido-staked-ether")[];
|
|
11298
|
+
underlyingIds: ("weth" | "lido-staked-ether" | "yearn-finance")[];
|
|
11299
|
+
platform: ("Yearn" | "Curve")[];
|
|
11291
11300
|
addedAt: number;
|
|
11292
11301
|
deprecated?: undefined;
|
|
11293
11302
|
} | {
|
|
@@ -12894,6 +12903,7 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
12894
12903
|
version: 2;
|
|
12895
12904
|
snapshotName: "StakeDAO Curve ETH/stETH Perf (Eth)";
|
|
12896
12905
|
underlyingIds: ("weth" | "lido-staked-ether")[];
|
|
12906
|
+
platform: ("Curve" | "StakeDAO")[];
|
|
12897
12907
|
addedAt: number;
|
|
12898
12908
|
deprecated?: undefined;
|
|
12899
12909
|
} | {
|
|
@@ -14500,6 +14510,7 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
14500
14510
|
version: 2;
|
|
14501
14511
|
snapshotName: "Beefy stETH Convex Perf (Eth)";
|
|
14502
14512
|
underlyingIds: ("weth" | "lido-staked-ether")[];
|
|
14513
|
+
platform: ("Lido" | "Beefy" | "Convex")[];
|
|
14503
14514
|
addedAt: number;
|
|
14504
14515
|
deprecated?: undefined;
|
|
14505
14516
|
} | {
|
|
@@ -16106,6 +16117,7 @@ declare const MAINNET_COLLATERALS: ({
|
|
|
16106
16117
|
version: 2;
|
|
16107
16118
|
snapshotName: "Curve (Eth)";
|
|
16108
16119
|
underlyingIds: "curve-finance"[];
|
|
16120
|
+
platform: "Curve"[];
|
|
16109
16121
|
addedAt: number;
|
|
16110
16122
|
deprecated?: undefined;
|
|
16111
16123
|
})[];
|
|
@@ -17314,6 +17326,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
17314
17326
|
underlyingIds: "fantom"[];
|
|
17315
17327
|
addedAt: number;
|
|
17316
17328
|
fallbackUnderlyingAddress?: undefined;
|
|
17329
|
+
platform?: undefined;
|
|
17317
17330
|
deprecated?: undefined;
|
|
17318
17331
|
} | {
|
|
17319
17332
|
shortName: "yvwftm";
|
|
@@ -18513,7 +18526,8 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
18513
18526
|
frontend: FRONTEND.MAI;
|
|
18514
18527
|
version: 1;
|
|
18515
18528
|
snapshotName: "Yearn vault WFTM (Fantom)";
|
|
18516
|
-
underlyingIds: "fantom"[];
|
|
18529
|
+
underlyingIds: ("yearn-finance" | "fantom")[];
|
|
18530
|
+
platform: "Yearn"[];
|
|
18517
18531
|
addedAt: number;
|
|
18518
18532
|
native?: undefined;
|
|
18519
18533
|
deprecated?: undefined;
|
|
@@ -19703,6 +19717,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
19703
19717
|
version: 1;
|
|
19704
19718
|
snapshotName: "Yearn vault BTC (Fantom)";
|
|
19705
19719
|
underlyingIds: "wrapped-bitcoinwbtc"[];
|
|
19720
|
+
platform: "Yearn"[];
|
|
19706
19721
|
addedAt: number;
|
|
19707
19722
|
native?: undefined;
|
|
19708
19723
|
subgraph?: undefined;
|
|
@@ -20881,6 +20896,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
20881
20896
|
version: 1;
|
|
20882
20897
|
snapshotName: "Yearn vault YFI (Fantom)";
|
|
20883
20898
|
underlyingIds: "yearn-finance"[];
|
|
20899
|
+
platform: "Yearn"[];
|
|
20884
20900
|
addedAt: number;
|
|
20885
20901
|
native?: undefined;
|
|
20886
20902
|
subgraph?: undefined;
|
|
@@ -22058,7 +22074,8 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
22058
22074
|
frontend: FRONTEND.MAI;
|
|
22059
22075
|
version: 1;
|
|
22060
22076
|
snapshotName: "Yearn vault ETH (Fantom)";
|
|
22061
|
-
underlyingIds: "weth"[];
|
|
22077
|
+
underlyingIds: ("weth" | "yearn-finance")[];
|
|
22078
|
+
platform: "Yearn"[];
|
|
22062
22079
|
addedAt: number;
|
|
22063
22080
|
native?: undefined;
|
|
22064
22081
|
subgraph?: undefined;
|
|
@@ -23260,7 +23277,8 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
23260
23277
|
subgraph: string;
|
|
23261
23278
|
frontend: FRONTEND.MAI;
|
|
23262
23279
|
version: 1;
|
|
23263
|
-
underlyingIds: "daidai"[];
|
|
23280
|
+
underlyingIds: ("yearn-finance" | "daidai")[];
|
|
23281
|
+
platform: "Yearn"[];
|
|
23264
23282
|
addedAt: number;
|
|
23265
23283
|
native?: undefined;
|
|
23266
23284
|
snapshotName?: undefined;
|
|
@@ -24466,6 +24484,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
24466
24484
|
addedAt: number;
|
|
24467
24485
|
native?: undefined;
|
|
24468
24486
|
fallbackUnderlyingAddress?: undefined;
|
|
24487
|
+
platform?: undefined;
|
|
24469
24488
|
deprecated?: undefined;
|
|
24470
24489
|
} | {
|
|
24471
24490
|
shortName: "aave";
|
|
@@ -25668,6 +25687,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
25668
25687
|
native?: undefined;
|
|
25669
25688
|
subgraph?: undefined;
|
|
25670
25689
|
fallbackUnderlyingAddress?: undefined;
|
|
25690
|
+
platform?: undefined;
|
|
25671
25691
|
deprecated?: undefined;
|
|
25672
25692
|
} | {
|
|
25673
25693
|
shortName: "sushi";
|
|
@@ -26870,6 +26890,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
26870
26890
|
native?: undefined;
|
|
26871
26891
|
subgraph?: undefined;
|
|
26872
26892
|
fallbackUnderlyingAddress?: undefined;
|
|
26893
|
+
platform?: undefined;
|
|
26873
26894
|
deprecated?: undefined;
|
|
26874
26895
|
} | {
|
|
26875
26896
|
shortName: "link";
|
|
@@ -28072,6 +28093,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
28072
28093
|
native?: undefined;
|
|
28073
28094
|
subgraph?: undefined;
|
|
28074
28095
|
fallbackUnderlyingAddress?: undefined;
|
|
28096
|
+
platform?: undefined;
|
|
28075
28097
|
deprecated?: undefined;
|
|
28076
28098
|
} | {
|
|
28077
28099
|
shortName: "btc";
|
|
@@ -29262,6 +29284,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
29262
29284
|
native?: undefined;
|
|
29263
29285
|
subgraph?: undefined;
|
|
29264
29286
|
fallbackUnderlyingAddress?: undefined;
|
|
29287
|
+
platform?: undefined;
|
|
29265
29288
|
deprecated?: undefined;
|
|
29266
29289
|
} | {
|
|
29267
29290
|
shortName: "beefy-scream-wbtc";
|
|
@@ -30465,6 +30488,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
30465
30488
|
native?: undefined;
|
|
30466
30489
|
subgraph?: undefined;
|
|
30467
30490
|
snapshotName?: undefined;
|
|
30491
|
+
platform?: undefined;
|
|
30468
30492
|
} | {
|
|
30469
30493
|
shortName: "beefy-scream-dai";
|
|
30470
30494
|
vaultAddress: string;
|
|
@@ -31667,6 +31691,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
31667
31691
|
native?: undefined;
|
|
31668
31692
|
subgraph?: undefined;
|
|
31669
31693
|
snapshotName?: undefined;
|
|
31694
|
+
platform?: undefined;
|
|
31670
31695
|
} | {
|
|
31671
31696
|
shortName: "beefy-scream-eth";
|
|
31672
31697
|
vaultAddress: string;
|
|
@@ -32869,6 +32894,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
32869
32894
|
native?: undefined;
|
|
32870
32895
|
subgraph?: undefined;
|
|
32871
32896
|
snapshotName?: undefined;
|
|
32897
|
+
platform?: undefined;
|
|
32872
32898
|
} | {
|
|
32873
32899
|
shortName: "beefy-scream-ftm";
|
|
32874
32900
|
vaultAddress: string;
|
|
@@ -34071,6 +34097,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
34071
34097
|
native?: undefined;
|
|
34072
34098
|
subgraph?: undefined;
|
|
34073
34099
|
snapshotName?: undefined;
|
|
34100
|
+
platform?: undefined;
|
|
34074
34101
|
} | {
|
|
34075
34102
|
shortName: "beefy-scream-link";
|
|
34076
34103
|
vaultAddress: string;
|
|
@@ -35273,6 +35300,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
35273
35300
|
native?: undefined;
|
|
35274
35301
|
subgraph?: undefined;
|
|
35275
35302
|
snapshotName?: undefined;
|
|
35303
|
+
platform?: undefined;
|
|
35276
35304
|
} | {
|
|
35277
35305
|
shortName: "beefy-spooky-btc-ftm";
|
|
35278
35306
|
vaultAddress: string;
|
|
@@ -36475,6 +36503,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
36475
36503
|
subgraph?: undefined;
|
|
36476
36504
|
snapshotName?: undefined;
|
|
36477
36505
|
fallbackUnderlyingAddress?: undefined;
|
|
36506
|
+
platform?: undefined;
|
|
36478
36507
|
} | {
|
|
36479
36508
|
shortName: "beefy-spooky-eth-ftm";
|
|
36480
36509
|
vaultAddress: string;
|
|
@@ -37677,6 +37706,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
37677
37706
|
subgraph?: undefined;
|
|
37678
37707
|
snapshotName?: undefined;
|
|
37679
37708
|
fallbackUnderlyingAddress?: undefined;
|
|
37709
|
+
platform?: undefined;
|
|
37680
37710
|
} | {
|
|
37681
37711
|
shortName: "beefy-bifi";
|
|
37682
37712
|
vaultAddress: string;
|
|
@@ -38875,6 +38905,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
38875
38905
|
version: 1;
|
|
38876
38906
|
snapshotName: "mooBIFI (Fantom)";
|
|
38877
38907
|
underlyingIds: "beefy-finance"[];
|
|
38908
|
+
platform: "Beefy"[];
|
|
38878
38909
|
addedAt: number;
|
|
38879
38910
|
native?: undefined;
|
|
38880
38911
|
subgraph?: undefined;
|
|
@@ -40483,6 +40514,7 @@ declare const FANTOM_COLLATERALS: ({
|
|
|
40483
40514
|
version: 2;
|
|
40484
40515
|
snapshotName: "xBOO (Fantom)";
|
|
40485
40516
|
underlyingIds: "spookyswap"[];
|
|
40517
|
+
platform: "Spookyswap"[];
|
|
40486
40518
|
addedAt: number;
|
|
40487
40519
|
native?: undefined;
|
|
40488
40520
|
subgraph?: undefined;
|
|
@@ -41686,6 +41718,7 @@ declare const AVALANCHE_COLLATERALS: ({
|
|
|
41686
41718
|
version: 1;
|
|
41687
41719
|
snapshotName: "Beefy Aave AVAX (Avalanche)";
|
|
41688
41720
|
underlyingIds: "avalanche"[];
|
|
41721
|
+
platform: ("Beefy" | "AaveV2")[];
|
|
41689
41722
|
addedAt: number;
|
|
41690
41723
|
} | {
|
|
41691
41724
|
shortName: "sdav3crv";
|
|
@@ -42871,6 +42904,7 @@ declare const AVALANCHE_COLLATERALS: ({
|
|
|
42871
42904
|
frontend: FRONTEND.MAI;
|
|
42872
42905
|
version: 1;
|
|
42873
42906
|
underlyingIds: ("daidai" | "stake-dao-crv" | "tether" | "usd-coin")[];
|
|
42907
|
+
platform: ("Curve" | "StakeDAO")[];
|
|
42874
42908
|
addedAt: number;
|
|
42875
42909
|
fallbackUnderlyingAddress?: undefined;
|
|
42876
42910
|
snapshotName?: undefined;
|
|
@@ -44061,6 +44095,7 @@ declare const AVALANCHE_COLLATERALS: ({
|
|
|
44061
44095
|
underlyingIds: "wrapped-bitcoinwbtc"[];
|
|
44062
44096
|
addedAt: number;
|
|
44063
44097
|
fallbackUnderlyingAddress?: undefined;
|
|
44098
|
+
platform?: undefined;
|
|
44064
44099
|
} | {
|
|
44065
44100
|
shortName: "avaxweth";
|
|
44066
44101
|
vaultAddress: string;
|
|
@@ -45236,6 +45271,7 @@ declare const AVALANCHE_COLLATERALS: ({
|
|
|
45236
45271
|
underlyingIds: "weth"[];
|
|
45237
45272
|
addedAt: number;
|
|
45238
45273
|
fallbackUnderlyingAddress?: undefined;
|
|
45274
|
+
platform?: undefined;
|
|
45239
45275
|
} | {
|
|
45240
45276
|
shortName: "avax";
|
|
45241
45277
|
vaultAddress: string;
|
|
@@ -46411,6 +46447,7 @@ declare const AVALANCHE_COLLATERALS: ({
|
|
|
46411
46447
|
underlyingIds: "avalanche"[];
|
|
46412
46448
|
addedAt: number;
|
|
46413
46449
|
fallbackUnderlyingAddress?: undefined;
|
|
46450
|
+
platform?: undefined;
|
|
46414
46451
|
})[];
|
|
46415
46452
|
declare const ARBITRUM_COLLATERALS: ({
|
|
46416
46453
|
shortName: "weth-old";
|
|
@@ -47616,6 +47653,7 @@ declare const ARBITRUM_COLLATERALS: ({
|
|
|
47616
47653
|
addedAt: number;
|
|
47617
47654
|
snapshotName?: undefined;
|
|
47618
47655
|
fallbackUnderlyingAddress?: undefined;
|
|
47656
|
+
platform?: undefined;
|
|
47619
47657
|
} | {
|
|
47620
47658
|
shortName: "weth";
|
|
47621
47659
|
vaultAddress: string;
|
|
@@ -48792,6 +48830,7 @@ declare const ARBITRUM_COLLATERALS: ({
|
|
|
48792
48830
|
addedAt: number;
|
|
48793
48831
|
deprecated?: undefined;
|
|
48794
48832
|
fallbackUnderlyingAddress?: undefined;
|
|
48833
|
+
platform?: undefined;
|
|
48795
48834
|
} | {
|
|
48796
48835
|
shortName: "wbtc";
|
|
48797
48836
|
vaultAddress: string;
|
|
@@ -49980,6 +50019,7 @@ declare const ARBITRUM_COLLATERALS: ({
|
|
|
49980
50019
|
addedAt: number;
|
|
49981
50020
|
deprecated?: undefined;
|
|
49982
50021
|
fallbackUnderlyingAddress?: undefined;
|
|
50022
|
+
platform?: undefined;
|
|
49983
50023
|
} | {
|
|
49984
50024
|
shortName: "gdai";
|
|
49985
50025
|
connect: typeof StableQiVault__factory.connect;
|
|
@@ -51583,6 +51623,7 @@ declare const ARBITRUM_COLLATERALS: ({
|
|
|
51583
51623
|
version: 2;
|
|
51584
51624
|
fallbackUnderlyingAddress: string;
|
|
51585
51625
|
underlyingIds: ("daidai" | "gns")[];
|
|
51626
|
+
platform: "Gains"[];
|
|
51586
51627
|
addedAt: number;
|
|
51587
51628
|
deprecated?: undefined;
|
|
51588
51629
|
snapshotName?: undefined;
|
|
@@ -53192,6 +53233,7 @@ declare const ARBITRUM_COLLATERALS: ({
|
|
|
53192
53233
|
deprecated?: undefined;
|
|
53193
53234
|
snapshotName?: undefined;
|
|
53194
53235
|
fallbackUnderlyingAddress?: undefined;
|
|
53236
|
+
platform?: undefined;
|
|
53195
53237
|
} | {
|
|
53196
53238
|
shortName: "beefy-eth-steth-crv";
|
|
53197
53239
|
vaultAddress: string;
|
|
@@ -54796,6 +54838,7 @@ declare const ARBITRUM_COLLATERALS: ({
|
|
|
54796
54838
|
version: 2;
|
|
54797
54839
|
snapshotName: "Beefy stETH Curve (Arbitrum)";
|
|
54798
54840
|
underlyingIds: ("weth" | "wrapped-steth")[];
|
|
54841
|
+
platform: ("Lido" | "Beefy" | "Curve")[];
|
|
54799
54842
|
addedAt: number;
|
|
54800
54843
|
deprecated?: undefined;
|
|
54801
54844
|
} | {
|
|
@@ -56404,6 +56447,7 @@ declare const ARBITRUM_COLLATERALS: ({
|
|
|
56404
56447
|
underlyingIds: "arbitrum"[];
|
|
56405
56448
|
addedAt: number;
|
|
56406
56449
|
deprecated?: undefined;
|
|
56450
|
+
platform?: undefined;
|
|
56407
56451
|
})[];
|
|
56408
56452
|
declare const OPTIMISM_COLLATERALS: ({
|
|
56409
56453
|
shortName: "weth";
|
|
@@ -57580,6 +57624,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
57580
57624
|
underlyingIds: "weth"[];
|
|
57581
57625
|
addedAt: number;
|
|
57582
57626
|
fallbackUnderlyingAddress?: undefined;
|
|
57627
|
+
platform?: undefined;
|
|
57583
57628
|
} | {
|
|
57584
57629
|
shortName: "wbtc";
|
|
57585
57630
|
vaultAddress: string;
|
|
@@ -58767,6 +58812,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
58767
58812
|
underlyingIds: "wrapped-bitcoinwbtc"[];
|
|
58768
58813
|
addedAt: number;
|
|
58769
58814
|
fallbackUnderlyingAddress?: undefined;
|
|
58815
|
+
platform?: undefined;
|
|
58770
58816
|
} | {
|
|
58771
58817
|
shortName: "op";
|
|
58772
58818
|
vaultAddress: string;
|
|
@@ -60372,6 +60418,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
60372
60418
|
underlyingIds: "optimism"[];
|
|
60373
60419
|
addedAt: number;
|
|
60374
60420
|
fallbackUnderlyingAddress?: undefined;
|
|
60421
|
+
platform?: undefined;
|
|
60375
60422
|
} | {
|
|
60376
60423
|
shortName: "beefy-aave-dai";
|
|
60377
60424
|
vaultAddress: string;
|
|
@@ -61975,6 +62022,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
61975
62022
|
frontend: FRONTEND.MAI;
|
|
61976
62023
|
version: 2;
|
|
61977
62024
|
underlyingIds: "daidai"[];
|
|
62025
|
+
platform: ("Beefy" | "AaveV3")[];
|
|
61978
62026
|
addedAt: number;
|
|
61979
62027
|
snapshotName?: undefined;
|
|
61980
62028
|
} | {
|
|
@@ -63581,6 +63629,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
63581
63629
|
version: 2;
|
|
63582
63630
|
snapshotName: "Beefy Aave ETH (Optimism)";
|
|
63583
63631
|
underlyingIds: "weth"[];
|
|
63632
|
+
platform: ("Beefy" | "AaveV3")[];
|
|
63584
63633
|
addedAt: number;
|
|
63585
63634
|
} | {
|
|
63586
63635
|
shortName: "beefy-aave-wbtc";
|
|
@@ -65186,6 +65235,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
65186
65235
|
version: 2;
|
|
65187
65236
|
snapshotName: "Beefy Aave BTC (Optimism)";
|
|
65188
65237
|
underlyingIds: "wrapped-bitcoinwbtc"[];
|
|
65238
|
+
platform: ("Beefy" | "AaveV3")[];
|
|
65189
65239
|
addedAt: number;
|
|
65190
65240
|
} | {
|
|
65191
65241
|
shortName: "wsteth";
|
|
@@ -66791,6 +66841,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
66791
66841
|
version: 2;
|
|
66792
66842
|
snapshotName: "Wrapped Staked ETH (Optimism)";
|
|
66793
66843
|
underlyingIds: "wrapped-steth"[];
|
|
66844
|
+
platform: "Lido"[];
|
|
66794
66845
|
addedAt: number;
|
|
66795
66846
|
} | {
|
|
66796
66847
|
shortName: "yvweth";
|
|
@@ -68396,6 +68447,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
68396
68447
|
version: 2;
|
|
68397
68448
|
snapshotName: "Yearn vault ETH (Optimism)";
|
|
68398
68449
|
underlyingIds: "weth"[];
|
|
68450
|
+
platform: "Yearn"[];
|
|
68399
68451
|
addedAt: number;
|
|
68400
68452
|
} | {
|
|
68401
68453
|
shortName: "beefy-eth-steth-crv";
|
|
@@ -70001,6 +70053,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
70001
70053
|
version: 2;
|
|
70002
70054
|
snapshotName: "Beefy stETH Curve (Optimism)";
|
|
70003
70055
|
underlyingIds: ("weth" | "wrapped-steth")[];
|
|
70056
|
+
platform: ("Lido" | "Beefy" | "Curve")[];
|
|
70004
70057
|
addedAt: number;
|
|
70005
70058
|
} | {
|
|
70006
70059
|
shortName: "knc";
|
|
@@ -71607,6 +71660,7 @@ declare const OPTIMISM_COLLATERALS: ({
|
|
|
71607
71660
|
addedAt: number;
|
|
71608
71661
|
snapshotName?: undefined;
|
|
71609
71662
|
fallbackUnderlyingAddress?: undefined;
|
|
71663
|
+
platform?: undefined;
|
|
71610
71664
|
})[];
|
|
71611
71665
|
declare const MOONRIVER_COLLATERALS: ({
|
|
71612
71666
|
shortName: "eth";
|
|
@@ -85593,7 +85647,7 @@ declare const BSC_COLLATERALS: ({
|
|
|
85593
85647
|
frontend: FRONTEND.MAI;
|
|
85594
85648
|
version: 1;
|
|
85595
85649
|
snapshotName: "BNB (BNB)";
|
|
85596
|
-
underlyingIds: "
|
|
85650
|
+
underlyingIds: "wrapped-bnb"[];
|
|
85597
85651
|
addedAt: number;
|
|
85598
85652
|
} | {
|
|
85599
85653
|
shortName: "cake";
|
|
@@ -91505,11 +91559,12 @@ declare const MATIC_COLLATERALS: ({
|
|
|
91505
91559
|
connect: typeof QiStablecoin__factory.connect;
|
|
91506
91560
|
frontend: FRONTEND.MAI;
|
|
91507
91561
|
version: 1;
|
|
91508
|
-
underlyingIds: "
|
|
91562
|
+
underlyingIds: "wrapped-matic"[];
|
|
91509
91563
|
addedAt: number;
|
|
91510
91564
|
fallbackUnderlyingAddress?: undefined;
|
|
91511
91565
|
aaveId?: undefined;
|
|
91512
91566
|
snapshotName?: undefined;
|
|
91567
|
+
platform?: undefined;
|
|
91513
91568
|
disabled?: undefined;
|
|
91514
91569
|
} | {
|
|
91515
91570
|
shortName: "camwmatic";
|
|
@@ -92666,7 +92721,8 @@ declare const MATIC_COLLATERALS: ({
|
|
|
92666
92721
|
frontend: FRONTEND.MAI;
|
|
92667
92722
|
version: 1;
|
|
92668
92723
|
snapshotName: "Compounding Aave MATIC (Polygon)";
|
|
92669
|
-
underlyingIds: "
|
|
92724
|
+
underlyingIds: "wrapped-matic"[];
|
|
92725
|
+
platform: "AaveV2"[];
|
|
92670
92726
|
addedAt: number;
|
|
92671
92727
|
deprecated?: undefined;
|
|
92672
92728
|
disabled?: undefined;
|
|
@@ -93828,6 +93884,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
93828
93884
|
deprecated?: undefined;
|
|
93829
93885
|
fallbackUnderlyingAddress?: undefined;
|
|
93830
93886
|
aaveId?: undefined;
|
|
93887
|
+
platform?: undefined;
|
|
93831
93888
|
disabled?: undefined;
|
|
93832
93889
|
} | {
|
|
93833
93890
|
shortName: "camweth";
|
|
@@ -94985,6 +95042,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
94985
95042
|
version: 1;
|
|
94986
95043
|
snapshotName: "Compounding Aave ETH (Polygon)";
|
|
94987
95044
|
underlyingIds: "weth"[];
|
|
95045
|
+
platform: "AaveV2"[];
|
|
94988
95046
|
addedAt: number;
|
|
94989
95047
|
deprecated?: undefined;
|
|
94990
95048
|
disabled?: undefined;
|
|
@@ -96144,6 +96202,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
96144
96202
|
version: 1;
|
|
96145
96203
|
snapshotName: "Compounding Aave AAVE (Polygon)";
|
|
96146
96204
|
underlyingIds: "aave"[];
|
|
96205
|
+
platform: "AaveV2"[];
|
|
96147
96206
|
addedAt: number;
|
|
96148
96207
|
deprecated?: undefined;
|
|
96149
96208
|
disabled?: undefined;
|
|
@@ -97301,6 +97360,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
97301
97360
|
version: 1;
|
|
97302
97361
|
snapshotName: "AAVE (Polygon)";
|
|
97303
97362
|
underlyingIds: "aave"[];
|
|
97363
|
+
platform: "AaveV2"[];
|
|
97304
97364
|
addedAt: number;
|
|
97305
97365
|
deprecated?: undefined;
|
|
97306
97366
|
fallbackUnderlyingAddress?: undefined;
|
|
@@ -98464,6 +98524,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
98464
98524
|
deprecated?: undefined;
|
|
98465
98525
|
fallbackUnderlyingAddress?: undefined;
|
|
98466
98526
|
aaveId?: undefined;
|
|
98527
|
+
platform?: undefined;
|
|
98467
98528
|
disabled?: undefined;
|
|
98468
98529
|
} | {
|
|
98469
98530
|
shortName: "crv";
|
|
@@ -99623,6 +99684,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
99623
99684
|
deprecated?: undefined;
|
|
99624
99685
|
fallbackUnderlyingAddress?: undefined;
|
|
99625
99686
|
aaveId?: undefined;
|
|
99687
|
+
platform?: undefined;
|
|
99626
99688
|
disabled?: undefined;
|
|
99627
99689
|
} | {
|
|
99628
99690
|
shortName: "wbtc";
|
|
@@ -100850,6 +100912,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
100850
100912
|
deprecated?: undefined;
|
|
100851
100913
|
fallbackUnderlyingAddress?: undefined;
|
|
100852
100914
|
aaveId?: undefined;
|
|
100915
|
+
platform?: undefined;
|
|
100853
100916
|
disabled?: undefined;
|
|
100854
100917
|
} | {
|
|
100855
100918
|
shortName: "camwbtc";
|
|
@@ -102063,6 +102126,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
102063
102126
|
version: 1;
|
|
102064
102127
|
snapshotName: "Compounding Aave WBTC (Polygon)";
|
|
102065
102128
|
underlyingIds: "wrapped-bitcoinwbtc"[];
|
|
102129
|
+
platform: "AaveV2"[];
|
|
102066
102130
|
addedAt: number;
|
|
102067
102131
|
deprecated?: undefined;
|
|
102068
102132
|
disabled?: undefined;
|
|
@@ -103224,6 +103288,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
103224
103288
|
fallbackUnderlyingAddress?: undefined;
|
|
103225
103289
|
aaveId?: undefined;
|
|
103226
103290
|
snapshotName?: undefined;
|
|
103291
|
+
platform?: undefined;
|
|
103227
103292
|
disabled?: undefined;
|
|
103228
103293
|
} | {
|
|
103229
103294
|
shortName: "dquick-old";
|
|
@@ -104383,6 +104448,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
104383
104448
|
fallbackUnderlyingAddress?: undefined;
|
|
104384
104449
|
aaveId?: undefined;
|
|
104385
104450
|
snapshotName?: undefined;
|
|
104451
|
+
platform?: undefined;
|
|
104386
104452
|
disabled?: undefined;
|
|
104387
104453
|
} | {
|
|
104388
104454
|
shortName: "bal";
|
|
@@ -105542,6 +105608,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
105542
105608
|
deprecated?: undefined;
|
|
105543
105609
|
fallbackUnderlyingAddress?: undefined;
|
|
105544
105610
|
aaveId?: undefined;
|
|
105611
|
+
platform?: undefined;
|
|
105545
105612
|
disabled?: undefined;
|
|
105546
105613
|
} | {
|
|
105547
105614
|
shortName: "dquick";
|
|
@@ -106695,7 +106762,8 @@ declare const MATIC_COLLATERALS: ({
|
|
|
106695
106762
|
minimumCDR: number;
|
|
106696
106763
|
frontend: FRONTEND.MAI;
|
|
106697
106764
|
version: 1;
|
|
106698
|
-
underlyingIds: "quickswap"[];
|
|
106765
|
+
underlyingIds: ("quickswap" | "dragon-s-quick")[];
|
|
106766
|
+
platform: "QuickSwap"[];
|
|
106699
106767
|
addedAt: number;
|
|
106700
106768
|
deprecated?: undefined;
|
|
106701
106769
|
fallbackUnderlyingAddress?: undefined;
|
|
@@ -107860,6 +107928,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
107860
107928
|
deprecated?: undefined;
|
|
107861
107929
|
fallbackUnderlyingAddress?: undefined;
|
|
107862
107930
|
aaveId?: undefined;
|
|
107931
|
+
platform?: undefined;
|
|
107863
107932
|
disabled?: undefined;
|
|
107864
107933
|
} | {
|
|
107865
107934
|
shortName: "camdai";
|
|
@@ -109060,6 +109129,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
109060
109129
|
frontend: FRONTEND.MAI;
|
|
109061
109130
|
version: 1;
|
|
109062
109131
|
underlyingIds: "daidai"[];
|
|
109132
|
+
platform: "AaveV2"[];
|
|
109063
109133
|
addedAt: number;
|
|
109064
109134
|
deprecated?: undefined;
|
|
109065
109135
|
snapshotName?: undefined;
|
|
@@ -110200,6 +110270,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
110200
110270
|
frontend: FRONTEND.MAI;
|
|
110201
110271
|
version: 1;
|
|
110202
110272
|
underlyingIds: ("daidai" | "stake-dao-crv" | "tether" | "usd-coin")[];
|
|
110273
|
+
platform: ("Curve" | "StakeDAO")[];
|
|
110203
110274
|
addedAt: number;
|
|
110204
110275
|
subgraph?: undefined;
|
|
110205
110276
|
deprecated?: undefined;
|
|
@@ -111409,6 +111480,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
111409
111480
|
deprecated?: undefined;
|
|
111410
111481
|
fallbackUnderlyingAddress?: undefined;
|
|
111411
111482
|
aaveId?: undefined;
|
|
111483
|
+
platform?: undefined;
|
|
111412
111484
|
disabled?: undefined;
|
|
111413
111485
|
} | {
|
|
111414
111486
|
shortName: "cxeth";
|
|
@@ -112589,6 +112661,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
112589
112661
|
fallbackUnderlyingAddress?: undefined;
|
|
112590
112662
|
aaveId?: undefined;
|
|
112591
112663
|
snapshotName?: undefined;
|
|
112664
|
+
platform?: undefined;
|
|
112592
112665
|
} | {
|
|
112593
112666
|
shortName: "cxada";
|
|
112594
112667
|
vaultAddress: string;
|
|
@@ -113768,6 +113841,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
113768
113841
|
fallbackUnderlyingAddress?: undefined;
|
|
113769
113842
|
aaveId?: undefined;
|
|
113770
113843
|
snapshotName?: undefined;
|
|
113844
|
+
platform?: undefined;
|
|
113771
113845
|
} | {
|
|
113772
113846
|
shortName: "cxdoge";
|
|
113773
113847
|
vaultAddress: string;
|
|
@@ -114947,6 +115021,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
114947
115021
|
fallbackUnderlyingAddress?: undefined;
|
|
114948
115022
|
aaveId?: undefined;
|
|
114949
115023
|
snapshotName?: undefined;
|
|
115024
|
+
platform?: undefined;
|
|
114950
115025
|
} | {
|
|
114951
115026
|
shortName: "vghst";
|
|
114952
115027
|
vaultAddress: string;
|
|
@@ -116122,6 +116197,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
116122
116197
|
snapshotName: "vGHST (Polygon)";
|
|
116123
116198
|
underlyingIds: "aavegotchi"[];
|
|
116124
116199
|
addedAt: number;
|
|
116200
|
+
platform: "GotchiVault"[];
|
|
116125
116201
|
subgraph?: undefined;
|
|
116126
116202
|
deprecated?: undefined;
|
|
116127
116203
|
aaveId?: undefined;
|
|
@@ -117268,6 +117344,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
117268
117344
|
fallbackUnderlyingAddress?: undefined;
|
|
117269
117345
|
aaveId?: undefined;
|
|
117270
117346
|
snapshotName?: undefined;
|
|
117347
|
+
platform?: undefined;
|
|
117271
117348
|
disabled?: undefined;
|
|
117272
117349
|
} | {
|
|
117273
117350
|
shortName: "sand";
|
|
@@ -118447,6 +118524,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
118447
118524
|
deprecated?: undefined;
|
|
118448
118525
|
fallbackUnderlyingAddress?: undefined;
|
|
118449
118526
|
aaveId?: undefined;
|
|
118527
|
+
platform?: undefined;
|
|
118450
118528
|
disabled?: undefined;
|
|
118451
118529
|
} | {
|
|
118452
118530
|
shortName: "wmatic";
|
|
@@ -119620,12 +119698,13 @@ declare const MATIC_COLLATERALS: ({
|
|
|
119620
119698
|
frontend: FRONTEND.MAI;
|
|
119621
119699
|
version: 1;
|
|
119622
119700
|
snapshotName: "Wrapped MATIC (Polygon)";
|
|
119623
|
-
underlyingIds: "
|
|
119701
|
+
underlyingIds: "wrapped-matic"[];
|
|
119624
119702
|
addedAt: number;
|
|
119625
119703
|
subgraph?: undefined;
|
|
119626
119704
|
deprecated?: undefined;
|
|
119627
119705
|
fallbackUnderlyingAddress?: undefined;
|
|
119628
119706
|
aaveId?: undefined;
|
|
119707
|
+
platform?: undefined;
|
|
119629
119708
|
disabled?: undefined;
|
|
119630
119709
|
} | {
|
|
119631
119710
|
shortName: "xxdai";
|
|
@@ -121230,6 +121309,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
121230
121309
|
frontend: FRONTEND.MAI;
|
|
121231
121310
|
version: 2;
|
|
121232
121311
|
underlyingIds: "daidai"[];
|
|
121312
|
+
platform: "Tetu"[];
|
|
121233
121313
|
addedAt: number;
|
|
121234
121314
|
subgraph?: undefined;
|
|
121235
121315
|
deprecated?: undefined;
|
|
@@ -122840,6 +122920,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
122840
122920
|
version: 2;
|
|
122841
122921
|
snapshotName: "xxLINK (Polygon)";
|
|
122842
122922
|
underlyingIds: "chainlink"[];
|
|
122923
|
+
platform: "Tetu"[];
|
|
122843
122924
|
addedAt: number;
|
|
122844
122925
|
subgraph?: undefined;
|
|
122845
122926
|
deprecated?: undefined;
|
|
@@ -124453,6 +124534,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
124453
124534
|
deprecated?: undefined;
|
|
124454
124535
|
fallbackUnderlyingAddress?: undefined;
|
|
124455
124536
|
aaveId?: undefined;
|
|
124537
|
+
platform?: undefined;
|
|
124456
124538
|
disabled?: undefined;
|
|
124457
124539
|
} | {
|
|
124458
124540
|
shortName: "maidai";
|
|
@@ -126057,6 +126139,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
126057
126139
|
fallbackUnderlyingAddress: string;
|
|
126058
126140
|
version: 2;
|
|
126059
126141
|
underlyingIds: ("daidai" | "mai-finance")[];
|
|
126142
|
+
platform: "Arrakis"[];
|
|
126060
126143
|
addedAt: number;
|
|
126061
126144
|
subgraph?: undefined;
|
|
126062
126145
|
deprecated?: undefined;
|
|
@@ -127664,13 +127747,14 @@ declare const MATIC_COLLATERALS: ({
|
|
|
127664
127747
|
readonly type: "function";
|
|
127665
127748
|
}];
|
|
127666
127749
|
version: 2;
|
|
127667
|
-
underlyingIds: "
|
|
127750
|
+
underlyingIds: "wrapped-matic"[];
|
|
127668
127751
|
addedAt: number;
|
|
127669
127752
|
subgraph?: undefined;
|
|
127670
127753
|
deprecated?: undefined;
|
|
127671
127754
|
fallbackUnderlyingAddress?: undefined;
|
|
127672
127755
|
aaveId?: undefined;
|
|
127673
127756
|
snapshotName?: undefined;
|
|
127757
|
+
platform?: undefined;
|
|
127674
127758
|
disabled?: undefined;
|
|
127675
127759
|
} | {
|
|
127676
127760
|
shortName: "STMMVT";
|
|
@@ -129274,6 +129358,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
129274
129358
|
}];
|
|
129275
129359
|
version: 2;
|
|
129276
129360
|
underlyingIds: "lido-staked-matic"[];
|
|
129361
|
+
platform: "Lido"[];
|
|
129277
129362
|
addedAt: number;
|
|
129278
129363
|
subgraph?: undefined;
|
|
129279
129364
|
deprecated?: undefined;
|
|
@@ -130883,6 +130968,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
130883
130968
|
}];
|
|
130884
130969
|
version: 2;
|
|
130885
130970
|
underlyingIds: "lido-staked-matic"[];
|
|
130971
|
+
platform: "Lido"[];
|
|
130886
130972
|
addedAt: number;
|
|
130887
130973
|
subgraph?: undefined;
|
|
130888
130974
|
deprecated?: undefined;
|
|
@@ -132493,6 +132579,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
132493
132579
|
version: 2;
|
|
132494
132580
|
fallbackUnderlyingAddress: string;
|
|
132495
132581
|
underlyingIds: ("daidai" | "gns")[];
|
|
132582
|
+
platform: "Gains"[];
|
|
132496
132583
|
addedAt: number;
|
|
132497
132584
|
subgraph?: undefined;
|
|
132498
132585
|
deprecated?: undefined;
|
|
@@ -134100,7 +134187,8 @@ declare const MATIC_COLLATERALS: ({
|
|
|
134100
134187
|
readonly type: "function";
|
|
134101
134188
|
}];
|
|
134102
134189
|
version: 2;
|
|
134103
|
-
underlyingIds: "
|
|
134190
|
+
underlyingIds: "stader-maticx"[];
|
|
134191
|
+
platform: "Stader"[];
|
|
134104
134192
|
addedAt: number;
|
|
134105
134193
|
subgraph?: undefined;
|
|
134106
134194
|
deprecated?: undefined;
|
|
@@ -135712,6 +135800,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
135712
135800
|
version: 2;
|
|
135713
135801
|
snapshotName: "Wrapped Staked ETH (Optimism)";
|
|
135714
135802
|
underlyingIds: "wrapped-steth"[];
|
|
135803
|
+
platform: "Lido"[];
|
|
135715
135804
|
addedAt: number;
|
|
135716
135805
|
subgraph?: undefined;
|
|
135717
135806
|
deprecated?: undefined;
|
|
@@ -137325,6 +137414,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
137325
137414
|
deprecated?: undefined;
|
|
137326
137415
|
fallbackUnderlyingAddress?: undefined;
|
|
137327
137416
|
aaveId?: undefined;
|
|
137417
|
+
platform?: undefined;
|
|
137328
137418
|
disabled?: undefined;
|
|
137329
137419
|
} | {
|
|
137330
137420
|
shortName: "weth-i";
|
|
@@ -138934,6 +139024,7 @@ declare const MATIC_COLLATERALS: ({
|
|
|
138934
139024
|
deprecated?: undefined;
|
|
138935
139025
|
fallbackUnderlyingAddress?: undefined;
|
|
138936
139026
|
aaveId?: undefined;
|
|
139027
|
+
platform?: undefined;
|
|
138937
139028
|
disabled?: undefined;
|
|
138938
139029
|
})[];
|
|
138939
139030
|
declare const METIS_COLLATERALS: ({
|