@merkl/api 1.7.0 → 1.7.1
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/src/eden/index.d.ts +9 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/default/metadata.d.ts +1 -0
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/default/metadata.js.map +1 -1
- package/dist/src/engine/implementations/StakingVaults/HydrexGauge/metadata.d.ts +25 -0
- package/dist/src/engine/implementations/StakingVaults/HydrexGauge/metadata.js.map +1 -0
- package/dist/src/engine/implementations/StakingVaults/HydrexGauge/tvl.d.ts +8 -0
- package/dist/src/engine/implementations/StakingVaults/HydrexGauge/tvl.js.map +1 -0
- package/dist/src/engine/metadata/factory.js.map +1 -1
- package/dist/src/engine/tvl/factory.js.map +1 -1
- package/dist/src/index.d.ts +9 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +15 -15
- package/dist/src/modules/v4/creator/creator.controller.d.ts +2 -0
- package/dist/src/modules/v4/creator/creator.model.d.ts +1 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +7 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +1 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.repository.js.map +1 -1
- package/dist/src/modules/v4/programPayload/subPayloads/ethena.d.ts +32 -32
- package/dist/src/modules/v4/router.d.ts +9 -0
- package/dist/src/utils/getAPR.d.ts +380 -380
- package/dist/src/utils/parseDistributionType.d.ts +1118 -1118
- package/package.json +1 -1
|
@@ -298,6 +298,81 @@ export declare const getAPR: (params: {
|
|
|
298
298
|
callDataKey?: string | undefined;
|
|
299
299
|
}))[];
|
|
300
300
|
} & ({
|
|
301
|
+
targetToken: string;
|
|
302
|
+
decimalsTargetToken: number;
|
|
303
|
+
symbolTargetToken: string;
|
|
304
|
+
underlyingToken: string;
|
|
305
|
+
decimalsUnderlyingToken: number;
|
|
306
|
+
symbolUnderlyingToken: string;
|
|
307
|
+
} | {
|
|
308
|
+
targetToken: string;
|
|
309
|
+
decimalsTargetToken: number;
|
|
310
|
+
symbolTargetToken: string;
|
|
311
|
+
underlyingToken: string;
|
|
312
|
+
decimalsUnderlyingToken: number;
|
|
313
|
+
symbolUnderlyingToken: string;
|
|
314
|
+
} | {
|
|
315
|
+
whitelist: string[];
|
|
316
|
+
blacklist: string[];
|
|
317
|
+
isOutOfRangeIncentivized: boolean;
|
|
318
|
+
weightFees: number;
|
|
319
|
+
weightToken0: number;
|
|
320
|
+
weightToken1: number;
|
|
321
|
+
poolId: string;
|
|
322
|
+
poolManager: string;
|
|
323
|
+
lpFee: number;
|
|
324
|
+
currency0: string;
|
|
325
|
+
currency1: string;
|
|
326
|
+
decimalsCurrency0: number;
|
|
327
|
+
decimalsCurrency1: number;
|
|
328
|
+
symbolCurrency0: string;
|
|
329
|
+
symbolCurrency1: string;
|
|
330
|
+
lowerPriceTolerance?: number | undefined;
|
|
331
|
+
upperPriceTolerance?: number | undefined;
|
|
332
|
+
lowerPriceBond?: number | undefined;
|
|
333
|
+
upperPriceBond?: number | undefined;
|
|
334
|
+
} | {
|
|
335
|
+
whitelist: string[];
|
|
336
|
+
blacklist: string[];
|
|
337
|
+
isOutOfRangeIncentivized: boolean;
|
|
338
|
+
weightFees: number;
|
|
339
|
+
weightToken0: number;
|
|
340
|
+
weightToken1: number;
|
|
341
|
+
poolId: string;
|
|
342
|
+
poolManager: string;
|
|
343
|
+
lpFee: number;
|
|
344
|
+
currency0: string;
|
|
345
|
+
currency1: string;
|
|
346
|
+
decimalsCurrency0: number;
|
|
347
|
+
decimalsCurrency1: number;
|
|
348
|
+
symbolCurrency0: string;
|
|
349
|
+
symbolCurrency1: string;
|
|
350
|
+
lowerPriceTolerance?: number | undefined;
|
|
351
|
+
upperPriceTolerance?: number | undefined;
|
|
352
|
+
lowerPriceBond?: number | undefined;
|
|
353
|
+
upperPriceBond?: number | undefined;
|
|
354
|
+
config: string;
|
|
355
|
+
} | {
|
|
356
|
+
whitelist: string[];
|
|
357
|
+
blacklist: string[];
|
|
358
|
+
isOutOfRangeIncentivized: boolean;
|
|
359
|
+
weightFees: number;
|
|
360
|
+
weightToken0: number;
|
|
361
|
+
weightToken1: number;
|
|
362
|
+
poolId: string;
|
|
363
|
+
poolManager: string;
|
|
364
|
+
lpFee: number;
|
|
365
|
+
currency0: string;
|
|
366
|
+
currency1: string;
|
|
367
|
+
decimalsCurrency0: number;
|
|
368
|
+
decimalsCurrency1: number;
|
|
369
|
+
symbolCurrency0: string;
|
|
370
|
+
symbolCurrency1: string;
|
|
371
|
+
lowerPriceTolerance?: number | undefined;
|
|
372
|
+
upperPriceTolerance?: number | undefined;
|
|
373
|
+
lowerPriceBond?: number | undefined;
|
|
374
|
+
upperPriceBond?: number | undefined;
|
|
375
|
+
} | {
|
|
301
376
|
borrowingToken: string;
|
|
302
377
|
supplyTokens: string[];
|
|
303
378
|
tokens: {
|
|
@@ -657,6 +732,67 @@ export declare const getAPR: (params: {
|
|
|
657
732
|
underlyingToken: string;
|
|
658
733
|
decimalsUnderlyingToken: number;
|
|
659
734
|
symbolUnderlyingToken: string;
|
|
735
|
+
} | {
|
|
736
|
+
whitelist: string[];
|
|
737
|
+
blacklist: string[];
|
|
738
|
+
isOutOfRangeIncentivized: boolean;
|
|
739
|
+
weightFees: number;
|
|
740
|
+
weightToken0: number;
|
|
741
|
+
weightToken1: number;
|
|
742
|
+
poolId: string;
|
|
743
|
+
poolManager: string;
|
|
744
|
+
lpFee: number;
|
|
745
|
+
currency0: string;
|
|
746
|
+
currency1: string;
|
|
747
|
+
decimalsCurrency0: number;
|
|
748
|
+
decimalsCurrency1: number;
|
|
749
|
+
symbolCurrency0: string;
|
|
750
|
+
symbolCurrency1: string;
|
|
751
|
+
lowerPriceTolerance?: number | undefined;
|
|
752
|
+
upperPriceTolerance?: number | undefined;
|
|
753
|
+
lowerPriceBond?: number | undefined;
|
|
754
|
+
upperPriceBond?: number | undefined;
|
|
755
|
+
} | {
|
|
756
|
+
whitelist: string[];
|
|
757
|
+
blacklist: string[];
|
|
758
|
+
isOutOfRangeIncentivized: boolean;
|
|
759
|
+
weightFees: number;
|
|
760
|
+
weightToken0: number;
|
|
761
|
+
weightToken1: number;
|
|
762
|
+
poolId: string;
|
|
763
|
+
poolManager: string;
|
|
764
|
+
lpFee: number;
|
|
765
|
+
currency0: string;
|
|
766
|
+
currency1: string;
|
|
767
|
+
decimalsCurrency0: number;
|
|
768
|
+
decimalsCurrency1: number;
|
|
769
|
+
symbolCurrency0: string;
|
|
770
|
+
symbolCurrency1: string;
|
|
771
|
+
lowerPriceTolerance?: number | undefined;
|
|
772
|
+
upperPriceTolerance?: number | undefined;
|
|
773
|
+
lowerPriceBond?: number | undefined;
|
|
774
|
+
upperPriceBond?: number | undefined;
|
|
775
|
+
config: string;
|
|
776
|
+
} | {
|
|
777
|
+
whitelist: string[];
|
|
778
|
+
blacklist: string[];
|
|
779
|
+
isOutOfRangeIncentivized: boolean;
|
|
780
|
+
weightFees: number;
|
|
781
|
+
weightToken0: number;
|
|
782
|
+
weightToken1: number;
|
|
783
|
+
poolId: string;
|
|
784
|
+
poolManager: string;
|
|
785
|
+
lpFee: number;
|
|
786
|
+
currency0: string;
|
|
787
|
+
currency1: string;
|
|
788
|
+
decimalsCurrency0: number;
|
|
789
|
+
decimalsCurrency1: number;
|
|
790
|
+
symbolCurrency0: string;
|
|
791
|
+
symbolCurrency1: string;
|
|
792
|
+
lowerPriceTolerance?: number | undefined;
|
|
793
|
+
upperPriceTolerance?: number | undefined;
|
|
794
|
+
lowerPriceBond?: number | undefined;
|
|
795
|
+
upperPriceBond?: number | undefined;
|
|
660
796
|
} | {
|
|
661
797
|
collateralToken: string;
|
|
662
798
|
decimalsCollateralToken: number;
|
|
@@ -764,27 +900,6 @@ export declare const getAPR: (params: {
|
|
|
764
900
|
decimalsUnderlyingToken: number;
|
|
765
901
|
symbolUnderlyingToken: string;
|
|
766
902
|
strategy: string;
|
|
767
|
-
} | {
|
|
768
|
-
whitelist: string[];
|
|
769
|
-
blacklist: string[];
|
|
770
|
-
isOutOfRangeIncentivized: boolean;
|
|
771
|
-
weightFees: number;
|
|
772
|
-
weightToken0: number;
|
|
773
|
-
weightToken1: number;
|
|
774
|
-
poolId: string;
|
|
775
|
-
poolManager: string;
|
|
776
|
-
lpFee: number;
|
|
777
|
-
currency0: string;
|
|
778
|
-
currency1: string;
|
|
779
|
-
decimalsCurrency0: number;
|
|
780
|
-
decimalsCurrency1: number;
|
|
781
|
-
symbolCurrency0: string;
|
|
782
|
-
symbolCurrency1: string;
|
|
783
|
-
lowerPriceTolerance?: number | undefined;
|
|
784
|
-
upperPriceTolerance?: number | undefined;
|
|
785
|
-
lowerPriceBond?: number | undefined;
|
|
786
|
-
upperPriceBond?: number | undefined;
|
|
787
|
-
config: string;
|
|
788
903
|
} | {
|
|
789
904
|
targetToken: string;
|
|
790
905
|
decimalsTargetToken: number;
|
|
@@ -1304,46 +1419,6 @@ export declare const getAPR: (params: {
|
|
|
1304
1419
|
url?: string | undefined;
|
|
1305
1420
|
vaultAddress: string;
|
|
1306
1421
|
poolId: string;
|
|
1307
|
-
} | {
|
|
1308
|
-
whitelist: string[];
|
|
1309
|
-
blacklist: string[];
|
|
1310
|
-
isOutOfRangeIncentivized: boolean;
|
|
1311
|
-
weightFees: number;
|
|
1312
|
-
weightToken0: number;
|
|
1313
|
-
weightToken1: number;
|
|
1314
|
-
poolId: string;
|
|
1315
|
-
poolManager: string;
|
|
1316
|
-
lpFee: number;
|
|
1317
|
-
currency0: string;
|
|
1318
|
-
currency1: string;
|
|
1319
|
-
decimalsCurrency0: number;
|
|
1320
|
-
decimalsCurrency1: number;
|
|
1321
|
-
symbolCurrency0: string;
|
|
1322
|
-
symbolCurrency1: string;
|
|
1323
|
-
lowerPriceTolerance?: number | undefined;
|
|
1324
|
-
upperPriceTolerance?: number | undefined;
|
|
1325
|
-
lowerPriceBond?: number | undefined;
|
|
1326
|
-
upperPriceBond?: number | undefined;
|
|
1327
|
-
} | {
|
|
1328
|
-
whitelist: string[];
|
|
1329
|
-
blacklist: string[];
|
|
1330
|
-
isOutOfRangeIncentivized: boolean;
|
|
1331
|
-
weightFees: number;
|
|
1332
|
-
weightToken0: number;
|
|
1333
|
-
weightToken1: number;
|
|
1334
|
-
poolId: string;
|
|
1335
|
-
poolManager: string;
|
|
1336
|
-
lpFee: number;
|
|
1337
|
-
currency0: string;
|
|
1338
|
-
currency1: string;
|
|
1339
|
-
decimalsCurrency0: number;
|
|
1340
|
-
decimalsCurrency1: number;
|
|
1341
|
-
symbolCurrency0: string;
|
|
1342
|
-
symbolCurrency1: string;
|
|
1343
|
-
lowerPriceTolerance?: number | undefined;
|
|
1344
|
-
upperPriceTolerance?: number | undefined;
|
|
1345
|
-
lowerPriceBond?: number | undefined;
|
|
1346
|
-
upperPriceBond?: number | undefined;
|
|
1347
1422
|
} | {
|
|
1348
1423
|
token: string;
|
|
1349
1424
|
} | {
|
|
@@ -1355,20 +1430,6 @@ export declare const getAPR: (params: {
|
|
|
1355
1430
|
})[];
|
|
1356
1431
|
composedCampaignsCompute: string;
|
|
1357
1432
|
chains: number[];
|
|
1358
|
-
} | {
|
|
1359
|
-
targetToken: string;
|
|
1360
|
-
decimalsTargetToken: number;
|
|
1361
|
-
symbolTargetToken: string;
|
|
1362
|
-
underlyingToken: string;
|
|
1363
|
-
decimalsUnderlyingToken: number;
|
|
1364
|
-
symbolUnderlyingToken: string;
|
|
1365
|
-
} | {
|
|
1366
|
-
targetToken: string;
|
|
1367
|
-
decimalsTargetToken: number;
|
|
1368
|
-
symbolTargetToken: string;
|
|
1369
|
-
underlyingToken: string;
|
|
1370
|
-
decimalsUnderlyingToken: number;
|
|
1371
|
-
symbolUnderlyingToken: string;
|
|
1372
1433
|
} | {
|
|
1373
1434
|
collateralToken: string;
|
|
1374
1435
|
decimalsCollateralToken: number;
|
|
@@ -1476,27 +1537,6 @@ export declare const getAPR: (params: {
|
|
|
1476
1537
|
decimalsUnderlyingToken: number;
|
|
1477
1538
|
symbolUnderlyingToken: string;
|
|
1478
1539
|
strategy: string;
|
|
1479
|
-
} | {
|
|
1480
|
-
whitelist: string[];
|
|
1481
|
-
blacklist: string[];
|
|
1482
|
-
isOutOfRangeIncentivized: boolean;
|
|
1483
|
-
weightFees: number;
|
|
1484
|
-
weightToken0: number;
|
|
1485
|
-
weightToken1: number;
|
|
1486
|
-
poolId: string;
|
|
1487
|
-
poolManager: string;
|
|
1488
|
-
lpFee: number;
|
|
1489
|
-
currency0: string;
|
|
1490
|
-
currency1: string;
|
|
1491
|
-
decimalsCurrency0: number;
|
|
1492
|
-
decimalsCurrency1: number;
|
|
1493
|
-
symbolCurrency0: string;
|
|
1494
|
-
symbolCurrency1: string;
|
|
1495
|
-
lowerPriceTolerance?: number | undefined;
|
|
1496
|
-
upperPriceTolerance?: number | undefined;
|
|
1497
|
-
lowerPriceBond?: number | undefined;
|
|
1498
|
-
upperPriceBond?: number | undefined;
|
|
1499
|
-
config: string;
|
|
1500
1540
|
} | {
|
|
1501
1541
|
targetToken: string;
|
|
1502
1542
|
decimalsTargetToken: number;
|
|
@@ -2016,46 +2056,6 @@ export declare const getAPR: (params: {
|
|
|
2016
2056
|
url?: string | undefined;
|
|
2017
2057
|
vaultAddress: string;
|
|
2018
2058
|
poolId: string;
|
|
2019
|
-
} | {
|
|
2020
|
-
whitelist: string[];
|
|
2021
|
-
blacklist: string[];
|
|
2022
|
-
isOutOfRangeIncentivized: boolean;
|
|
2023
|
-
weightFees: number;
|
|
2024
|
-
weightToken0: number;
|
|
2025
|
-
weightToken1: number;
|
|
2026
|
-
poolId: string;
|
|
2027
|
-
poolManager: string;
|
|
2028
|
-
lpFee: number;
|
|
2029
|
-
currency0: string;
|
|
2030
|
-
currency1: string;
|
|
2031
|
-
decimalsCurrency0: number;
|
|
2032
|
-
decimalsCurrency1: number;
|
|
2033
|
-
symbolCurrency0: string;
|
|
2034
|
-
symbolCurrency1: string;
|
|
2035
|
-
lowerPriceTolerance?: number | undefined;
|
|
2036
|
-
upperPriceTolerance?: number | undefined;
|
|
2037
|
-
lowerPriceBond?: number | undefined;
|
|
2038
|
-
upperPriceBond?: number | undefined;
|
|
2039
|
-
} | {
|
|
2040
|
-
whitelist: string[];
|
|
2041
|
-
blacklist: string[];
|
|
2042
|
-
isOutOfRangeIncentivized: boolean;
|
|
2043
|
-
weightFees: number;
|
|
2044
|
-
weightToken0: number;
|
|
2045
|
-
weightToken1: number;
|
|
2046
|
-
poolId: string;
|
|
2047
|
-
poolManager: string;
|
|
2048
|
-
lpFee: number;
|
|
2049
|
-
currency0: string;
|
|
2050
|
-
currency1: string;
|
|
2051
|
-
decimalsCurrency0: number;
|
|
2052
|
-
decimalsCurrency1: number;
|
|
2053
|
-
symbolCurrency0: string;
|
|
2054
|
-
symbolCurrency1: string;
|
|
2055
|
-
lowerPriceTolerance?: number | undefined;
|
|
2056
|
-
upperPriceTolerance?: number | undefined;
|
|
2057
|
-
lowerPriceBond?: number | undefined;
|
|
2058
|
-
upperPriceBond?: number | undefined;
|
|
2059
2059
|
} | {
|
|
2060
2060
|
token: string;
|
|
2061
2061
|
} | {
|
|
@@ -2390,6 +2390,67 @@ export declare const getAPR: (params: {
|
|
|
2390
2390
|
underlyingToken: string;
|
|
2391
2391
|
decimalsUnderlyingToken: number;
|
|
2392
2392
|
symbolUnderlyingToken: string;
|
|
2393
|
+
} | {
|
|
2394
|
+
whitelist: string[];
|
|
2395
|
+
blacklist: string[];
|
|
2396
|
+
isOutOfRangeIncentivized: boolean;
|
|
2397
|
+
weightFees: number;
|
|
2398
|
+
weightToken0: number;
|
|
2399
|
+
weightToken1: number;
|
|
2400
|
+
poolId: string;
|
|
2401
|
+
poolManager: string;
|
|
2402
|
+
lpFee: number;
|
|
2403
|
+
currency0: string;
|
|
2404
|
+
currency1: string;
|
|
2405
|
+
decimalsCurrency0: number;
|
|
2406
|
+
decimalsCurrency1: number;
|
|
2407
|
+
symbolCurrency0: string;
|
|
2408
|
+
symbolCurrency1: string;
|
|
2409
|
+
lowerPriceTolerance?: number | undefined;
|
|
2410
|
+
upperPriceTolerance?: number | undefined;
|
|
2411
|
+
lowerPriceBond?: number | undefined;
|
|
2412
|
+
upperPriceBond?: number | undefined;
|
|
2413
|
+
} | {
|
|
2414
|
+
whitelist: string[];
|
|
2415
|
+
blacklist: string[];
|
|
2416
|
+
isOutOfRangeIncentivized: boolean;
|
|
2417
|
+
weightFees: number;
|
|
2418
|
+
weightToken0: number;
|
|
2419
|
+
weightToken1: number;
|
|
2420
|
+
poolId: string;
|
|
2421
|
+
poolManager: string;
|
|
2422
|
+
lpFee: number;
|
|
2423
|
+
currency0: string;
|
|
2424
|
+
currency1: string;
|
|
2425
|
+
decimalsCurrency0: number;
|
|
2426
|
+
decimalsCurrency1: number;
|
|
2427
|
+
symbolCurrency0: string;
|
|
2428
|
+
symbolCurrency1: string;
|
|
2429
|
+
lowerPriceTolerance?: number | undefined;
|
|
2430
|
+
upperPriceTolerance?: number | undefined;
|
|
2431
|
+
lowerPriceBond?: number | undefined;
|
|
2432
|
+
upperPriceBond?: number | undefined;
|
|
2433
|
+
config: string;
|
|
2434
|
+
} | {
|
|
2435
|
+
whitelist: string[];
|
|
2436
|
+
blacklist: string[];
|
|
2437
|
+
isOutOfRangeIncentivized: boolean;
|
|
2438
|
+
weightFees: number;
|
|
2439
|
+
weightToken0: number;
|
|
2440
|
+
weightToken1: number;
|
|
2441
|
+
poolId: string;
|
|
2442
|
+
poolManager: string;
|
|
2443
|
+
lpFee: number;
|
|
2444
|
+
currency0: string;
|
|
2445
|
+
currency1: string;
|
|
2446
|
+
decimalsCurrency0: number;
|
|
2447
|
+
decimalsCurrency1: number;
|
|
2448
|
+
symbolCurrency0: string;
|
|
2449
|
+
symbolCurrency1: string;
|
|
2450
|
+
lowerPriceTolerance?: number | undefined;
|
|
2451
|
+
upperPriceTolerance?: number | undefined;
|
|
2452
|
+
lowerPriceBond?: number | undefined;
|
|
2453
|
+
upperPriceBond?: number | undefined;
|
|
2393
2454
|
} | {
|
|
2394
2455
|
collateralToken: string;
|
|
2395
2456
|
decimalsCollateralToken: number;
|
|
@@ -2497,27 +2558,6 @@ export declare const getAPR: (params: {
|
|
|
2497
2558
|
decimalsUnderlyingToken: number;
|
|
2498
2559
|
symbolUnderlyingToken: string;
|
|
2499
2560
|
strategy: string;
|
|
2500
|
-
} | {
|
|
2501
|
-
whitelist: string[];
|
|
2502
|
-
blacklist: string[];
|
|
2503
|
-
isOutOfRangeIncentivized: boolean;
|
|
2504
|
-
weightFees: number;
|
|
2505
|
-
weightToken0: number;
|
|
2506
|
-
weightToken1: number;
|
|
2507
|
-
poolId: string;
|
|
2508
|
-
poolManager: string;
|
|
2509
|
-
lpFee: number;
|
|
2510
|
-
currency0: string;
|
|
2511
|
-
currency1: string;
|
|
2512
|
-
decimalsCurrency0: number;
|
|
2513
|
-
decimalsCurrency1: number;
|
|
2514
|
-
symbolCurrency0: string;
|
|
2515
|
-
symbolCurrency1: string;
|
|
2516
|
-
lowerPriceTolerance?: number | undefined;
|
|
2517
|
-
upperPriceTolerance?: number | undefined;
|
|
2518
|
-
lowerPriceBond?: number | undefined;
|
|
2519
|
-
upperPriceBond?: number | undefined;
|
|
2520
|
-
config: string;
|
|
2521
2561
|
} | {
|
|
2522
2562
|
targetToken: string;
|
|
2523
2563
|
decimalsTargetToken: number;
|
|
@@ -3037,46 +3077,6 @@ export declare const getAPR: (params: {
|
|
|
3037
3077
|
url?: string | undefined;
|
|
3038
3078
|
vaultAddress: string;
|
|
3039
3079
|
poolId: string;
|
|
3040
|
-
} | {
|
|
3041
|
-
whitelist: string[];
|
|
3042
|
-
blacklist: string[];
|
|
3043
|
-
isOutOfRangeIncentivized: boolean;
|
|
3044
|
-
weightFees: number;
|
|
3045
|
-
weightToken0: number;
|
|
3046
|
-
weightToken1: number;
|
|
3047
|
-
poolId: string;
|
|
3048
|
-
poolManager: string;
|
|
3049
|
-
lpFee: number;
|
|
3050
|
-
currency0: string;
|
|
3051
|
-
currency1: string;
|
|
3052
|
-
decimalsCurrency0: number;
|
|
3053
|
-
decimalsCurrency1: number;
|
|
3054
|
-
symbolCurrency0: string;
|
|
3055
|
-
symbolCurrency1: string;
|
|
3056
|
-
lowerPriceTolerance?: number | undefined;
|
|
3057
|
-
upperPriceTolerance?: number | undefined;
|
|
3058
|
-
lowerPriceBond?: number | undefined;
|
|
3059
|
-
upperPriceBond?: number | undefined;
|
|
3060
|
-
} | {
|
|
3061
|
-
whitelist: string[];
|
|
3062
|
-
blacklist: string[];
|
|
3063
|
-
isOutOfRangeIncentivized: boolean;
|
|
3064
|
-
weightFees: number;
|
|
3065
|
-
weightToken0: number;
|
|
3066
|
-
weightToken1: number;
|
|
3067
|
-
poolId: string;
|
|
3068
|
-
poolManager: string;
|
|
3069
|
-
lpFee: number;
|
|
3070
|
-
currency0: string;
|
|
3071
|
-
currency1: string;
|
|
3072
|
-
decimalsCurrency0: number;
|
|
3073
|
-
decimalsCurrency1: number;
|
|
3074
|
-
symbolCurrency0: string;
|
|
3075
|
-
symbolCurrency1: string;
|
|
3076
|
-
lowerPriceTolerance?: number | undefined;
|
|
3077
|
-
upperPriceTolerance?: number | undefined;
|
|
3078
|
-
lowerPriceBond?: number | undefined;
|
|
3079
|
-
upperPriceBond?: number | undefined;
|
|
3080
3080
|
} | {
|
|
3081
3081
|
token: string;
|
|
3082
3082
|
} | {
|
|
@@ -3414,6 +3414,67 @@ export declare const getAPR: (params: {
|
|
|
3414
3414
|
underlyingToken: string;
|
|
3415
3415
|
decimalsUnderlyingToken: number;
|
|
3416
3416
|
symbolUnderlyingToken: string;
|
|
3417
|
+
} | {
|
|
3418
|
+
whitelist: string[];
|
|
3419
|
+
blacklist: string[];
|
|
3420
|
+
isOutOfRangeIncentivized: boolean;
|
|
3421
|
+
weightFees: number;
|
|
3422
|
+
weightToken0: number;
|
|
3423
|
+
weightToken1: number;
|
|
3424
|
+
poolId: string;
|
|
3425
|
+
poolManager: string;
|
|
3426
|
+
lpFee: number;
|
|
3427
|
+
currency0: string;
|
|
3428
|
+
currency1: string;
|
|
3429
|
+
decimalsCurrency0: number;
|
|
3430
|
+
decimalsCurrency1: number;
|
|
3431
|
+
symbolCurrency0: string;
|
|
3432
|
+
symbolCurrency1: string;
|
|
3433
|
+
lowerPriceTolerance?: number | undefined;
|
|
3434
|
+
upperPriceTolerance?: number | undefined;
|
|
3435
|
+
lowerPriceBond?: number | undefined;
|
|
3436
|
+
upperPriceBond?: number | undefined;
|
|
3437
|
+
} | {
|
|
3438
|
+
whitelist: string[];
|
|
3439
|
+
blacklist: string[];
|
|
3440
|
+
isOutOfRangeIncentivized: boolean;
|
|
3441
|
+
weightFees: number;
|
|
3442
|
+
weightToken0: number;
|
|
3443
|
+
weightToken1: number;
|
|
3444
|
+
poolId: string;
|
|
3445
|
+
poolManager: string;
|
|
3446
|
+
lpFee: number;
|
|
3447
|
+
currency0: string;
|
|
3448
|
+
currency1: string;
|
|
3449
|
+
decimalsCurrency0: number;
|
|
3450
|
+
decimalsCurrency1: number;
|
|
3451
|
+
symbolCurrency0: string;
|
|
3452
|
+
symbolCurrency1: string;
|
|
3453
|
+
lowerPriceTolerance?: number | undefined;
|
|
3454
|
+
upperPriceTolerance?: number | undefined;
|
|
3455
|
+
lowerPriceBond?: number | undefined;
|
|
3456
|
+
upperPriceBond?: number | undefined;
|
|
3457
|
+
config: string;
|
|
3458
|
+
} | {
|
|
3459
|
+
whitelist: string[];
|
|
3460
|
+
blacklist: string[];
|
|
3461
|
+
isOutOfRangeIncentivized: boolean;
|
|
3462
|
+
weightFees: number;
|
|
3463
|
+
weightToken0: number;
|
|
3464
|
+
weightToken1: number;
|
|
3465
|
+
poolId: string;
|
|
3466
|
+
poolManager: string;
|
|
3467
|
+
lpFee: number;
|
|
3468
|
+
currency0: string;
|
|
3469
|
+
currency1: string;
|
|
3470
|
+
decimalsCurrency0: number;
|
|
3471
|
+
decimalsCurrency1: number;
|
|
3472
|
+
symbolCurrency0: string;
|
|
3473
|
+
symbolCurrency1: string;
|
|
3474
|
+
lowerPriceTolerance?: number | undefined;
|
|
3475
|
+
upperPriceTolerance?: number | undefined;
|
|
3476
|
+
lowerPriceBond?: number | undefined;
|
|
3477
|
+
upperPriceBond?: number | undefined;
|
|
3417
3478
|
} | {
|
|
3418
3479
|
collateralToken: string;
|
|
3419
3480
|
decimalsCollateralToken: number;
|
|
@@ -3521,27 +3582,6 @@ export declare const getAPR: (params: {
|
|
|
3521
3582
|
decimalsUnderlyingToken: number;
|
|
3522
3583
|
symbolUnderlyingToken: string;
|
|
3523
3584
|
strategy: string;
|
|
3524
|
-
} | {
|
|
3525
|
-
whitelist: string[];
|
|
3526
|
-
blacklist: string[];
|
|
3527
|
-
isOutOfRangeIncentivized: boolean;
|
|
3528
|
-
weightFees: number;
|
|
3529
|
-
weightToken0: number;
|
|
3530
|
-
weightToken1: number;
|
|
3531
|
-
poolId: string;
|
|
3532
|
-
poolManager: string;
|
|
3533
|
-
lpFee: number;
|
|
3534
|
-
currency0: string;
|
|
3535
|
-
currency1: string;
|
|
3536
|
-
decimalsCurrency0: number;
|
|
3537
|
-
decimalsCurrency1: number;
|
|
3538
|
-
symbolCurrency0: string;
|
|
3539
|
-
symbolCurrency1: string;
|
|
3540
|
-
lowerPriceTolerance?: number | undefined;
|
|
3541
|
-
upperPriceTolerance?: number | undefined;
|
|
3542
|
-
lowerPriceBond?: number | undefined;
|
|
3543
|
-
upperPriceBond?: number | undefined;
|
|
3544
|
-
config: string;
|
|
3545
3585
|
} | {
|
|
3546
3586
|
targetToken: string;
|
|
3547
3587
|
decimalsTargetToken: number;
|
|
@@ -4061,46 +4101,6 @@ export declare const getAPR: (params: {
|
|
|
4061
4101
|
url?: string | undefined;
|
|
4062
4102
|
vaultAddress: string;
|
|
4063
4103
|
poolId: string;
|
|
4064
|
-
} | {
|
|
4065
|
-
whitelist: string[];
|
|
4066
|
-
blacklist: string[];
|
|
4067
|
-
isOutOfRangeIncentivized: boolean;
|
|
4068
|
-
weightFees: number;
|
|
4069
|
-
weightToken0: number;
|
|
4070
|
-
weightToken1: number;
|
|
4071
|
-
poolId: string;
|
|
4072
|
-
poolManager: string;
|
|
4073
|
-
lpFee: number;
|
|
4074
|
-
currency0: string;
|
|
4075
|
-
currency1: string;
|
|
4076
|
-
decimalsCurrency0: number;
|
|
4077
|
-
decimalsCurrency1: number;
|
|
4078
|
-
symbolCurrency0: string;
|
|
4079
|
-
symbolCurrency1: string;
|
|
4080
|
-
lowerPriceTolerance?: number | undefined;
|
|
4081
|
-
upperPriceTolerance?: number | undefined;
|
|
4082
|
-
lowerPriceBond?: number | undefined;
|
|
4083
|
-
upperPriceBond?: number | undefined;
|
|
4084
|
-
} | {
|
|
4085
|
-
whitelist: string[];
|
|
4086
|
-
blacklist: string[];
|
|
4087
|
-
isOutOfRangeIncentivized: boolean;
|
|
4088
|
-
weightFees: number;
|
|
4089
|
-
weightToken0: number;
|
|
4090
|
-
weightToken1: number;
|
|
4091
|
-
poolId: string;
|
|
4092
|
-
poolManager: string;
|
|
4093
|
-
lpFee: number;
|
|
4094
|
-
currency0: string;
|
|
4095
|
-
currency1: string;
|
|
4096
|
-
decimalsCurrency0: number;
|
|
4097
|
-
decimalsCurrency1: number;
|
|
4098
|
-
symbolCurrency0: string;
|
|
4099
|
-
symbolCurrency1: string;
|
|
4100
|
-
lowerPriceTolerance?: number | undefined;
|
|
4101
|
-
upperPriceTolerance?: number | undefined;
|
|
4102
|
-
lowerPriceBond?: number | undefined;
|
|
4103
|
-
upperPriceBond?: number | undefined;
|
|
4104
4104
|
} | {
|
|
4105
4105
|
token: string;
|
|
4106
4106
|
} | {
|
|
@@ -4443,6 +4443,67 @@ export declare const getAPR: (params: {
|
|
|
4443
4443
|
underlyingToken: string;
|
|
4444
4444
|
decimalsUnderlyingToken: number;
|
|
4445
4445
|
symbolUnderlyingToken: string;
|
|
4446
|
+
} | {
|
|
4447
|
+
whitelist: string[];
|
|
4448
|
+
blacklist: string[];
|
|
4449
|
+
isOutOfRangeIncentivized: boolean;
|
|
4450
|
+
weightFees: number;
|
|
4451
|
+
weightToken0: number;
|
|
4452
|
+
weightToken1: number;
|
|
4453
|
+
poolId: string;
|
|
4454
|
+
poolManager: string;
|
|
4455
|
+
lpFee: number;
|
|
4456
|
+
currency0: string;
|
|
4457
|
+
currency1: string;
|
|
4458
|
+
decimalsCurrency0: number;
|
|
4459
|
+
decimalsCurrency1: number;
|
|
4460
|
+
symbolCurrency0: string;
|
|
4461
|
+
symbolCurrency1: string;
|
|
4462
|
+
lowerPriceTolerance?: number | undefined;
|
|
4463
|
+
upperPriceTolerance?: number | undefined;
|
|
4464
|
+
lowerPriceBond?: number | undefined;
|
|
4465
|
+
upperPriceBond?: number | undefined;
|
|
4466
|
+
} | {
|
|
4467
|
+
whitelist: string[];
|
|
4468
|
+
blacklist: string[];
|
|
4469
|
+
isOutOfRangeIncentivized: boolean;
|
|
4470
|
+
weightFees: number;
|
|
4471
|
+
weightToken0: number;
|
|
4472
|
+
weightToken1: number;
|
|
4473
|
+
poolId: string;
|
|
4474
|
+
poolManager: string;
|
|
4475
|
+
lpFee: number;
|
|
4476
|
+
currency0: string;
|
|
4477
|
+
currency1: string;
|
|
4478
|
+
decimalsCurrency0: number;
|
|
4479
|
+
decimalsCurrency1: number;
|
|
4480
|
+
symbolCurrency0: string;
|
|
4481
|
+
symbolCurrency1: string;
|
|
4482
|
+
lowerPriceTolerance?: number | undefined;
|
|
4483
|
+
upperPriceTolerance?: number | undefined;
|
|
4484
|
+
lowerPriceBond?: number | undefined;
|
|
4485
|
+
upperPriceBond?: number | undefined;
|
|
4486
|
+
config: string;
|
|
4487
|
+
} | {
|
|
4488
|
+
whitelist: string[];
|
|
4489
|
+
blacklist: string[];
|
|
4490
|
+
isOutOfRangeIncentivized: boolean;
|
|
4491
|
+
weightFees: number;
|
|
4492
|
+
weightToken0: number;
|
|
4493
|
+
weightToken1: number;
|
|
4494
|
+
poolId: string;
|
|
4495
|
+
poolManager: string;
|
|
4496
|
+
lpFee: number;
|
|
4497
|
+
currency0: string;
|
|
4498
|
+
currency1: string;
|
|
4499
|
+
decimalsCurrency0: number;
|
|
4500
|
+
decimalsCurrency1: number;
|
|
4501
|
+
symbolCurrency0: string;
|
|
4502
|
+
symbolCurrency1: string;
|
|
4503
|
+
lowerPriceTolerance?: number | undefined;
|
|
4504
|
+
upperPriceTolerance?: number | undefined;
|
|
4505
|
+
lowerPriceBond?: number | undefined;
|
|
4506
|
+
upperPriceBond?: number | undefined;
|
|
4446
4507
|
} | {
|
|
4447
4508
|
collateralToken: string;
|
|
4448
4509
|
decimalsCollateralToken: number;
|
|
@@ -4550,27 +4611,6 @@ export declare const getAPR: (params: {
|
|
|
4550
4611
|
decimalsUnderlyingToken: number;
|
|
4551
4612
|
symbolUnderlyingToken: string;
|
|
4552
4613
|
strategy: string;
|
|
4553
|
-
} | {
|
|
4554
|
-
whitelist: string[];
|
|
4555
|
-
blacklist: string[];
|
|
4556
|
-
isOutOfRangeIncentivized: boolean;
|
|
4557
|
-
weightFees: number;
|
|
4558
|
-
weightToken0: number;
|
|
4559
|
-
weightToken1: number;
|
|
4560
|
-
poolId: string;
|
|
4561
|
-
poolManager: string;
|
|
4562
|
-
lpFee: number;
|
|
4563
|
-
currency0: string;
|
|
4564
|
-
currency1: string;
|
|
4565
|
-
decimalsCurrency0: number;
|
|
4566
|
-
decimalsCurrency1: number;
|
|
4567
|
-
symbolCurrency0: string;
|
|
4568
|
-
symbolCurrency1: string;
|
|
4569
|
-
lowerPriceTolerance?: number | undefined;
|
|
4570
|
-
upperPriceTolerance?: number | undefined;
|
|
4571
|
-
lowerPriceBond?: number | undefined;
|
|
4572
|
-
upperPriceBond?: number | undefined;
|
|
4573
|
-
config: string;
|
|
4574
4614
|
} | {
|
|
4575
4615
|
targetToken: string;
|
|
4576
4616
|
decimalsTargetToken: number;
|
|
@@ -5090,46 +5130,6 @@ export declare const getAPR: (params: {
|
|
|
5090
5130
|
url?: string | undefined;
|
|
5091
5131
|
vaultAddress: string;
|
|
5092
5132
|
poolId: string;
|
|
5093
|
-
} | {
|
|
5094
|
-
whitelist: string[];
|
|
5095
|
-
blacklist: string[];
|
|
5096
|
-
isOutOfRangeIncentivized: boolean;
|
|
5097
|
-
weightFees: number;
|
|
5098
|
-
weightToken0: number;
|
|
5099
|
-
weightToken1: number;
|
|
5100
|
-
poolId: string;
|
|
5101
|
-
poolManager: string;
|
|
5102
|
-
lpFee: number;
|
|
5103
|
-
currency0: string;
|
|
5104
|
-
currency1: string;
|
|
5105
|
-
decimalsCurrency0: number;
|
|
5106
|
-
decimalsCurrency1: number;
|
|
5107
|
-
symbolCurrency0: string;
|
|
5108
|
-
symbolCurrency1: string;
|
|
5109
|
-
lowerPriceTolerance?: number | undefined;
|
|
5110
|
-
upperPriceTolerance?: number | undefined;
|
|
5111
|
-
lowerPriceBond?: number | undefined;
|
|
5112
|
-
upperPriceBond?: number | undefined;
|
|
5113
|
-
} | {
|
|
5114
|
-
whitelist: string[];
|
|
5115
|
-
blacklist: string[];
|
|
5116
|
-
isOutOfRangeIncentivized: boolean;
|
|
5117
|
-
weightFees: number;
|
|
5118
|
-
weightToken0: number;
|
|
5119
|
-
weightToken1: number;
|
|
5120
|
-
poolId: string;
|
|
5121
|
-
poolManager: string;
|
|
5122
|
-
lpFee: number;
|
|
5123
|
-
currency0: string;
|
|
5124
|
-
currency1: string;
|
|
5125
|
-
decimalsCurrency0: number;
|
|
5126
|
-
decimalsCurrency1: number;
|
|
5127
|
-
symbolCurrency0: string;
|
|
5128
|
-
symbolCurrency1: string;
|
|
5129
|
-
lowerPriceTolerance?: number | undefined;
|
|
5130
|
-
upperPriceTolerance?: number | undefined;
|
|
5131
|
-
lowerPriceBond?: number | undefined;
|
|
5132
|
-
upperPriceBond?: number | undefined;
|
|
5133
5133
|
} | {
|
|
5134
5134
|
token: string;
|
|
5135
5135
|
} | {
|
|
@@ -5473,6 +5473,67 @@ export declare const getAPR: (params: {
|
|
|
5473
5473
|
underlyingToken: string;
|
|
5474
5474
|
decimalsUnderlyingToken: number;
|
|
5475
5475
|
symbolUnderlyingToken: string;
|
|
5476
|
+
} | {
|
|
5477
|
+
whitelist: string[];
|
|
5478
|
+
blacklist: string[];
|
|
5479
|
+
isOutOfRangeIncentivized: boolean;
|
|
5480
|
+
weightFees: number;
|
|
5481
|
+
weightToken0: number;
|
|
5482
|
+
weightToken1: number;
|
|
5483
|
+
poolId: string;
|
|
5484
|
+
poolManager: string;
|
|
5485
|
+
lpFee: number;
|
|
5486
|
+
currency0: string;
|
|
5487
|
+
currency1: string;
|
|
5488
|
+
decimalsCurrency0: number;
|
|
5489
|
+
decimalsCurrency1: number;
|
|
5490
|
+
symbolCurrency0: string;
|
|
5491
|
+
symbolCurrency1: string;
|
|
5492
|
+
lowerPriceTolerance?: number | undefined;
|
|
5493
|
+
upperPriceTolerance?: number | undefined;
|
|
5494
|
+
lowerPriceBond?: number | undefined;
|
|
5495
|
+
upperPriceBond?: number | undefined;
|
|
5496
|
+
} | {
|
|
5497
|
+
whitelist: string[];
|
|
5498
|
+
blacklist: string[];
|
|
5499
|
+
isOutOfRangeIncentivized: boolean;
|
|
5500
|
+
weightFees: number;
|
|
5501
|
+
weightToken0: number;
|
|
5502
|
+
weightToken1: number;
|
|
5503
|
+
poolId: string;
|
|
5504
|
+
poolManager: string;
|
|
5505
|
+
lpFee: number;
|
|
5506
|
+
currency0: string;
|
|
5507
|
+
currency1: string;
|
|
5508
|
+
decimalsCurrency0: number;
|
|
5509
|
+
decimalsCurrency1: number;
|
|
5510
|
+
symbolCurrency0: string;
|
|
5511
|
+
symbolCurrency1: string;
|
|
5512
|
+
lowerPriceTolerance?: number | undefined;
|
|
5513
|
+
upperPriceTolerance?: number | undefined;
|
|
5514
|
+
lowerPriceBond?: number | undefined;
|
|
5515
|
+
upperPriceBond?: number | undefined;
|
|
5516
|
+
config: string;
|
|
5517
|
+
} | {
|
|
5518
|
+
whitelist: string[];
|
|
5519
|
+
blacklist: string[];
|
|
5520
|
+
isOutOfRangeIncentivized: boolean;
|
|
5521
|
+
weightFees: number;
|
|
5522
|
+
weightToken0: number;
|
|
5523
|
+
weightToken1: number;
|
|
5524
|
+
poolId: string;
|
|
5525
|
+
poolManager: string;
|
|
5526
|
+
lpFee: number;
|
|
5527
|
+
currency0: string;
|
|
5528
|
+
currency1: string;
|
|
5529
|
+
decimalsCurrency0: number;
|
|
5530
|
+
decimalsCurrency1: number;
|
|
5531
|
+
symbolCurrency0: string;
|
|
5532
|
+
symbolCurrency1: string;
|
|
5533
|
+
lowerPriceTolerance?: number | undefined;
|
|
5534
|
+
upperPriceTolerance?: number | undefined;
|
|
5535
|
+
lowerPriceBond?: number | undefined;
|
|
5536
|
+
upperPriceBond?: number | undefined;
|
|
5476
5537
|
} | {
|
|
5477
5538
|
collateralToken: string;
|
|
5478
5539
|
decimalsCollateralToken: number;
|
|
@@ -5580,27 +5641,6 @@ export declare const getAPR: (params: {
|
|
|
5580
5641
|
decimalsUnderlyingToken: number;
|
|
5581
5642
|
symbolUnderlyingToken: string;
|
|
5582
5643
|
strategy: string;
|
|
5583
|
-
} | {
|
|
5584
|
-
whitelist: string[];
|
|
5585
|
-
blacklist: string[];
|
|
5586
|
-
isOutOfRangeIncentivized: boolean;
|
|
5587
|
-
weightFees: number;
|
|
5588
|
-
weightToken0: number;
|
|
5589
|
-
weightToken1: number;
|
|
5590
|
-
poolId: string;
|
|
5591
|
-
poolManager: string;
|
|
5592
|
-
lpFee: number;
|
|
5593
|
-
currency0: string;
|
|
5594
|
-
currency1: string;
|
|
5595
|
-
decimalsCurrency0: number;
|
|
5596
|
-
decimalsCurrency1: number;
|
|
5597
|
-
symbolCurrency0: string;
|
|
5598
|
-
symbolCurrency1: string;
|
|
5599
|
-
lowerPriceTolerance?: number | undefined;
|
|
5600
|
-
upperPriceTolerance?: number | undefined;
|
|
5601
|
-
lowerPriceBond?: number | undefined;
|
|
5602
|
-
upperPriceBond?: number | undefined;
|
|
5603
|
-
config: string;
|
|
5604
5644
|
} | {
|
|
5605
5645
|
targetToken: string;
|
|
5606
5646
|
decimalsTargetToken: number;
|
|
@@ -6120,46 +6160,6 @@ export declare const getAPR: (params: {
|
|
|
6120
6160
|
url?: string | undefined;
|
|
6121
6161
|
vaultAddress: string;
|
|
6122
6162
|
poolId: string;
|
|
6123
|
-
} | {
|
|
6124
|
-
whitelist: string[];
|
|
6125
|
-
blacklist: string[];
|
|
6126
|
-
isOutOfRangeIncentivized: boolean;
|
|
6127
|
-
weightFees: number;
|
|
6128
|
-
weightToken0: number;
|
|
6129
|
-
weightToken1: number;
|
|
6130
|
-
poolId: string;
|
|
6131
|
-
poolManager: string;
|
|
6132
|
-
lpFee: number;
|
|
6133
|
-
currency0: string;
|
|
6134
|
-
currency1: string;
|
|
6135
|
-
decimalsCurrency0: number;
|
|
6136
|
-
decimalsCurrency1: number;
|
|
6137
|
-
symbolCurrency0: string;
|
|
6138
|
-
symbolCurrency1: string;
|
|
6139
|
-
lowerPriceTolerance?: number | undefined;
|
|
6140
|
-
upperPriceTolerance?: number | undefined;
|
|
6141
|
-
lowerPriceBond?: number | undefined;
|
|
6142
|
-
upperPriceBond?: number | undefined;
|
|
6143
|
-
} | {
|
|
6144
|
-
whitelist: string[];
|
|
6145
|
-
blacklist: string[];
|
|
6146
|
-
isOutOfRangeIncentivized: boolean;
|
|
6147
|
-
weightFees: number;
|
|
6148
|
-
weightToken0: number;
|
|
6149
|
-
weightToken1: number;
|
|
6150
|
-
poolId: string;
|
|
6151
|
-
poolManager: string;
|
|
6152
|
-
lpFee: number;
|
|
6153
|
-
currency0: string;
|
|
6154
|
-
currency1: string;
|
|
6155
|
-
decimalsCurrency0: number;
|
|
6156
|
-
decimalsCurrency1: number;
|
|
6157
|
-
symbolCurrency0: string;
|
|
6158
|
-
symbolCurrency1: string;
|
|
6159
|
-
lowerPriceTolerance?: number | undefined;
|
|
6160
|
-
upperPriceTolerance?: number | undefined;
|
|
6161
|
-
lowerPriceBond?: number | undefined;
|
|
6162
|
-
upperPriceBond?: number | undefined;
|
|
6163
6163
|
} | {
|
|
6164
6164
|
token: string;
|
|
6165
6165
|
} | {
|