@merkl/api 0.10.169 → 0.10.170
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/database/api/.generated/edge.js +6 -3
- package/dist/database/api/.generated/index-browser.js +3 -0
- package/dist/database/api/.generated/index.d.ts +113 -0
- package/dist/database/api/.generated/index.js +6 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +17 -15
- package/dist/database/api/.generated/wasm.js +3 -0
- package/dist/src/eden/index.d.ts +108 -3
- package/dist/src/index.d.ts +36 -1
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/factoryFinder.js +2 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.d.ts +3 -1
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.js +8 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/PendleYTProcessor.d.ts +29 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/PendleYTProcessor.js +31 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.js +3 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +4 -0
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +1 -0
- package/dist/src/modules/v4/campaign/campaign.model.js +1 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.js +2 -1
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +18 -1
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +2 -1
- package/dist/src/modules/v4/opportunity/opportunity.model.js +1 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +24 -105
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +2 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +31 -5
- package/dist/src/modules/v4/price/price.controller.js +1 -1
- package/dist/src/modules/v4/price/price.service.d.ts +1 -1
- package/dist/src/modules/v4/price/price.service.js +3 -3
- package/dist/src/modules/v4/reward/reward.repository.d.ts +4 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +22 -0
- package/dist/src/modules/v4/router.d.ts +36 -1
- package/dist/src/modules/v4/token/token.controller.d.ts +6 -0
- package/dist/src/modules/v4/token/token.service.d.ts +12 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +8 -0
- package/dist/src/routes/v3/blacklist.d.ts +36 -1
- package/dist/src/routes/v3/campaigns.d.ts +36 -1
- package/dist/src/routes/v3/campaignsInfo.d.ts +36 -1
- package/dist/src/routes/v3/multiChainPositions.d.ts +36 -1
- package/dist/src/routes/v3/opportunity.d.ts +36 -1
- package/dist/src/routes/v3/positions.d.ts +36 -1
- package/dist/src/routes/v3/rewards.d.ts +36 -1
- package/dist/src/routes/v3/updates.d.ts +36 -1
- package/dist/src/routes/v3/userRewards.d.ts +36 -1
- package/dist/src/utils/decodeCalls.js +4 -1
- package/dist/src/utils/encodeCalls.js +4 -1
- package/dist/src/utils/generateCardName.js +2 -0
- package/dist/src/utils/prices/services/erc4626Service.js +7 -1
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -61,7 +61,9 @@ declare const eden: {
|
|
61
61
|
address: string;
|
62
62
|
icon: string;
|
63
63
|
decimals: number;
|
64
|
+
displaySymbol: string;
|
64
65
|
verified: boolean;
|
66
|
+
isTest: boolean;
|
65
67
|
price: number | null;
|
66
68
|
};
|
67
69
|
amount: bigint;
|
@@ -76,7 +78,9 @@ declare const eden: {
|
|
76
78
|
address: string;
|
77
79
|
icon: string;
|
78
80
|
decimals: number;
|
81
|
+
displaySymbol: string;
|
79
82
|
verified: boolean;
|
83
|
+
isTest: boolean;
|
80
84
|
price: number | null;
|
81
85
|
}[];
|
82
86
|
chain: {
|
@@ -151,7 +155,9 @@ declare const eden: {
|
|
151
155
|
address: string;
|
152
156
|
icon: string;
|
153
157
|
decimals: number;
|
158
|
+
displaySymbol: string;
|
154
159
|
verified: boolean;
|
160
|
+
isTest: boolean;
|
155
161
|
price: number | null;
|
156
162
|
};
|
157
163
|
amount: bigint;
|
@@ -166,7 +172,9 @@ declare const eden: {
|
|
166
172
|
address: string;
|
167
173
|
icon: string;
|
168
174
|
decimals: number;
|
175
|
+
displaySymbol: string;
|
169
176
|
verified: boolean;
|
177
|
+
isTest: boolean;
|
170
178
|
price: number | null;
|
171
179
|
}[];
|
172
180
|
chain: {
|
@@ -207,7 +215,9 @@ declare const eden: {
|
|
207
215
|
address: string;
|
208
216
|
icon: string;
|
209
217
|
decimals: number;
|
218
|
+
displaySymbol: string;
|
210
219
|
verified: boolean;
|
220
|
+
isTest: boolean;
|
211
221
|
price: number | null;
|
212
222
|
};
|
213
223
|
distributionChain: {
|
@@ -277,6 +287,7 @@ declare const eden: {
|
|
277
287
|
action?: string | undefined;
|
278
288
|
mainProtocolId?: string | undefined;
|
279
289
|
order?: undefined;
|
290
|
+
test?: boolean | undefined;
|
280
291
|
minimumTvl?: number | undefined;
|
281
292
|
};
|
282
293
|
fetch?: RequestInit | undefined;
|
@@ -322,7 +333,9 @@ declare const eden: {
|
|
322
333
|
address: string;
|
323
334
|
icon: string;
|
324
335
|
decimals: number;
|
336
|
+
displaySymbol: string;
|
325
337
|
verified: boolean;
|
338
|
+
isTest: boolean;
|
326
339
|
price: number | null;
|
327
340
|
};
|
328
341
|
amount: bigint;
|
@@ -337,7 +350,9 @@ declare const eden: {
|
|
337
350
|
address: string;
|
338
351
|
icon: string;
|
339
352
|
decimals: number;
|
353
|
+
displaySymbol: string;
|
340
354
|
verified: boolean;
|
355
|
+
isTest: boolean;
|
341
356
|
price: number | null;
|
342
357
|
}[];
|
343
358
|
chain: {
|
@@ -381,6 +396,7 @@ declare const eden: {
|
|
381
396
|
action?: string | undefined;
|
382
397
|
mainProtocolId?: string | undefined;
|
383
398
|
order?: undefined;
|
399
|
+
test?: boolean | undefined;
|
384
400
|
minimumTvl?: number | undefined;
|
385
401
|
};
|
386
402
|
fetch?: RequestInit | undefined;
|
@@ -405,12 +421,13 @@ declare const eden: {
|
|
405
421
|
action?: string | undefined;
|
406
422
|
mainProtocolId?: string | undefined;
|
407
423
|
order?: undefined;
|
424
|
+
test?: boolean | undefined;
|
408
425
|
minimumTvl?: number | undefined;
|
409
426
|
};
|
410
427
|
fetch?: RequestInit | undefined;
|
411
428
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
412
429
|
200: {
|
413
|
-
sum:
|
430
|
+
sum: number | null;
|
414
431
|
};
|
415
432
|
}>>;
|
416
433
|
}) & {};
|
@@ -469,6 +486,7 @@ declare const eden: {
|
|
469
486
|
campaignId?: string | undefined;
|
470
487
|
opportunityId?: string | undefined;
|
471
488
|
tokenSymbol?: string | undefined;
|
489
|
+
test?: boolean | undefined;
|
472
490
|
};
|
473
491
|
fetch?: RequestInit | undefined;
|
474
492
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
@@ -487,7 +505,9 @@ declare const eden: {
|
|
487
505
|
address: string;
|
488
506
|
icon: string;
|
489
507
|
decimals: number;
|
508
|
+
displaySymbol: string;
|
490
509
|
verified: boolean;
|
510
|
+
isTest: boolean;
|
491
511
|
price: number | null;
|
492
512
|
};
|
493
513
|
distributionChain: {
|
@@ -534,6 +554,7 @@ declare const eden: {
|
|
534
554
|
campaignId?: string | undefined;
|
535
555
|
opportunityId?: string | undefined;
|
536
556
|
tokenSymbol?: string | undefined;
|
557
|
+
test?: boolean | undefined;
|
537
558
|
};
|
538
559
|
fetch?: RequestInit | undefined;
|
539
560
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
@@ -652,7 +673,9 @@ declare const eden: {
|
|
652
673
|
address: string;
|
653
674
|
icon: string;
|
654
675
|
decimals: number;
|
676
|
+
displaySymbol: string;
|
655
677
|
verified: boolean;
|
678
|
+
isTest: boolean;
|
656
679
|
price?: number | null | undefined;
|
657
680
|
} | undefined;
|
658
681
|
}>>;
|
@@ -676,7 +699,9 @@ declare const eden: {
|
|
676
699
|
address: string;
|
677
700
|
icon: string;
|
678
701
|
decimals: number;
|
702
|
+
displaySymbol: string;
|
679
703
|
verified: boolean;
|
704
|
+
isTest: boolean;
|
680
705
|
} & {
|
681
706
|
price?: number | null | undefined;
|
682
707
|
} & {
|
@@ -704,7 +729,9 @@ declare const eden: {
|
|
704
729
|
address: string;
|
705
730
|
icon: string;
|
706
731
|
decimals: number;
|
732
|
+
displaySymbol: string;
|
707
733
|
verified: boolean;
|
734
|
+
isTest: boolean;
|
708
735
|
} & {
|
709
736
|
price?: number | null | undefined;
|
710
737
|
})[];
|
@@ -1176,7 +1203,9 @@ declare const eden: {
|
|
1176
1203
|
address: string;
|
1177
1204
|
icon: string;
|
1178
1205
|
decimals: number;
|
1206
|
+
displaySymbol: string;
|
1179
1207
|
verified: boolean;
|
1208
|
+
isTest: boolean;
|
1180
1209
|
price: number | null;
|
1181
1210
|
};
|
1182
1211
|
breakdowns: {
|
@@ -1195,7 +1224,9 @@ declare const eden: {
|
|
1195
1224
|
address: string;
|
1196
1225
|
icon: string;
|
1197
1226
|
decimals: number;
|
1227
|
+
displaySymbol: string;
|
1198
1228
|
verified: boolean;
|
1229
|
+
isTest: boolean;
|
1199
1230
|
price: number | null;
|
1200
1231
|
}[];
|
1201
1232
|
Protocols: {
|
@@ -1275,7 +1306,9 @@ declare const eden: {
|
|
1275
1306
|
address: string;
|
1276
1307
|
icon: string;
|
1277
1308
|
decimals: number;
|
1309
|
+
displaySymbol: string;
|
1278
1310
|
verified: boolean;
|
1311
|
+
isTest: boolean;
|
1279
1312
|
price: number | null;
|
1280
1313
|
};
|
1281
1314
|
breakdowns: {
|
@@ -1294,7 +1327,9 @@ declare const eden: {
|
|
1294
1327
|
address: string;
|
1295
1328
|
icon: string;
|
1296
1329
|
decimals: number;
|
1330
|
+
displaySymbol: string;
|
1297
1331
|
verified: boolean;
|
1332
|
+
isTest: boolean;
|
1298
1333
|
price: number | null;
|
1299
1334
|
}[];
|
1300
1335
|
Protocols: {
|
@@ -1927,7 +1962,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
1927
1962
|
address: string;
|
1928
1963
|
icon: string;
|
1929
1964
|
decimals: number;
|
1965
|
+
displaySymbol: string;
|
1930
1966
|
verified: boolean;
|
1967
|
+
isTest: boolean;
|
1931
1968
|
price: number | null;
|
1932
1969
|
};
|
1933
1970
|
amount: bigint;
|
@@ -1942,7 +1979,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
1942
1979
|
address: string;
|
1943
1980
|
icon: string;
|
1944
1981
|
decimals: number;
|
1982
|
+
displaySymbol: string;
|
1945
1983
|
verified: boolean;
|
1984
|
+
isTest: boolean;
|
1946
1985
|
price: number | null;
|
1947
1986
|
}[];
|
1948
1987
|
chain: {
|
@@ -2026,7 +2065,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2026
2065
|
address: string;
|
2027
2066
|
icon: string;
|
2028
2067
|
decimals: number;
|
2068
|
+
displaySymbol: string;
|
2029
2069
|
verified: boolean;
|
2070
|
+
isTest: boolean;
|
2030
2071
|
price: number | null;
|
2031
2072
|
};
|
2032
2073
|
amount: bigint;
|
@@ -2041,7 +2082,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2041
2082
|
address: string;
|
2042
2083
|
icon: string;
|
2043
2084
|
decimals: number;
|
2085
|
+
displaySymbol: string;
|
2044
2086
|
verified: boolean;
|
2087
|
+
isTest: boolean;
|
2045
2088
|
price: number | null;
|
2046
2089
|
}[];
|
2047
2090
|
chain: {
|
@@ -2082,7 +2125,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2082
2125
|
address: string;
|
2083
2126
|
icon: string;
|
2084
2127
|
decimals: number;
|
2128
|
+
displaySymbol: string;
|
2085
2129
|
verified: boolean;
|
2130
|
+
isTest: boolean;
|
2086
2131
|
price: number | null;
|
2087
2132
|
};
|
2088
2133
|
distributionChain: {
|
@@ -2135,6 +2180,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2135
2180
|
action?: string | undefined;
|
2136
2181
|
mainProtocolId?: string | undefined;
|
2137
2182
|
order?: undefined;
|
2183
|
+
test?: boolean | undefined;
|
2138
2184
|
minimumTvl?: number | undefined;
|
2139
2185
|
};
|
2140
2186
|
headers: unknown;
|
@@ -2180,7 +2226,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2180
2226
|
address: string;
|
2181
2227
|
icon: string;
|
2182
2228
|
decimals: number;
|
2229
|
+
displaySymbol: string;
|
2183
2230
|
verified: boolean;
|
2231
|
+
isTest: boolean;
|
2184
2232
|
price: number | null;
|
2185
2233
|
};
|
2186
2234
|
amount: bigint;
|
@@ -2195,7 +2243,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2195
2243
|
address: string;
|
2196
2244
|
icon: string;
|
2197
2245
|
decimals: number;
|
2246
|
+
displaySymbol: string;
|
2198
2247
|
verified: boolean;
|
2248
|
+
isTest: boolean;
|
2199
2249
|
price: number | null;
|
2200
2250
|
}[];
|
2201
2251
|
chain: {
|
@@ -2244,6 +2294,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2244
2294
|
action?: string | undefined;
|
2245
2295
|
mainProtocolId?: string | undefined;
|
2246
2296
|
order?: undefined;
|
2297
|
+
test?: boolean | undefined;
|
2247
2298
|
minimumTvl?: number | undefined;
|
2248
2299
|
};
|
2249
2300
|
headers: unknown;
|
@@ -2274,12 +2325,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2274
2325
|
action?: string | undefined;
|
2275
2326
|
mainProtocolId?: string | undefined;
|
2276
2327
|
order?: undefined;
|
2328
|
+
test?: boolean | undefined;
|
2277
2329
|
minimumTvl?: number | undefined;
|
2278
2330
|
};
|
2279
2331
|
headers: unknown;
|
2280
2332
|
response: {
|
2281
2333
|
200: {
|
2282
|
-
sum:
|
2334
|
+
sum: number | null;
|
2283
2335
|
};
|
2284
2336
|
};
|
2285
2337
|
};
|
@@ -2349,6 +2401,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2349
2401
|
campaignId?: string | undefined;
|
2350
2402
|
opportunityId?: string | undefined;
|
2351
2403
|
tokenSymbol?: string | undefined;
|
2404
|
+
test?: boolean | undefined;
|
2352
2405
|
};
|
2353
2406
|
headers: unknown;
|
2354
2407
|
response: {
|
@@ -2367,7 +2420,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2367
2420
|
address: string;
|
2368
2421
|
icon: string;
|
2369
2422
|
decimals: number;
|
2423
|
+
displaySymbol: string;
|
2370
2424
|
verified: boolean;
|
2425
|
+
isTest: boolean;
|
2371
2426
|
price: number | null;
|
2372
2427
|
};
|
2373
2428
|
distributionChain: {
|
@@ -2417,6 +2472,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2417
2472
|
campaignId?: string | undefined;
|
2418
2473
|
opportunityId?: string | undefined;
|
2419
2474
|
tokenSymbol?: string | undefined;
|
2475
|
+
test?: boolean | undefined;
|
2420
2476
|
};
|
2421
2477
|
headers: unknown;
|
2422
2478
|
response: {
|
@@ -2570,7 +2626,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2570
2626
|
address: string;
|
2571
2627
|
icon: string;
|
2572
2628
|
decimals: number;
|
2629
|
+
displaySymbol: string;
|
2573
2630
|
verified: boolean;
|
2631
|
+
isTest: boolean;
|
2574
2632
|
price?: number | null | undefined;
|
2575
2633
|
} | undefined;
|
2576
2634
|
};
|
@@ -2599,7 +2657,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2599
2657
|
address: string;
|
2600
2658
|
icon: string;
|
2601
2659
|
decimals: number;
|
2660
|
+
displaySymbol: string;
|
2602
2661
|
verified: boolean;
|
2662
|
+
isTest: boolean;
|
2603
2663
|
} & {
|
2604
2664
|
price?: number | null | undefined;
|
2605
2665
|
} & {
|
@@ -2632,7 +2692,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
2632
2692
|
address: string;
|
2633
2693
|
icon: string;
|
2634
2694
|
decimals: number;
|
2695
|
+
displaySymbol: string;
|
2635
2696
|
verified: boolean;
|
2697
|
+
isTest: boolean;
|
2636
2698
|
} & {
|
2637
2699
|
price?: number | null | undefined;
|
2638
2700
|
})[];
|
@@ -3295,7 +3357,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
3295
3357
|
address: string;
|
3296
3358
|
icon: string;
|
3297
3359
|
decimals: number;
|
3360
|
+
displaySymbol: string;
|
3298
3361
|
verified: boolean;
|
3362
|
+
isTest: boolean;
|
3299
3363
|
price: number | null;
|
3300
3364
|
};
|
3301
3365
|
breakdowns: {
|
@@ -3314,7 +3378,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
3314
3378
|
address: string;
|
3315
3379
|
icon: string;
|
3316
3380
|
decimals: number;
|
3381
|
+
displaySymbol: string;
|
3317
3382
|
verified: boolean;
|
3383
|
+
isTest: boolean;
|
3318
3384
|
price: number | null;
|
3319
3385
|
}[];
|
3320
3386
|
Protocols: {
|
@@ -3405,7 +3471,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
3405
3471
|
address: string;
|
3406
3472
|
icon: string;
|
3407
3473
|
decimals: number;
|
3474
|
+
displaySymbol: string;
|
3408
3475
|
verified: boolean;
|
3476
|
+
isTest: boolean;
|
3409
3477
|
price: number | null;
|
3410
3478
|
};
|
3411
3479
|
breakdowns: {
|
@@ -3424,7 +3492,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
3424
3492
|
address: string;
|
3425
3493
|
icon: string;
|
3426
3494
|
decimals: number;
|
3495
|
+
displaySymbol: string;
|
3427
3496
|
verified: boolean;
|
3497
|
+
isTest: boolean;
|
3428
3498
|
price: number | null;
|
3429
3499
|
}[];
|
3430
3500
|
Protocols: {
|
@@ -4108,7 +4178,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4108
4178
|
address: string;
|
4109
4179
|
icon: string;
|
4110
4180
|
decimals: number;
|
4181
|
+
displaySymbol: string;
|
4111
4182
|
verified: boolean;
|
4183
|
+
isTest: boolean;
|
4112
4184
|
price: number | null;
|
4113
4185
|
};
|
4114
4186
|
amount: bigint;
|
@@ -4123,7 +4195,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4123
4195
|
address: string;
|
4124
4196
|
icon: string;
|
4125
4197
|
decimals: number;
|
4198
|
+
displaySymbol: string;
|
4126
4199
|
verified: boolean;
|
4200
|
+
isTest: boolean;
|
4127
4201
|
price: number | null;
|
4128
4202
|
}[];
|
4129
4203
|
chain: {
|
@@ -4198,7 +4272,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4198
4272
|
address: string;
|
4199
4273
|
icon: string;
|
4200
4274
|
decimals: number;
|
4275
|
+
displaySymbol: string;
|
4201
4276
|
verified: boolean;
|
4277
|
+
isTest: boolean;
|
4202
4278
|
price: number | null;
|
4203
4279
|
};
|
4204
4280
|
amount: bigint;
|
@@ -4213,7 +4289,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4213
4289
|
address: string;
|
4214
4290
|
icon: string;
|
4215
4291
|
decimals: number;
|
4292
|
+
displaySymbol: string;
|
4216
4293
|
verified: boolean;
|
4294
|
+
isTest: boolean;
|
4217
4295
|
price: number | null;
|
4218
4296
|
}[];
|
4219
4297
|
chain: {
|
@@ -4254,7 +4332,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4254
4332
|
address: string;
|
4255
4333
|
icon: string;
|
4256
4334
|
decimals: number;
|
4335
|
+
displaySymbol: string;
|
4257
4336
|
verified: boolean;
|
4337
|
+
isTest: boolean;
|
4258
4338
|
price: number | null;
|
4259
4339
|
};
|
4260
4340
|
distributionChain: {
|
@@ -4324,6 +4404,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4324
4404
|
action?: string | undefined;
|
4325
4405
|
mainProtocolId?: string | undefined;
|
4326
4406
|
order?: undefined;
|
4407
|
+
test?: boolean | undefined;
|
4327
4408
|
minimumTvl?: number | undefined;
|
4328
4409
|
};
|
4329
4410
|
fetch?: RequestInit | undefined;
|
@@ -4369,7 +4450,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4369
4450
|
address: string;
|
4370
4451
|
icon: string;
|
4371
4452
|
decimals: number;
|
4453
|
+
displaySymbol: string;
|
4372
4454
|
verified: boolean;
|
4455
|
+
isTest: boolean;
|
4373
4456
|
price: number | null;
|
4374
4457
|
};
|
4375
4458
|
amount: bigint;
|
@@ -4384,7 +4467,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4384
4467
|
address: string;
|
4385
4468
|
icon: string;
|
4386
4469
|
decimals: number;
|
4470
|
+
displaySymbol: string;
|
4387
4471
|
verified: boolean;
|
4472
|
+
isTest: boolean;
|
4388
4473
|
price: number | null;
|
4389
4474
|
}[];
|
4390
4475
|
chain: {
|
@@ -4428,6 +4513,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4428
4513
|
action?: string | undefined;
|
4429
4514
|
mainProtocolId?: string | undefined;
|
4430
4515
|
order?: undefined;
|
4516
|
+
test?: boolean | undefined;
|
4431
4517
|
minimumTvl?: number | undefined;
|
4432
4518
|
};
|
4433
4519
|
fetch?: RequestInit | undefined;
|
@@ -4452,12 +4538,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4452
4538
|
action?: string | undefined;
|
4453
4539
|
mainProtocolId?: string | undefined;
|
4454
4540
|
order?: undefined;
|
4541
|
+
test?: boolean | undefined;
|
4455
4542
|
minimumTvl?: number | undefined;
|
4456
4543
|
};
|
4457
4544
|
fetch?: RequestInit | undefined;
|
4458
4545
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
4459
4546
|
200: {
|
4460
|
-
sum:
|
4547
|
+
sum: number | null;
|
4461
4548
|
};
|
4462
4549
|
}>>;
|
4463
4550
|
}) & {};
|
@@ -4516,6 +4603,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4516
4603
|
campaignId?: string | undefined;
|
4517
4604
|
opportunityId?: string | undefined;
|
4518
4605
|
tokenSymbol?: string | undefined;
|
4606
|
+
test?: boolean | undefined;
|
4519
4607
|
};
|
4520
4608
|
fetch?: RequestInit | undefined;
|
4521
4609
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
@@ -4534,7 +4622,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4534
4622
|
address: string;
|
4535
4623
|
icon: string;
|
4536
4624
|
decimals: number;
|
4625
|
+
displaySymbol: string;
|
4537
4626
|
verified: boolean;
|
4627
|
+
isTest: boolean;
|
4538
4628
|
price: number | null;
|
4539
4629
|
};
|
4540
4630
|
distributionChain: {
|
@@ -4581,6 +4671,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4581
4671
|
campaignId?: string | undefined;
|
4582
4672
|
opportunityId?: string | undefined;
|
4583
4673
|
tokenSymbol?: string | undefined;
|
4674
|
+
test?: boolean | undefined;
|
4584
4675
|
};
|
4585
4676
|
fetch?: RequestInit | undefined;
|
4586
4677
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
@@ -4699,7 +4790,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4699
4790
|
address: string;
|
4700
4791
|
icon: string;
|
4701
4792
|
decimals: number;
|
4793
|
+
displaySymbol: string;
|
4702
4794
|
verified: boolean;
|
4795
|
+
isTest: boolean;
|
4703
4796
|
price?: number | null | undefined;
|
4704
4797
|
} | undefined;
|
4705
4798
|
}>>;
|
@@ -4723,7 +4816,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4723
4816
|
address: string;
|
4724
4817
|
icon: string;
|
4725
4818
|
decimals: number;
|
4819
|
+
displaySymbol: string;
|
4726
4820
|
verified: boolean;
|
4821
|
+
isTest: boolean;
|
4727
4822
|
} & {
|
4728
4823
|
price?: number | null | undefined;
|
4729
4824
|
} & {
|
@@ -4751,7 +4846,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
4751
4846
|
address: string;
|
4752
4847
|
icon: string;
|
4753
4848
|
decimals: number;
|
4849
|
+
displaySymbol: string;
|
4754
4850
|
verified: boolean;
|
4851
|
+
isTest: boolean;
|
4755
4852
|
} & {
|
4756
4853
|
price?: number | null | undefined;
|
4757
4854
|
})[];
|
@@ -5223,7 +5320,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5223
5320
|
address: string;
|
5224
5321
|
icon: string;
|
5225
5322
|
decimals: number;
|
5323
|
+
displaySymbol: string;
|
5226
5324
|
verified: boolean;
|
5325
|
+
isTest: boolean;
|
5227
5326
|
price: number | null;
|
5228
5327
|
};
|
5229
5328
|
breakdowns: {
|
@@ -5242,7 +5341,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5242
5341
|
address: string;
|
5243
5342
|
icon: string;
|
5244
5343
|
decimals: number;
|
5344
|
+
displaySymbol: string;
|
5245
5345
|
verified: boolean;
|
5346
|
+
isTest: boolean;
|
5246
5347
|
price: number | null;
|
5247
5348
|
}[];
|
5248
5349
|
Protocols: {
|
@@ -5322,7 +5423,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5322
5423
|
address: string;
|
5323
5424
|
icon: string;
|
5324
5425
|
decimals: number;
|
5426
|
+
displaySymbol: string;
|
5325
5427
|
verified: boolean;
|
5428
|
+
isTest: boolean;
|
5326
5429
|
price: number | null;
|
5327
5430
|
};
|
5328
5431
|
breakdowns: {
|
@@ -5341,7 +5444,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5341
5444
|
address: string;
|
5342
5445
|
icon: string;
|
5343
5446
|
decimals: number;
|
5447
|
+
displaySymbol: string;
|
5344
5448
|
verified: boolean;
|
5449
|
+
isTest: boolean;
|
5345
5450
|
price: number | null;
|
5346
5451
|
}[];
|
5347
5452
|
Protocols: {
|