@merkl/api 0.20.153 → 0.20.155
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/drizzle/schema.d.ts +84 -7
- package/dist/database/api/.generated/drizzle/schema.js +4 -1
- package/dist/database/api/.generated/drizzle/schema.ts +4 -1
- package/dist/database/api/.generated/edge.js +12 -4
- package/dist/database/api/.generated/index-browser.js +9 -1
- package/dist/database/api/.generated/index.d.ts +303 -79
- package/dist/database/api/.generated/index.js +12 -4
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +5 -0
- package/dist/database/api/.generated/wasm.js +9 -1
- package/dist/src/eden/index.d.ts +135 -3
- package/dist/src/index.d.ts +47 -1
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +13 -0
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.model.js +1 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +18 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +32 -0
- package/dist/src/modules/v4/campaign/campaign.service.js +2 -1
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +6 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +1 -1
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +3 -2
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +24 -1
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +9 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +23 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +35 -0
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +3 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +17 -0
- package/dist/src/modules/v4/router.d.ts +47 -1
- package/dist/src/modules/v4/user/user.controller.d.ts +4 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -106,7 +106,9 @@ declare const eden: {
|
|
106
106
|
override: {
|
107
107
|
patch: (body: {
|
108
108
|
name?: string | undefined;
|
109
|
+
description?: string | undefined;
|
109
110
|
action?: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | "INVALID" | undefined;
|
111
|
+
howToSteps?: string[] | undefined;
|
110
112
|
depositUrl?: string | undefined;
|
111
113
|
explorerAddress?: string | undefined;
|
112
114
|
}, options: {
|
@@ -121,11 +123,13 @@ declare const eden: {
|
|
121
123
|
name: string;
|
122
124
|
type: string;
|
123
125
|
status: import("@db/api").$Enums.Status;
|
126
|
+
description: string;
|
124
127
|
tags: string[];
|
125
128
|
identifier: string;
|
126
129
|
action: import("@db/api").$Enums.OpportunityAction;
|
127
130
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
128
131
|
chainId: number;
|
132
|
+
howToSteps: string[];
|
129
133
|
depositUrl: string | null;
|
130
134
|
explorerAddress: string | null;
|
131
135
|
mainProtocolId: string | null;
|
@@ -135,7 +139,7 @@ declare const eden: {
|
|
135
139
|
lastCampaignCreatedAt: Date;
|
136
140
|
};
|
137
141
|
}>>;
|
138
|
-
delete: (body: ("name" | "action" | "depositUrl" | "explorerAddress")[], options: {
|
142
|
+
delete: (body: ("name" | "description" | "action" | "howToSteps" | "depositUrl" | "explorerAddress")[], options: {
|
139
143
|
headers: {
|
140
144
|
authorization: string;
|
141
145
|
};
|
@@ -171,11 +175,13 @@ declare const eden: {
|
|
171
175
|
name: string;
|
172
176
|
type: string;
|
173
177
|
status: import("@db/api").$Enums.Status;
|
178
|
+
description: string;
|
174
179
|
tags: string[];
|
175
180
|
identifier: string;
|
176
181
|
action: import("@db/api").$Enums.OpportunityAction;
|
177
182
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
178
183
|
chainId: number;
|
184
|
+
howToSteps: string[];
|
179
185
|
depositUrl: string | null;
|
180
186
|
explorerAddress: string | null;
|
181
187
|
mainProtocolId: string | null;
|
@@ -250,11 +256,13 @@ declare const eden: {
|
|
250
256
|
name: string;
|
251
257
|
type: string;
|
252
258
|
status: import("@db/api").$Enums.Status;
|
259
|
+
description: string;
|
253
260
|
tags: string[];
|
254
261
|
identifier: string;
|
255
262
|
action: import("@db/api").$Enums.OpportunityAction;
|
256
263
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
257
264
|
chainId: number;
|
265
|
+
howToSteps: string[];
|
258
266
|
depositUrl: string | null;
|
259
267
|
explorerAddress: string | null;
|
260
268
|
mainProtocolId: string | null;
|
@@ -309,7 +317,9 @@ declare const eden: {
|
|
309
317
|
tags: string[];
|
310
318
|
icon: string;
|
311
319
|
} | null | undefined;
|
320
|
+
description?: string | undefined;
|
312
321
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
322
|
+
howToSteps?: string[] | undefined;
|
313
323
|
depositUrl?: string | undefined;
|
314
324
|
explorerAddress?: string | undefined;
|
315
325
|
aprRecord?: {
|
@@ -420,7 +430,9 @@ declare const eden: {
|
|
420
430
|
tags: string[];
|
421
431
|
icon: string;
|
422
432
|
} | null | undefined;
|
433
|
+
description?: string | undefined;
|
423
434
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
435
|
+
howToSteps?: string[] | undefined;
|
424
436
|
depositUrl?: string | undefined;
|
425
437
|
explorerAddress?: string | undefined;
|
426
438
|
aprRecord?: {
|
@@ -503,6 +515,7 @@ declare const eden: {
|
|
503
515
|
dailyRewards: number;
|
504
516
|
lastCampaignCreatedAt: string;
|
505
517
|
campaigns: {
|
518
|
+
description?: string | undefined;
|
506
519
|
creator?: {
|
507
520
|
tags?: string[] | undefined;
|
508
521
|
creatorId?: string | null | undefined;
|
@@ -621,11 +634,13 @@ declare const eden: {
|
|
621
634
|
name: string;
|
622
635
|
type: string;
|
623
636
|
status: import("@db/api").$Enums.Status;
|
637
|
+
description: string;
|
624
638
|
tags: string[];
|
625
639
|
identifier: string;
|
626
640
|
action: import("@db/api").$Enums.OpportunityAction;
|
627
641
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
628
642
|
chainId: number;
|
643
|
+
howToSteps: string[];
|
629
644
|
depositUrl: string | null;
|
630
645
|
explorerAddress: string | null;
|
631
646
|
mainProtocolId: string | null;
|
@@ -768,16 +783,19 @@ declare const eden: {
|
|
768
783
|
creatorId: string | null;
|
769
784
|
};
|
770
785
|
createdAt: string;
|
786
|
+
description: string | undefined;
|
771
787
|
Opportunity: {
|
772
788
|
id: string;
|
773
789
|
name: string;
|
774
790
|
type: string;
|
775
791
|
status: import("@db/api").$Enums.Status;
|
792
|
+
description: string;
|
776
793
|
tags: string[];
|
777
794
|
identifier: string;
|
778
795
|
action: import("@db/api").$Enums.OpportunityAction;
|
779
796
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
780
797
|
chainId: number;
|
798
|
+
howToSteps: string[];
|
781
799
|
depositUrl: string | null;
|
782
800
|
explorerAddress: string | null;
|
783
801
|
mainProtocolId: string | null;
|
@@ -833,10 +851,12 @@ declare const eden: {
|
|
833
851
|
name: string;
|
834
852
|
type: string;
|
835
853
|
status: import("@db/api").$Enums.Status;
|
854
|
+
description: string;
|
836
855
|
tags: string[];
|
837
856
|
identifier: string;
|
838
857
|
action: import("@db/api").$Enums.OpportunityAction;
|
839
858
|
chainId: number;
|
859
|
+
howToSteps: string[];
|
840
860
|
tvl: number;
|
841
861
|
dailyRewards: number;
|
842
862
|
}[];
|
@@ -911,7 +931,9 @@ declare const eden: {
|
|
911
931
|
tags: string[];
|
912
932
|
icon: string;
|
913
933
|
} | null | undefined;
|
934
|
+
description?: string | undefined;
|
914
935
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
936
|
+
howToSteps?: string[] | undefined;
|
915
937
|
depositUrl?: string | undefined;
|
916
938
|
explorerAddress?: string | undefined;
|
917
939
|
aprRecord?: {
|
@@ -994,6 +1016,7 @@ declare const eden: {
|
|
994
1016
|
dailyRewards: number;
|
995
1017
|
lastCampaignCreatedAt: string;
|
996
1018
|
campaigns: {
|
1019
|
+
description?: string | undefined;
|
997
1020
|
creator?: {
|
998
1021
|
tags?: string[] | undefined;
|
999
1022
|
creatorId?: string | null | undefined;
|
@@ -1218,16 +1241,19 @@ declare const eden: {
|
|
1218
1241
|
creatorId: string | null;
|
1219
1242
|
};
|
1220
1243
|
createdAt: string;
|
1244
|
+
description: string | undefined;
|
1221
1245
|
Opportunity: {
|
1222
1246
|
id: string;
|
1223
1247
|
name: string;
|
1224
1248
|
type: string;
|
1225
1249
|
status: import("@db/api").$Enums.Status;
|
1250
|
+
description: string;
|
1226
1251
|
tags: string[];
|
1227
1252
|
identifier: string;
|
1228
1253
|
action: import("@db/api").$Enums.OpportunityAction;
|
1229
1254
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
1230
1255
|
chainId: number;
|
1256
|
+
howToSteps: string[];
|
1231
1257
|
depositUrl: string | null;
|
1232
1258
|
explorerAddress: string | null;
|
1233
1259
|
mainProtocolId: string | null;
|
@@ -1275,6 +1301,7 @@ declare const eden: {
|
|
1275
1301
|
200: {
|
1276
1302
|
id: string;
|
1277
1303
|
type: string;
|
1304
|
+
description: string | null;
|
1278
1305
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
1279
1306
|
subType: number | null;
|
1280
1307
|
computeChainId: number;
|
@@ -1318,11 +1345,13 @@ declare const eden: {
|
|
1318
1345
|
name: string;
|
1319
1346
|
type: string;
|
1320
1347
|
status: import("@db/api").$Enums.Status;
|
1348
|
+
description: string;
|
1321
1349
|
tags: string[];
|
1322
1350
|
identifier: string;
|
1323
1351
|
action: import("@db/api").$Enums.OpportunityAction;
|
1324
1352
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
1325
1353
|
chainId: number;
|
1354
|
+
howToSteps: string[];
|
1326
1355
|
depositUrl: string | null;
|
1327
1356
|
explorerAddress: string | null;
|
1328
1357
|
mainProtocolId: string | null;
|
@@ -1421,6 +1450,7 @@ declare const eden: {
|
|
1421
1450
|
200: {
|
1422
1451
|
id: string;
|
1423
1452
|
type: string;
|
1453
|
+
description: string | null;
|
1424
1454
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
1425
1455
|
subType: number | null;
|
1426
1456
|
computeChainId: number;
|
@@ -1512,16 +1542,19 @@ declare const eden: {
|
|
1512
1542
|
creatorId: string | null;
|
1513
1543
|
};
|
1514
1544
|
createdAt: string;
|
1545
|
+
description: string | undefined;
|
1515
1546
|
Opportunity: {
|
1516
1547
|
id: string;
|
1517
1548
|
name: string;
|
1518
1549
|
type: string;
|
1519
1550
|
status: import("@db/api").$Enums.Status;
|
1551
|
+
description: string;
|
1520
1552
|
tags: string[];
|
1521
1553
|
identifier: string;
|
1522
1554
|
action: import("@db/api").$Enums.OpportunityAction;
|
1523
1555
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
1524
1556
|
chainId: number;
|
1557
|
+
howToSteps: string[];
|
1525
1558
|
depositUrl: string | null;
|
1526
1559
|
explorerAddress: string | null;
|
1527
1560
|
mainProtocolId: string | null;
|
@@ -1817,6 +1850,7 @@ declare const eden: {
|
|
1817
1850
|
200: {
|
1818
1851
|
id: string;
|
1819
1852
|
type: string;
|
1853
|
+
description: string | null;
|
1820
1854
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
1821
1855
|
subType: number | null;
|
1822
1856
|
computeChainId: number;
|
@@ -1860,11 +1894,13 @@ declare const eden: {
|
|
1860
1894
|
name: string;
|
1861
1895
|
type: string;
|
1862
1896
|
status: import("@db/api").$Enums.Status;
|
1897
|
+
description: string;
|
1863
1898
|
tags: string[];
|
1864
1899
|
identifier: string;
|
1865
1900
|
action: import("@db/api").$Enums.OpportunityAction;
|
1866
1901
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
1867
1902
|
chainId: number;
|
1903
|
+
howToSteps: string[];
|
1868
1904
|
depositUrl: string | null;
|
1869
1905
|
explorerAddress: string | null;
|
1870
1906
|
mainProtocolId: string | null;
|
@@ -1915,6 +1951,7 @@ declare const eden: {
|
|
1915
1951
|
200: {
|
1916
1952
|
id: string;
|
1917
1953
|
type: string;
|
1954
|
+
description: string | null;
|
1918
1955
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
1919
1956
|
subType: number | null;
|
1920
1957
|
computeChainId: number;
|
@@ -1958,11 +1995,13 @@ declare const eden: {
|
|
1958
1995
|
name: string;
|
1959
1996
|
type: string;
|
1960
1997
|
status: import("@db/api").$Enums.Status;
|
1998
|
+
description: string;
|
1961
1999
|
tags: string[];
|
1962
2000
|
identifier: string;
|
1963
2001
|
action: import("@db/api").$Enums.OpportunityAction;
|
1964
2002
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
1965
2003
|
chainId: number;
|
2004
|
+
howToSteps: string[];
|
1966
2005
|
depositUrl: string | null;
|
1967
2006
|
explorerAddress: string | null;
|
1968
2007
|
mainProtocolId: string | null;
|
@@ -3281,11 +3320,13 @@ declare const eden: {
|
|
3281
3320
|
name: string;
|
3282
3321
|
type: string;
|
3283
3322
|
status: import("@db/api").$Enums.Status;
|
3323
|
+
description: string;
|
3284
3324
|
tags: string[];
|
3285
3325
|
identifier: string;
|
3286
3326
|
action: import("@db/api").$Enums.OpportunityAction;
|
3287
3327
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
3288
3328
|
chainId: number;
|
3329
|
+
howToSteps: string[];
|
3289
3330
|
depositUrl: string | null;
|
3290
3331
|
explorerAddress: string | null;
|
3291
3332
|
mainProtocolId: string | null;
|
@@ -3393,11 +3434,13 @@ declare const eden: {
|
|
3393
3434
|
name: string;
|
3394
3435
|
type: string;
|
3395
3436
|
status: import("@db/api").$Enums.Status;
|
3437
|
+
description: string;
|
3396
3438
|
tags: string[];
|
3397
3439
|
identifier: string;
|
3398
3440
|
action: import("@db/api").$Enums.OpportunityAction;
|
3399
3441
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
3400
3442
|
chainId: number;
|
3443
|
+
howToSteps: string[];
|
3401
3444
|
depositUrl: string | null;
|
3402
3445
|
explorerAddress: string | null;
|
3403
3446
|
mainProtocolId: string | null;
|
@@ -5445,11 +5488,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5445
5488
|
name: string;
|
5446
5489
|
type: string;
|
5447
5490
|
status: import("@db/api").$Enums.Status;
|
5491
|
+
description: string;
|
5448
5492
|
tags: string[];
|
5449
5493
|
identifier: string;
|
5450
5494
|
action: import("@db/api").$Enums.OpportunityAction;
|
5451
5495
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
5452
5496
|
chainId: number;
|
5497
|
+
howToSteps: string[];
|
5453
5498
|
depositUrl: string | null;
|
5454
5499
|
explorerAddress: string | null;
|
5455
5500
|
mainProtocolId: string | null;
|
@@ -5469,7 +5514,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5469
5514
|
patch: {
|
5470
5515
|
body: {
|
5471
5516
|
name?: string | undefined;
|
5517
|
+
description?: string | undefined;
|
5472
5518
|
action?: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | "INVALID" | undefined;
|
5519
|
+
howToSteps?: string[] | undefined;
|
5473
5520
|
depositUrl?: string | undefined;
|
5474
5521
|
explorerAddress?: string | undefined;
|
5475
5522
|
};
|
@@ -5486,11 +5533,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5486
5533
|
name: string;
|
5487
5534
|
type: string;
|
5488
5535
|
status: import("@db/api").$Enums.Status;
|
5536
|
+
description: string;
|
5489
5537
|
tags: string[];
|
5490
5538
|
identifier: string;
|
5491
5539
|
action: import("@db/api").$Enums.OpportunityAction;
|
5492
5540
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
5493
5541
|
chainId: number;
|
5542
|
+
howToSteps: string[];
|
5494
5543
|
depositUrl: string | null;
|
5495
5544
|
explorerAddress: string | null;
|
5496
5545
|
mainProtocolId: string | null;
|
@@ -5509,7 +5558,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5509
5558
|
":id": {
|
5510
5559
|
override: {
|
5511
5560
|
delete: {
|
5512
|
-
body: ("name" | "action" | "depositUrl" | "explorerAddress")[];
|
5561
|
+
body: ("name" | "description" | "action" | "howToSteps" | "depositUrl" | "explorerAddress")[];
|
5513
5562
|
params: {
|
5514
5563
|
id: string;
|
5515
5564
|
};
|
@@ -5547,11 +5596,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5547
5596
|
name: string;
|
5548
5597
|
type: string;
|
5549
5598
|
status: import("@db/api").$Enums.Status;
|
5599
|
+
description: string;
|
5550
5600
|
tags: string[];
|
5551
5601
|
identifier: string;
|
5552
5602
|
action: import("@db/api").$Enums.OpportunityAction;
|
5553
5603
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
5554
5604
|
chainId: number;
|
5605
|
+
howToSteps: string[];
|
5555
5606
|
depositUrl: string | null;
|
5556
5607
|
explorerAddress: string | null;
|
5557
5608
|
mainProtocolId: string | null;
|
@@ -5636,11 +5687,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5636
5687
|
name: string;
|
5637
5688
|
type: string;
|
5638
5689
|
status: import("@db/api").$Enums.Status;
|
5690
|
+
description: string;
|
5639
5691
|
tags: string[];
|
5640
5692
|
identifier: string;
|
5641
5693
|
action: import("@db/api").$Enums.OpportunityAction;
|
5642
5694
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
5643
5695
|
chainId: number;
|
5696
|
+
howToSteps: string[];
|
5644
5697
|
depositUrl: string | null;
|
5645
5698
|
explorerAddress: string | null;
|
5646
5699
|
mainProtocolId: string | null;
|
@@ -5818,16 +5871,19 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5818
5871
|
creatorId: string | null;
|
5819
5872
|
};
|
5820
5873
|
createdAt: string;
|
5874
|
+
description: string | undefined;
|
5821
5875
|
Opportunity: {
|
5822
5876
|
id: string;
|
5823
5877
|
name: string;
|
5824
5878
|
type: string;
|
5825
5879
|
status: import("@db/api").$Enums.Status;
|
5880
|
+
description: string;
|
5826
5881
|
tags: string[];
|
5827
5882
|
identifier: string;
|
5828
5883
|
action: import("@db/api").$Enums.OpportunityAction;
|
5829
5884
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
5830
5885
|
chainId: number;
|
5886
|
+
howToSteps: string[];
|
5831
5887
|
depositUrl: string | null;
|
5832
5888
|
explorerAddress: string | null;
|
5833
5889
|
mainProtocolId: string | null;
|
@@ -5883,10 +5939,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5883
5939
|
name: string;
|
5884
5940
|
type: string;
|
5885
5941
|
status: import("@db/api").$Enums.Status;
|
5942
|
+
description: string;
|
5886
5943
|
tags: string[];
|
5887
5944
|
identifier: string;
|
5888
5945
|
action: import("@db/api").$Enums.OpportunityAction;
|
5889
5946
|
chainId: number;
|
5947
|
+
howToSteps: string[];
|
5890
5948
|
tvl: number;
|
5891
5949
|
dailyRewards: number;
|
5892
5950
|
}[];
|
@@ -5953,7 +6011,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
5953
6011
|
tags: string[];
|
5954
6012
|
icon: string;
|
5955
6013
|
} | null | undefined;
|
6014
|
+
description?: string | undefined;
|
5956
6015
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
6016
|
+
howToSteps?: string[] | undefined;
|
5957
6017
|
depositUrl?: string | undefined;
|
5958
6018
|
explorerAddress?: string | undefined;
|
5959
6019
|
aprRecord?: {
|
@@ -6090,7 +6150,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6090
6150
|
tags: string[];
|
6091
6151
|
icon: string;
|
6092
6152
|
} | null | undefined;
|
6153
|
+
description?: string | undefined;
|
6093
6154
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
6155
|
+
howToSteps?: string[] | undefined;
|
6094
6156
|
depositUrl?: string | undefined;
|
6095
6157
|
explorerAddress?: string | undefined;
|
6096
6158
|
aprRecord?: {
|
@@ -6173,6 +6235,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6173
6235
|
dailyRewards: number;
|
6174
6236
|
lastCampaignCreatedAt: string;
|
6175
6237
|
campaigns: {
|
6238
|
+
description?: string | undefined;
|
6176
6239
|
creator?: {
|
6177
6240
|
tags?: string[] | undefined;
|
6178
6241
|
creatorId?: string | null | undefined;
|
@@ -6263,7 +6326,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6263
6326
|
tags: string[];
|
6264
6327
|
icon: string;
|
6265
6328
|
} | null | undefined;
|
6329
|
+
description?: string | undefined;
|
6266
6330
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
6331
|
+
howToSteps?: string[] | undefined;
|
6267
6332
|
depositUrl?: string | undefined;
|
6268
6333
|
explorerAddress?: string | undefined;
|
6269
6334
|
aprRecord?: {
|
@@ -6346,6 +6411,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6346
6411
|
dailyRewards: number;
|
6347
6412
|
lastCampaignCreatedAt: string;
|
6348
6413
|
campaigns: {
|
6414
|
+
description?: string | undefined;
|
6349
6415
|
creator?: {
|
6350
6416
|
tags?: string[] | undefined;
|
6351
6417
|
creatorId?: string | null | undefined;
|
@@ -6574,6 +6640,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6574
6640
|
200: {
|
6575
6641
|
id: string;
|
6576
6642
|
type: string;
|
6643
|
+
description: string | null;
|
6577
6644
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
6578
6645
|
subType: number | null;
|
6579
6646
|
computeChainId: number;
|
@@ -6617,11 +6684,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6617
6684
|
name: string;
|
6618
6685
|
type: string;
|
6619
6686
|
status: import("@db/api").$Enums.Status;
|
6687
|
+
description: string;
|
6620
6688
|
tags: string[];
|
6621
6689
|
identifier: string;
|
6622
6690
|
action: import("@db/api").$Enums.OpportunityAction;
|
6623
6691
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
6624
6692
|
chainId: number;
|
6693
|
+
howToSteps: string[];
|
6625
6694
|
depositUrl: string | null;
|
6626
6695
|
explorerAddress: string | null;
|
6627
6696
|
mainProtocolId: string | null;
|
@@ -6732,6 +6801,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6732
6801
|
200: {
|
6733
6802
|
id: string;
|
6734
6803
|
type: string;
|
6804
|
+
description: string | null;
|
6735
6805
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
6736
6806
|
subType: number | null;
|
6737
6807
|
computeChainId: number;
|
@@ -6826,16 +6896,19 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6826
6896
|
creatorId: string | null;
|
6827
6897
|
};
|
6828
6898
|
createdAt: string;
|
6899
|
+
description: string | undefined;
|
6829
6900
|
Opportunity: {
|
6830
6901
|
id: string;
|
6831
6902
|
name: string;
|
6832
6903
|
type: string;
|
6833
6904
|
status: import("@db/api").$Enums.Status;
|
6905
|
+
description: string;
|
6834
6906
|
tags: string[];
|
6835
6907
|
identifier: string;
|
6836
6908
|
action: import("@db/api").$Enums.OpportunityAction;
|
6837
6909
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
6838
6910
|
chainId: number;
|
6911
|
+
howToSteps: string[];
|
6839
6912
|
depositUrl: string | null;
|
6840
6913
|
explorerAddress: string | null;
|
6841
6914
|
mainProtocolId: string | null;
|
@@ -6913,16 +6986,19 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
6913
6986
|
creatorId: string | null;
|
6914
6987
|
};
|
6915
6988
|
createdAt: string;
|
6989
|
+
description: string | undefined;
|
6916
6990
|
Opportunity: {
|
6917
6991
|
id: string;
|
6918
6992
|
name: string;
|
6919
6993
|
type: string;
|
6920
6994
|
status: import("@db/api").$Enums.Status;
|
6995
|
+
description: string;
|
6921
6996
|
tags: string[];
|
6922
6997
|
identifier: string;
|
6923
6998
|
action: import("@db/api").$Enums.OpportunityAction;
|
6924
6999
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
6925
7000
|
chainId: number;
|
7001
|
+
howToSteps: string[];
|
6926
7002
|
depositUrl: string | null;
|
6927
7003
|
explorerAddress: string | null;
|
6928
7004
|
mainProtocolId: string | null;
|
@@ -7116,16 +7192,19 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7116
7192
|
creatorId: string | null;
|
7117
7193
|
};
|
7118
7194
|
createdAt: string;
|
7195
|
+
description: string | undefined;
|
7119
7196
|
Opportunity: {
|
7120
7197
|
id: string;
|
7121
7198
|
name: string;
|
7122
7199
|
type: string;
|
7123
7200
|
status: import("@db/api").$Enums.Status;
|
7201
|
+
description: string;
|
7124
7202
|
tags: string[];
|
7125
7203
|
identifier: string;
|
7126
7204
|
action: import("@db/api").$Enums.OpportunityAction;
|
7127
7205
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
7128
7206
|
chainId: number;
|
7207
|
+
howToSteps: string[];
|
7129
7208
|
depositUrl: string | null;
|
7130
7209
|
explorerAddress: string | null;
|
7131
7210
|
mainProtocolId: string | null;
|
@@ -7455,6 +7534,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7455
7534
|
200: {
|
7456
7535
|
id: string;
|
7457
7536
|
type: string;
|
7537
|
+
description: string | null;
|
7458
7538
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
7459
7539
|
subType: number | null;
|
7460
7540
|
computeChainId: number;
|
@@ -7498,11 +7578,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7498
7578
|
name: string;
|
7499
7579
|
type: string;
|
7500
7580
|
status: import("@db/api").$Enums.Status;
|
7581
|
+
description: string;
|
7501
7582
|
tags: string[];
|
7502
7583
|
identifier: string;
|
7503
7584
|
action: import("@db/api").$Enums.OpportunityAction;
|
7504
7585
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
7505
7586
|
chainId: number;
|
7587
|
+
howToSteps: string[];
|
7506
7588
|
depositUrl: string | null;
|
7507
7589
|
explorerAddress: string | null;
|
7508
7590
|
mainProtocolId: string | null;
|
@@ -7560,6 +7642,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7560
7642
|
200: {
|
7561
7643
|
id: string;
|
7562
7644
|
type: string;
|
7645
|
+
description: string | null;
|
7563
7646
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
7564
7647
|
subType: number | null;
|
7565
7648
|
computeChainId: number;
|
@@ -7603,11 +7686,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7603
7686
|
name: string;
|
7604
7687
|
type: string;
|
7605
7688
|
status: import("@db/api").$Enums.Status;
|
7689
|
+
description: string;
|
7606
7690
|
tags: string[];
|
7607
7691
|
identifier: string;
|
7608
7692
|
action: import("@db/api").$Enums.OpportunityAction;
|
7609
7693
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
7610
7694
|
chainId: number;
|
7695
|
+
howToSteps: string[];
|
7611
7696
|
depositUrl: string | null;
|
7612
7697
|
explorerAddress: string | null;
|
7613
7698
|
mainProtocolId: string | null;
|
@@ -9235,11 +9320,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9235
9320
|
name: string;
|
9236
9321
|
type: string;
|
9237
9322
|
status: import("@db/api").$Enums.Status;
|
9323
|
+
description: string;
|
9238
9324
|
tags: string[];
|
9239
9325
|
identifier: string;
|
9240
9326
|
action: import("@db/api").$Enums.OpportunityAction;
|
9241
9327
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
9242
9328
|
chainId: number;
|
9329
|
+
howToSteps: string[];
|
9243
9330
|
depositUrl: string | null;
|
9244
9331
|
explorerAddress: string | null;
|
9245
9332
|
mainProtocolId: string | null;
|
@@ -9358,11 +9445,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9358
9445
|
name: string;
|
9359
9446
|
type: string;
|
9360
9447
|
status: import("@db/api").$Enums.Status;
|
9448
|
+
description: string;
|
9361
9449
|
tags: string[];
|
9362
9450
|
identifier: string;
|
9363
9451
|
action: import("@db/api").$Enums.OpportunityAction;
|
9364
9452
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
9365
9453
|
chainId: number;
|
9454
|
+
howToSteps: string[];
|
9366
9455
|
depositUrl: string | null;
|
9367
9456
|
explorerAddress: string | null;
|
9368
9457
|
mainProtocolId: string | null;
|
@@ -11802,7 +11891,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11802
11891
|
override: {
|
11803
11892
|
patch: (body: {
|
11804
11893
|
name?: string | undefined;
|
11894
|
+
description?: string | undefined;
|
11805
11895
|
action?: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "SWAP" | "INVALID" | undefined;
|
11896
|
+
howToSteps?: string[] | undefined;
|
11806
11897
|
depositUrl?: string | undefined;
|
11807
11898
|
explorerAddress?: string | undefined;
|
11808
11899
|
}, options: {
|
@@ -11817,11 +11908,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11817
11908
|
name: string;
|
11818
11909
|
type: string;
|
11819
11910
|
status: import("@db/api").$Enums.Status;
|
11911
|
+
description: string;
|
11820
11912
|
tags: string[];
|
11821
11913
|
identifier: string;
|
11822
11914
|
action: import("@db/api").$Enums.OpportunityAction;
|
11823
11915
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
11824
11916
|
chainId: number;
|
11917
|
+
howToSteps: string[];
|
11825
11918
|
depositUrl: string | null;
|
11826
11919
|
explorerAddress: string | null;
|
11827
11920
|
mainProtocolId: string | null;
|
@@ -11831,7 +11924,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11831
11924
|
lastCampaignCreatedAt: Date;
|
11832
11925
|
};
|
11833
11926
|
}>>;
|
11834
|
-
delete: (body: ("name" | "action" | "depositUrl" | "explorerAddress")[], options: {
|
11927
|
+
delete: (body: ("name" | "description" | "action" | "howToSteps" | "depositUrl" | "explorerAddress")[], options: {
|
11835
11928
|
headers: {
|
11836
11929
|
authorization: string;
|
11837
11930
|
};
|
@@ -11867,11 +11960,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11867
11960
|
name: string;
|
11868
11961
|
type: string;
|
11869
11962
|
status: import("@db/api").$Enums.Status;
|
11963
|
+
description: string;
|
11870
11964
|
tags: string[];
|
11871
11965
|
identifier: string;
|
11872
11966
|
action: import("@db/api").$Enums.OpportunityAction;
|
11873
11967
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
11874
11968
|
chainId: number;
|
11969
|
+
howToSteps: string[];
|
11875
11970
|
depositUrl: string | null;
|
11876
11971
|
explorerAddress: string | null;
|
11877
11972
|
mainProtocolId: string | null;
|
@@ -11946,11 +12041,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11946
12041
|
name: string;
|
11947
12042
|
type: string;
|
11948
12043
|
status: import("@db/api").$Enums.Status;
|
12044
|
+
description: string;
|
11949
12045
|
tags: string[];
|
11950
12046
|
identifier: string;
|
11951
12047
|
action: import("@db/api").$Enums.OpportunityAction;
|
11952
12048
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
11953
12049
|
chainId: number;
|
12050
|
+
howToSteps: string[];
|
11954
12051
|
depositUrl: string | null;
|
11955
12052
|
explorerAddress: string | null;
|
11956
12053
|
mainProtocolId: string | null;
|
@@ -12005,7 +12102,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12005
12102
|
tags: string[];
|
12006
12103
|
icon: string;
|
12007
12104
|
} | null | undefined;
|
12105
|
+
description?: string | undefined;
|
12008
12106
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12107
|
+
howToSteps?: string[] | undefined;
|
12009
12108
|
depositUrl?: string | undefined;
|
12010
12109
|
explorerAddress?: string | undefined;
|
12011
12110
|
aprRecord?: {
|
@@ -12116,7 +12215,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12116
12215
|
tags: string[];
|
12117
12216
|
icon: string;
|
12118
12217
|
} | null | undefined;
|
12218
|
+
description?: string | undefined;
|
12119
12219
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12220
|
+
howToSteps?: string[] | undefined;
|
12120
12221
|
depositUrl?: string | undefined;
|
12121
12222
|
explorerAddress?: string | undefined;
|
12122
12223
|
aprRecord?: {
|
@@ -12199,6 +12300,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12199
12300
|
dailyRewards: number;
|
12200
12301
|
lastCampaignCreatedAt: string;
|
12201
12302
|
campaigns: {
|
12303
|
+
description?: string | undefined;
|
12202
12304
|
creator?: {
|
12203
12305
|
tags?: string[] | undefined;
|
12204
12306
|
creatorId?: string | null | undefined;
|
@@ -12317,11 +12419,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12317
12419
|
name: string;
|
12318
12420
|
type: string;
|
12319
12421
|
status: import("@db/api").$Enums.Status;
|
12422
|
+
description: string;
|
12320
12423
|
tags: string[];
|
12321
12424
|
identifier: string;
|
12322
12425
|
action: import("@db/api").$Enums.OpportunityAction;
|
12323
12426
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
12324
12427
|
chainId: number;
|
12428
|
+
howToSteps: string[];
|
12325
12429
|
depositUrl: string | null;
|
12326
12430
|
explorerAddress: string | null;
|
12327
12431
|
mainProtocolId: string | null;
|
@@ -12464,16 +12568,19 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12464
12568
|
creatorId: string | null;
|
12465
12569
|
};
|
12466
12570
|
createdAt: string;
|
12571
|
+
description: string | undefined;
|
12467
12572
|
Opportunity: {
|
12468
12573
|
id: string;
|
12469
12574
|
name: string;
|
12470
12575
|
type: string;
|
12471
12576
|
status: import("@db/api").$Enums.Status;
|
12577
|
+
description: string;
|
12472
12578
|
tags: string[];
|
12473
12579
|
identifier: string;
|
12474
12580
|
action: import("@db/api").$Enums.OpportunityAction;
|
12475
12581
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
12476
12582
|
chainId: number;
|
12583
|
+
howToSteps: string[];
|
12477
12584
|
depositUrl: string | null;
|
12478
12585
|
explorerAddress: string | null;
|
12479
12586
|
mainProtocolId: string | null;
|
@@ -12529,10 +12636,12 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12529
12636
|
name: string;
|
12530
12637
|
type: string;
|
12531
12638
|
status: import("@db/api").$Enums.Status;
|
12639
|
+
description: string;
|
12532
12640
|
tags: string[];
|
12533
12641
|
identifier: string;
|
12534
12642
|
action: import("@db/api").$Enums.OpportunityAction;
|
12535
12643
|
chainId: number;
|
12644
|
+
howToSteps: string[];
|
12536
12645
|
tvl: number;
|
12537
12646
|
dailyRewards: number;
|
12538
12647
|
}[];
|
@@ -12607,7 +12716,9 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12607
12716
|
tags: string[];
|
12608
12717
|
icon: string;
|
12609
12718
|
} | null | undefined;
|
12719
|
+
description?: string | undefined;
|
12610
12720
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | undefined;
|
12721
|
+
howToSteps?: string[] | undefined;
|
12611
12722
|
depositUrl?: string | undefined;
|
12612
12723
|
explorerAddress?: string | undefined;
|
12613
12724
|
aprRecord?: {
|
@@ -12690,6 +12801,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12690
12801
|
dailyRewards: number;
|
12691
12802
|
lastCampaignCreatedAt: string;
|
12692
12803
|
campaigns: {
|
12804
|
+
description?: string | undefined;
|
12693
12805
|
creator?: {
|
12694
12806
|
tags?: string[] | undefined;
|
12695
12807
|
creatorId?: string | null | undefined;
|
@@ -12914,16 +13026,19 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12914
13026
|
creatorId: string | null;
|
12915
13027
|
};
|
12916
13028
|
createdAt: string;
|
13029
|
+
description: string | undefined;
|
12917
13030
|
Opportunity: {
|
12918
13031
|
id: string;
|
12919
13032
|
name: string;
|
12920
13033
|
type: string;
|
12921
13034
|
status: import("@db/api").$Enums.Status;
|
13035
|
+
description: string;
|
12922
13036
|
tags: string[];
|
12923
13037
|
identifier: string;
|
12924
13038
|
action: import("@db/api").$Enums.OpportunityAction;
|
12925
13039
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
12926
13040
|
chainId: number;
|
13041
|
+
howToSteps: string[];
|
12927
13042
|
depositUrl: string | null;
|
12928
13043
|
explorerAddress: string | null;
|
12929
13044
|
mainProtocolId: string | null;
|
@@ -12971,6 +13086,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12971
13086
|
200: {
|
12972
13087
|
id: string;
|
12973
13088
|
type: string;
|
13089
|
+
description: string | null;
|
12974
13090
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
12975
13091
|
subType: number | null;
|
12976
13092
|
computeChainId: number;
|
@@ -13014,11 +13130,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13014
13130
|
name: string;
|
13015
13131
|
type: string;
|
13016
13132
|
status: import("@db/api").$Enums.Status;
|
13133
|
+
description: string;
|
13017
13134
|
tags: string[];
|
13018
13135
|
identifier: string;
|
13019
13136
|
action: import("@db/api").$Enums.OpportunityAction;
|
13020
13137
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
13021
13138
|
chainId: number;
|
13139
|
+
howToSteps: string[];
|
13022
13140
|
depositUrl: string | null;
|
13023
13141
|
explorerAddress: string | null;
|
13024
13142
|
mainProtocolId: string | null;
|
@@ -13117,6 +13235,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13117
13235
|
200: {
|
13118
13236
|
id: string;
|
13119
13237
|
type: string;
|
13238
|
+
description: string | null;
|
13120
13239
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
13121
13240
|
subType: number | null;
|
13122
13241
|
computeChainId: number;
|
@@ -13208,16 +13327,19 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13208
13327
|
creatorId: string | null;
|
13209
13328
|
};
|
13210
13329
|
createdAt: string;
|
13330
|
+
description: string | undefined;
|
13211
13331
|
Opportunity: {
|
13212
13332
|
id: string;
|
13213
13333
|
name: string;
|
13214
13334
|
type: string;
|
13215
13335
|
status: import("@db/api").$Enums.Status;
|
13336
|
+
description: string;
|
13216
13337
|
tags: string[];
|
13217
13338
|
identifier: string;
|
13218
13339
|
action: import("@db/api").$Enums.OpportunityAction;
|
13219
13340
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
13220
13341
|
chainId: number;
|
13342
|
+
howToSteps: string[];
|
13221
13343
|
depositUrl: string | null;
|
13222
13344
|
explorerAddress: string | null;
|
13223
13345
|
mainProtocolId: string | null;
|
@@ -13513,6 +13635,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13513
13635
|
200: {
|
13514
13636
|
id: string;
|
13515
13637
|
type: string;
|
13638
|
+
description: string | null;
|
13516
13639
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
13517
13640
|
subType: number | null;
|
13518
13641
|
computeChainId: number;
|
@@ -13556,11 +13679,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13556
13679
|
name: string;
|
13557
13680
|
type: string;
|
13558
13681
|
status: import("@db/api").$Enums.Status;
|
13682
|
+
description: string;
|
13559
13683
|
tags: string[];
|
13560
13684
|
identifier: string;
|
13561
13685
|
action: import("@db/api").$Enums.OpportunityAction;
|
13562
13686
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
13563
13687
|
chainId: number;
|
13688
|
+
howToSteps: string[];
|
13564
13689
|
depositUrl: string | null;
|
13565
13690
|
explorerAddress: string | null;
|
13566
13691
|
mainProtocolId: string | null;
|
@@ -13611,6 +13736,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13611
13736
|
200: {
|
13612
13737
|
id: string;
|
13613
13738
|
type: string;
|
13739
|
+
description: string | null;
|
13614
13740
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
13615
13741
|
subType: number | null;
|
13616
13742
|
computeChainId: number;
|
@@ -13654,11 +13780,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13654
13780
|
name: string;
|
13655
13781
|
type: string;
|
13656
13782
|
status: import("@db/api").$Enums.Status;
|
13783
|
+
description: string;
|
13657
13784
|
tags: string[];
|
13658
13785
|
identifier: string;
|
13659
13786
|
action: import("@db/api").$Enums.OpportunityAction;
|
13660
13787
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
13661
13788
|
chainId: number;
|
13789
|
+
howToSteps: string[];
|
13662
13790
|
depositUrl: string | null;
|
13663
13791
|
explorerAddress: string | null;
|
13664
13792
|
mainProtocolId: string | null;
|
@@ -14977,11 +15105,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14977
15105
|
name: string;
|
14978
15106
|
type: string;
|
14979
15107
|
status: import("@db/api").$Enums.Status;
|
15108
|
+
description: string;
|
14980
15109
|
tags: string[];
|
14981
15110
|
identifier: string;
|
14982
15111
|
action: import("@db/api").$Enums.OpportunityAction;
|
14983
15112
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
14984
15113
|
chainId: number;
|
15114
|
+
howToSteps: string[];
|
14985
15115
|
depositUrl: string | null;
|
14986
15116
|
explorerAddress: string | null;
|
14987
15117
|
mainProtocolId: string | null;
|
@@ -15089,11 +15219,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15089
15219
|
name: string;
|
15090
15220
|
type: string;
|
15091
15221
|
status: import("@db/api").$Enums.Status;
|
15222
|
+
description: string;
|
15092
15223
|
tags: string[];
|
15093
15224
|
identifier: string;
|
15094
15225
|
action: import("@db/api").$Enums.OpportunityAction;
|
15095
15226
|
manualOverrides: import("@db/api").$Enums.OpportunityManualOverride[];
|
15096
15227
|
chainId: number;
|
15228
|
+
howToSteps: string[];
|
15097
15229
|
depositUrl: string | null;
|
15098
15230
|
explorerAddress: string | null;
|
15099
15231
|
mainProtocolId: string | null;
|