@merkl/api 1.9.31 → 1.9.33
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 +230 -12
- package/dist/src/engine/implementations/ErcMultiToken/metadata.d.ts +1 -1
- package/dist/src/index.d.ts +238 -12
- package/dist/src/modules/v4/apr/apr.model.d.ts +1 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.controller.d.ts +85 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.controller.js.map +1 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.model.d.ts +14 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.model.js.map +1 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.repository.d.ts +10 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.repository.js.map +1 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.service.d.ts +4 -0
- package/dist/src/modules/v4/block-timestamp/block-timestamp.service.js.map +1 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +28 -0
- package/dist/src/modules/v4/campaign/campaign.formatter.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +7 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +9 -0
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +20 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.controller.d.ts +2 -0
- package/dist/src/modules/v4/campaignStatus/campaignStatus.service.d.ts +4 -0
- package/dist/src/modules/v4/carousel/carousel.controller.d.ts +22 -0
- package/dist/src/modules/v4/carousel/carousel.repository.d.ts +6 -0
- package/dist/src/modules/v4/carousel/carousel.service.d.ts +18 -0
- package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +2 -0
- package/dist/src/modules/v4/config/config.controller.d.ts +5 -0
- package/dist/src/modules/v4/config/config.service.d.ts +5 -0
- package/dist/src/modules/v4/creator/creator.controller.d.ts +7 -0
- package/dist/src/modules/v4/creator/creator.model.d.ts +2 -0
- package/dist/src/modules/v4/creator/creator.model.js.map +1 -1
- package/dist/src/modules/v4/dispute/dispute.controller.d.ts +1 -0
- package/dist/src/modules/v4/dispute/dispute.service.d.ts +1 -0
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +2 -0
- package/dist/src/modules/v4/legacy-claims/claims.controller.d.ts +1 -0
- package/dist/src/modules/v4/legacy-claims/claims.service.d.ts +1 -0
- package/dist/src/modules/v4/legacy-claims/claims.service.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +36 -0
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +11 -6
- package/dist/src/modules/v4/opportunity/opportunity.formatter.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +12 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +21 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +47 -12
- package/dist/src/modules/v4/payload/payload.controller.d.ts +9 -0
- package/dist/src/modules/v4/payload/payload.service.d.ts +12 -0
- package/dist/src/modules/v4/program/program.controller.d.ts +12 -0
- package/dist/src/modules/v4/program/program.repository.d.ts +4 -0
- package/dist/src/modules/v4/program/program.service.d.ts +12 -0
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +1 -0
- package/dist/src/modules/v4/programPayload/programPayload.service.d.ts +1 -0
- package/dist/src/modules/v4/reward/reward.model.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +3 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +58 -36
- package/dist/src/modules/v4/reward/reward.service.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +238 -12
- package/dist/src/modules/v4/router.js.map +1 -1
- package/dist/src/modules/v4/token/token.controller.d.ts +9 -0
- package/dist/src/modules/v4/token/token.formatter.d.ts +1 -1
- package/dist/src/modules/v4/token/token.formatter.js.map +1 -1
- package/dist/src/modules/v4/token/token.model.d.ts +2 -0
- package/dist/src/modules/v4/token/token.model.js.map +1 -1
- package/dist/src/modules/v4/token/token.repository.d.ts +3 -1
- package/dist/src/modules/v4/token/token.repository.js.map +1 -1
- package/dist/src/modules/v4/token/token.service.d.ts +1 -0
- package/dist/src/modules/v4/token/token.service.js.map +1 -1
- package/dist/src/modules/v4/transaction/transaction.service.d.ts +410 -410
- package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +8 -0
- package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +4 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +19 -12
- package/dist/src/utils/getAPR.d.ts +200 -200
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -119,6 +119,7 @@ export declare class PayloadService {
|
|
|
119
119
|
isTest: boolean;
|
|
120
120
|
type: import("@package/databases").TokenType;
|
|
121
121
|
isNative: boolean;
|
|
122
|
+
underlyingTokenId: string | null;
|
|
122
123
|
price: number | null;
|
|
123
124
|
updatedAt: number | null;
|
|
124
125
|
priceSource: string | null;
|
|
@@ -167,6 +168,7 @@ export declare class PayloadService {
|
|
|
167
168
|
isTest: boolean;
|
|
168
169
|
type: import("@package/databases").TokenType;
|
|
169
170
|
isNative: boolean;
|
|
171
|
+
underlyingTokenId: string | null;
|
|
170
172
|
price: number | null;
|
|
171
173
|
updatedAt: number | null;
|
|
172
174
|
priceSource: string | null;
|
|
@@ -205,6 +207,7 @@ export declare class PayloadService {
|
|
|
205
207
|
isTest: boolean;
|
|
206
208
|
type: import("@package/databases").TokenType;
|
|
207
209
|
isNative: boolean;
|
|
210
|
+
underlyingTokenId: string | null;
|
|
208
211
|
price: number | null;
|
|
209
212
|
updatedAt: number | null;
|
|
210
213
|
priceSource: string | null;
|
|
@@ -366,6 +369,7 @@ export declare class PayloadService {
|
|
|
366
369
|
isTest: boolean;
|
|
367
370
|
type: import("@package/databases").TokenType;
|
|
368
371
|
isNative: boolean;
|
|
372
|
+
underlyingTokenId: string | null;
|
|
369
373
|
price: number | null;
|
|
370
374
|
updatedAt: number | null;
|
|
371
375
|
priceSource: string | null;
|
|
@@ -414,6 +418,7 @@ export declare class PayloadService {
|
|
|
414
418
|
isTest: boolean;
|
|
415
419
|
type: import("@package/databases").TokenType;
|
|
416
420
|
isNative: boolean;
|
|
421
|
+
underlyingTokenId: string | null;
|
|
417
422
|
price: number | null;
|
|
418
423
|
updatedAt: number | null;
|
|
419
424
|
priceSource: string | null;
|
|
@@ -452,6 +457,7 @@ export declare class PayloadService {
|
|
|
452
457
|
isTest: boolean;
|
|
453
458
|
type: import("@package/databases").TokenType;
|
|
454
459
|
isNative: boolean;
|
|
460
|
+
underlyingTokenId: string | null;
|
|
455
461
|
price: number | null;
|
|
456
462
|
updatedAt: number | null;
|
|
457
463
|
priceSource: string | null;
|
|
@@ -610,6 +616,7 @@ export declare class PayloadService {
|
|
|
610
616
|
isTest: boolean;
|
|
611
617
|
type: import("@package/databases").TokenType;
|
|
612
618
|
isNative: boolean;
|
|
619
|
+
underlyingTokenId: string | null;
|
|
613
620
|
price: number | null;
|
|
614
621
|
updatedAt: number | null;
|
|
615
622
|
priceSource: string | null;
|
|
@@ -658,6 +665,7 @@ export declare class PayloadService {
|
|
|
658
665
|
isTest: boolean;
|
|
659
666
|
type: import("@package/databases").TokenType;
|
|
660
667
|
isNative: boolean;
|
|
668
|
+
underlyingTokenId: string | null;
|
|
661
669
|
price: number | null;
|
|
662
670
|
updatedAt: number | null;
|
|
663
671
|
priceSource: string | null;
|
|
@@ -696,6 +704,7 @@ export declare class PayloadService {
|
|
|
696
704
|
isTest: boolean;
|
|
697
705
|
type: import("@package/databases").TokenType;
|
|
698
706
|
isNative: boolean;
|
|
707
|
+
underlyingTokenId: string | null;
|
|
699
708
|
price: number | null;
|
|
700
709
|
updatedAt: number | null;
|
|
701
710
|
priceSource: string | null;
|
|
@@ -865,6 +874,7 @@ export declare class PayloadService {
|
|
|
865
874
|
isTest: boolean;
|
|
866
875
|
type: import("@package/databases").TokenType;
|
|
867
876
|
isNative: boolean;
|
|
877
|
+
underlyingTokenId: string | null;
|
|
868
878
|
price: number | null;
|
|
869
879
|
updatedAt: number | null;
|
|
870
880
|
priceSource: string | null;
|
|
@@ -913,6 +923,7 @@ export declare class PayloadService {
|
|
|
913
923
|
isTest: boolean;
|
|
914
924
|
type: import("@package/databases").TokenType;
|
|
915
925
|
isNative: boolean;
|
|
926
|
+
underlyingTokenId: string | null;
|
|
916
927
|
price: number | null;
|
|
917
928
|
updatedAt: number | null;
|
|
918
929
|
priceSource: string | null;
|
|
@@ -951,6 +962,7 @@ export declare class PayloadService {
|
|
|
951
962
|
isTest: boolean;
|
|
952
963
|
type: import("@package/databases").TokenType;
|
|
953
964
|
isNative: boolean;
|
|
965
|
+
underlyingTokenId: string | null;
|
|
954
966
|
price: number | null;
|
|
955
967
|
updatedAt: number | null;
|
|
956
968
|
priceSource: string | null;
|
|
@@ -80,6 +80,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
80
80
|
updatedAt?: number | null | undefined;
|
|
81
81
|
priceSource?: string | null | undefined;
|
|
82
82
|
displaySymbol?: string | undefined;
|
|
83
|
+
underlyingTokenId?: string | undefined;
|
|
83
84
|
}[];
|
|
84
85
|
chain: {
|
|
85
86
|
id: number;
|
|
@@ -148,6 +149,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
148
149
|
updatedAt?: number | null | undefined;
|
|
149
150
|
priceSource?: string | null | undefined;
|
|
150
151
|
displaySymbol?: string | undefined;
|
|
152
|
+
underlyingTokenId?: string | undefined;
|
|
151
153
|
} | undefined;
|
|
152
154
|
} | undefined;
|
|
153
155
|
tvlRecord?: {
|
|
@@ -182,6 +184,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
182
184
|
updatedAt?: number | null | undefined;
|
|
183
185
|
priceSource?: string | null | undefined;
|
|
184
186
|
displaySymbol?: string | undefined;
|
|
187
|
+
underlyingTokenId?: string | undefined;
|
|
185
188
|
};
|
|
186
189
|
amount: string | bigint;
|
|
187
190
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -268,6 +271,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
268
271
|
updatedAt?: number | null | undefined;
|
|
269
272
|
priceSource?: string | null | undefined;
|
|
270
273
|
displaySymbol?: string | undefined;
|
|
274
|
+
underlyingTokenId?: string | undefined;
|
|
271
275
|
}[];
|
|
272
276
|
chain: {
|
|
273
277
|
id: number;
|
|
@@ -336,6 +340,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
336
340
|
updatedAt?: number | null | undefined;
|
|
337
341
|
priceSource?: string | null | undefined;
|
|
338
342
|
displaySymbol?: string | undefined;
|
|
343
|
+
underlyingTokenId?: string | undefined;
|
|
339
344
|
} | undefined;
|
|
340
345
|
} | undefined;
|
|
341
346
|
tvlRecord?: {
|
|
@@ -370,6 +375,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
370
375
|
updatedAt?: number | null | undefined;
|
|
371
376
|
priceSource?: string | null | undefined;
|
|
372
377
|
displaySymbol?: string | undefined;
|
|
378
|
+
underlyingTokenId?: string | undefined;
|
|
373
379
|
};
|
|
374
380
|
amount: string | bigint;
|
|
375
381
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -476,6 +482,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
476
482
|
updatedAt?: number | null | undefined;
|
|
477
483
|
priceSource?: string | null | undefined;
|
|
478
484
|
displaySymbol?: string | undefined;
|
|
485
|
+
underlyingTokenId?: string | undefined;
|
|
479
486
|
}[];
|
|
480
487
|
chain: {
|
|
481
488
|
id: number;
|
|
@@ -544,6 +551,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
544
551
|
updatedAt?: number | null | undefined;
|
|
545
552
|
priceSource?: string | null | undefined;
|
|
546
553
|
displaySymbol?: string | undefined;
|
|
554
|
+
underlyingTokenId?: string | undefined;
|
|
547
555
|
} | undefined;
|
|
548
556
|
} | undefined;
|
|
549
557
|
tvlRecord?: {
|
|
@@ -578,6 +586,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
578
586
|
updatedAt?: number | null | undefined;
|
|
579
587
|
priceSource?: string | null | undefined;
|
|
580
588
|
displaySymbol?: string | undefined;
|
|
589
|
+
underlyingTokenId?: string | undefined;
|
|
581
590
|
};
|
|
582
591
|
amount: string | bigint;
|
|
583
592
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -673,6 +682,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
673
682
|
updatedAt?: number | null | undefined;
|
|
674
683
|
priceSource?: string | null | undefined;
|
|
675
684
|
displaySymbol?: string | undefined;
|
|
685
|
+
underlyingTokenId?: string | undefined;
|
|
676
686
|
}[];
|
|
677
687
|
chain: {
|
|
678
688
|
id: number;
|
|
@@ -741,6 +751,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
741
751
|
updatedAt?: number | null | undefined;
|
|
742
752
|
priceSource?: string | null | undefined;
|
|
743
753
|
displaySymbol?: string | undefined;
|
|
754
|
+
underlyingTokenId?: string | undefined;
|
|
744
755
|
} | undefined;
|
|
745
756
|
} | undefined;
|
|
746
757
|
tvlRecord?: {
|
|
@@ -775,6 +786,7 @@ export declare const ProgramController: Elysia<"/programs", {
|
|
|
775
786
|
updatedAt?: number | null | undefined;
|
|
776
787
|
priceSource?: string | null | undefined;
|
|
777
788
|
displaySymbol?: string | undefined;
|
|
789
|
+
underlyingTokenId?: string | undefined;
|
|
778
790
|
};
|
|
779
791
|
amount: string | bigint;
|
|
780
792
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -63,6 +63,7 @@ export declare abstract class ProgramRepository {
|
|
|
63
63
|
isTest: boolean;
|
|
64
64
|
type: import("@package/databases").TokenType;
|
|
65
65
|
isNative: boolean;
|
|
66
|
+
underlyingTokenId: string | null;
|
|
66
67
|
price: number | null;
|
|
67
68
|
updatedAt: number | null;
|
|
68
69
|
priceSource: string | null;
|
|
@@ -154,6 +155,7 @@ export declare abstract class ProgramRepository {
|
|
|
154
155
|
isTest: boolean;
|
|
155
156
|
type: import("@package/databases").TokenType;
|
|
156
157
|
isNative: boolean;
|
|
158
|
+
underlyingTokenId: string | null;
|
|
157
159
|
price: number | null;
|
|
158
160
|
updatedAt: number | null;
|
|
159
161
|
priceSource: string | null;
|
|
@@ -245,6 +247,7 @@ export declare abstract class ProgramRepository {
|
|
|
245
247
|
isTest: boolean;
|
|
246
248
|
type: import("@package/databases").TokenType;
|
|
247
249
|
isNative: boolean;
|
|
250
|
+
underlyingTokenId: string | null;
|
|
248
251
|
price: number | null;
|
|
249
252
|
updatedAt: number | null;
|
|
250
253
|
priceSource: string | null;
|
|
@@ -337,6 +340,7 @@ export declare abstract class ProgramRepository {
|
|
|
337
340
|
isTest: boolean;
|
|
338
341
|
type: import("@package/databases").TokenType;
|
|
339
342
|
isNative: boolean;
|
|
343
|
+
underlyingTokenId: string | null;
|
|
340
344
|
price: number | null;
|
|
341
345
|
updatedAt: number | null;
|
|
342
346
|
priceSource: string | null;
|
|
@@ -54,6 +54,7 @@ export declare abstract class ProgramService {
|
|
|
54
54
|
updatedAt?: number | null | undefined;
|
|
55
55
|
priceSource?: string | null | undefined;
|
|
56
56
|
displaySymbol?: string | undefined;
|
|
57
|
+
underlyingTokenId?: string | undefined;
|
|
57
58
|
}[];
|
|
58
59
|
chain: {
|
|
59
60
|
id: number;
|
|
@@ -122,6 +123,7 @@ export declare abstract class ProgramService {
|
|
|
122
123
|
updatedAt?: number | null | undefined;
|
|
123
124
|
priceSource?: string | null | undefined;
|
|
124
125
|
displaySymbol?: string | undefined;
|
|
126
|
+
underlyingTokenId?: string | undefined;
|
|
125
127
|
} | undefined;
|
|
126
128
|
} | undefined;
|
|
127
129
|
tvlRecord?: {
|
|
@@ -156,6 +158,7 @@ export declare abstract class ProgramService {
|
|
|
156
158
|
updatedAt?: number | null | undefined;
|
|
157
159
|
priceSource?: string | null | undefined;
|
|
158
160
|
displaySymbol?: string | undefined;
|
|
161
|
+
underlyingTokenId?: string | undefined;
|
|
159
162
|
};
|
|
160
163
|
amount: string | bigint;
|
|
161
164
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -219,6 +222,7 @@ export declare abstract class ProgramService {
|
|
|
219
222
|
updatedAt?: number | null | undefined;
|
|
220
223
|
priceSource?: string | null | undefined;
|
|
221
224
|
displaySymbol?: string | undefined;
|
|
225
|
+
underlyingTokenId?: string | undefined;
|
|
222
226
|
}[];
|
|
223
227
|
chain: {
|
|
224
228
|
id: number;
|
|
@@ -287,6 +291,7 @@ export declare abstract class ProgramService {
|
|
|
287
291
|
updatedAt?: number | null | undefined;
|
|
288
292
|
priceSource?: string | null | undefined;
|
|
289
293
|
displaySymbol?: string | undefined;
|
|
294
|
+
underlyingTokenId?: string | undefined;
|
|
290
295
|
} | undefined;
|
|
291
296
|
} | undefined;
|
|
292
297
|
tvlRecord?: {
|
|
@@ -321,6 +326,7 @@ export declare abstract class ProgramService {
|
|
|
321
326
|
updatedAt?: number | null | undefined;
|
|
322
327
|
priceSource?: string | null | undefined;
|
|
323
328
|
displaySymbol?: string | undefined;
|
|
329
|
+
underlyingTokenId?: string | undefined;
|
|
324
330
|
};
|
|
325
331
|
amount: string | bigint;
|
|
326
332
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -384,6 +390,7 @@ export declare abstract class ProgramService {
|
|
|
384
390
|
updatedAt?: number | null | undefined;
|
|
385
391
|
priceSource?: string | null | undefined;
|
|
386
392
|
displaySymbol?: string | undefined;
|
|
393
|
+
underlyingTokenId?: string | undefined;
|
|
387
394
|
}[];
|
|
388
395
|
chain: {
|
|
389
396
|
id: number;
|
|
@@ -452,6 +459,7 @@ export declare abstract class ProgramService {
|
|
|
452
459
|
updatedAt?: number | null | undefined;
|
|
453
460
|
priceSource?: string | null | undefined;
|
|
454
461
|
displaySymbol?: string | undefined;
|
|
462
|
+
underlyingTokenId?: string | undefined;
|
|
455
463
|
} | undefined;
|
|
456
464
|
} | undefined;
|
|
457
465
|
tvlRecord?: {
|
|
@@ -486,6 +494,7 @@ export declare abstract class ProgramService {
|
|
|
486
494
|
updatedAt?: number | null | undefined;
|
|
487
495
|
priceSource?: string | null | undefined;
|
|
488
496
|
displaySymbol?: string | undefined;
|
|
497
|
+
underlyingTokenId?: string | undefined;
|
|
489
498
|
};
|
|
490
499
|
amount: string | bigint;
|
|
491
500
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -550,6 +559,7 @@ export declare abstract class ProgramService {
|
|
|
550
559
|
updatedAt?: number | null | undefined;
|
|
551
560
|
priceSource?: string | null | undefined;
|
|
552
561
|
displaySymbol?: string | undefined;
|
|
562
|
+
underlyingTokenId?: string | undefined;
|
|
553
563
|
}[];
|
|
554
564
|
chain: {
|
|
555
565
|
id: number;
|
|
@@ -618,6 +628,7 @@ export declare abstract class ProgramService {
|
|
|
618
628
|
updatedAt?: number | null | undefined;
|
|
619
629
|
priceSource?: string | null | undefined;
|
|
620
630
|
displaySymbol?: string | undefined;
|
|
631
|
+
underlyingTokenId?: string | undefined;
|
|
621
632
|
} | undefined;
|
|
622
633
|
} | undefined;
|
|
623
634
|
tvlRecord?: {
|
|
@@ -652,6 +663,7 @@ export declare abstract class ProgramService {
|
|
|
652
663
|
updatedAt?: number | null | undefined;
|
|
653
664
|
priceSource?: string | null | undefined;
|
|
654
665
|
displaySymbol?: string | undefined;
|
|
666
|
+
underlyingTokenId?: string | undefined;
|
|
655
667
|
};
|
|
656
668
|
amount: string | bigint;
|
|
657
669
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -121,6 +121,7 @@ export declare const ProgramPayloadController: Elysia<"/program-payload", {
|
|
|
121
121
|
updatedAt?: number | null | undefined;
|
|
122
122
|
priceSource?: string | null | undefined;
|
|
123
123
|
displaySymbol?: string | undefined;
|
|
124
|
+
underlyingTokenId?: string | undefined;
|
|
124
125
|
};
|
|
125
126
|
chainId: number;
|
|
126
127
|
hash: string;
|
|
@@ -77,6 +77,7 @@ export declare const DailyRewardsBreakdownRecordResourceDto: import("@sinclair/t
|
|
|
77
77
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
78
78
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
79
79
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
80
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
80
81
|
}>;
|
|
81
82
|
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
|
82
83
|
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
|
@@ -119,6 +120,7 @@ export declare const DailyRewardsRecordResourceDto: import("@sinclair/typebox").
|
|
|
119
120
|
updatedAt: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TNumber, import("@sinclair/typebox").TNull]>>;
|
|
120
121
|
priceSource: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TString, import("@sinclair/typebox").TNull]>>;
|
|
121
122
|
displaySymbol: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
123
|
+
underlyingTokenId: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
|
122
124
|
}>;
|
|
123
125
|
amount: import("@sinclair/typebox").TUnion<[import("@sinclair/typebox").TBigInt, import("@sinclair/typebox").TString]>;
|
|
124
126
|
distributionType: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TEnum<{
|
|
@@ -75,6 +75,7 @@ export declare abstract class RewardRepository {
|
|
|
75
75
|
isTest: boolean;
|
|
76
76
|
type: import("@package/databases").TokenType;
|
|
77
77
|
isNative: boolean;
|
|
78
|
+
underlyingTokenId: string | null;
|
|
78
79
|
price: number | null;
|
|
79
80
|
updatedAt: number | null;
|
|
80
81
|
priceSource: string | null;
|
|
@@ -195,6 +196,7 @@ export declare abstract class RewardRepository {
|
|
|
195
196
|
isTest: boolean;
|
|
196
197
|
type: import("@package/databases").TokenType;
|
|
197
198
|
isNative: boolean;
|
|
199
|
+
underlyingTokenId: string | null;
|
|
198
200
|
price: number | null;
|
|
199
201
|
updatedAt: number | null;
|
|
200
202
|
priceSource: string | null;
|
|
@@ -279,6 +281,7 @@ export declare abstract class RewardRepository {
|
|
|
279
281
|
isTest: boolean;
|
|
280
282
|
type: import("@package/databases").TokenType;
|
|
281
283
|
isNative: boolean;
|
|
284
|
+
underlyingTokenId: string | null;
|
|
282
285
|
price: number | null;
|
|
283
286
|
updatedAt: number | null;
|
|
284
287
|
priceSource: string | null;
|
|
@@ -134,6 +134,7 @@ export declare abstract class RewardService {
|
|
|
134
134
|
isTest: boolean;
|
|
135
135
|
type: import("@package/databases").TokenType;
|
|
136
136
|
isNative: boolean;
|
|
137
|
+
underlyingTokenId: string | null;
|
|
137
138
|
price: number | null;
|
|
138
139
|
updatedAt: number | null;
|
|
139
140
|
priceSource: string | null;
|
|
@@ -185,15 +186,16 @@ export declare abstract class RewardService {
|
|
|
185
186
|
address: string;
|
|
186
187
|
decimals: number;
|
|
187
188
|
symbol: string;
|
|
188
|
-
displaySymbol: string;
|
|
189
189
|
icon: string;
|
|
190
190
|
verified: boolean;
|
|
191
|
-
isTest: boolean;
|
|
192
|
-
type: import("@package/databases").TokenType;
|
|
193
191
|
isNative: boolean;
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
192
|
+
isTest: boolean;
|
|
193
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
|
194
|
+
price?: number | null | undefined;
|
|
195
|
+
updatedAt?: number | null | undefined;
|
|
196
|
+
priceSource?: string | null | undefined;
|
|
197
|
+
displaySymbol?: string | undefined;
|
|
198
|
+
underlyingTokenId?: string | undefined;
|
|
197
199
|
};
|
|
198
200
|
breakdowns: {
|
|
199
201
|
root: string;
|
|
@@ -267,6 +269,7 @@ export declare abstract class RewardService {
|
|
|
267
269
|
isTest: boolean;
|
|
268
270
|
type: import("@package/databases").TokenType;
|
|
269
271
|
isNative: boolean;
|
|
272
|
+
underlyingTokenId: string | null;
|
|
270
273
|
price: number | null;
|
|
271
274
|
updatedAt: number | null;
|
|
272
275
|
priceSource: string | null;
|
|
@@ -377,6 +380,7 @@ export declare abstract class RewardService {
|
|
|
377
380
|
isTest: boolean;
|
|
378
381
|
type: import("@package/databases").TokenType;
|
|
379
382
|
isNative: boolean;
|
|
383
|
+
underlyingTokenId: string | null;
|
|
380
384
|
price: number | null;
|
|
381
385
|
updatedAt: number | null;
|
|
382
386
|
priceSource: string | null;
|
|
@@ -497,6 +501,7 @@ export declare abstract class RewardService {
|
|
|
497
501
|
isTest: boolean;
|
|
498
502
|
type: import("@package/databases").TokenType;
|
|
499
503
|
isNative: boolean;
|
|
504
|
+
underlyingTokenId: string | null;
|
|
500
505
|
price: number | null;
|
|
501
506
|
updatedAt: number | null;
|
|
502
507
|
priceSource: string | null;
|
|
@@ -581,6 +586,7 @@ export declare abstract class RewardService {
|
|
|
581
586
|
isTest: boolean;
|
|
582
587
|
type: import("@package/databases").TokenType;
|
|
583
588
|
isNative: boolean;
|
|
589
|
+
underlyingTokenId: string | null;
|
|
584
590
|
price: number | null;
|
|
585
591
|
updatedAt: number | null;
|
|
586
592
|
priceSource: string | null;
|
|
@@ -641,15 +647,16 @@ export declare abstract class RewardService {
|
|
|
641
647
|
address: string;
|
|
642
648
|
decimals: number;
|
|
643
649
|
symbol: string;
|
|
644
|
-
displaySymbol: string;
|
|
645
650
|
icon: string;
|
|
646
651
|
verified: boolean;
|
|
647
|
-
isTest: boolean;
|
|
648
|
-
type: import("@package/databases").TokenType;
|
|
649
652
|
isNative: boolean;
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
+
isTest: boolean;
|
|
654
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
|
655
|
+
price?: number | null | undefined;
|
|
656
|
+
updatedAt?: number | null | undefined;
|
|
657
|
+
priceSource?: string | null | undefined;
|
|
658
|
+
displaySymbol?: string | undefined;
|
|
659
|
+
underlyingTokenId?: string | undefined;
|
|
653
660
|
};
|
|
654
661
|
breakdowns: {
|
|
655
662
|
root: string;
|
|
@@ -723,6 +730,7 @@ export declare abstract class RewardService {
|
|
|
723
730
|
isTest: boolean;
|
|
724
731
|
type: import("@package/databases").TokenType;
|
|
725
732
|
isNative: boolean;
|
|
733
|
+
underlyingTokenId: string | null;
|
|
726
734
|
price: number | null;
|
|
727
735
|
updatedAt: number | null;
|
|
728
736
|
priceSource: string | null;
|
|
@@ -773,15 +781,16 @@ export declare abstract class RewardService {
|
|
|
773
781
|
address: string;
|
|
774
782
|
decimals: number;
|
|
775
783
|
symbol: string;
|
|
776
|
-
displaySymbol: string;
|
|
777
784
|
icon: string;
|
|
778
785
|
verified: boolean;
|
|
779
|
-
isTest: boolean;
|
|
780
|
-
type: import("@package/databases").TokenType;
|
|
781
786
|
isNative: boolean;
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
787
|
+
isTest: boolean;
|
|
788
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
|
789
|
+
price?: number | null | undefined;
|
|
790
|
+
updatedAt?: number | null | undefined;
|
|
791
|
+
priceSource?: string | null | undefined;
|
|
792
|
+
displaySymbol?: string | undefined;
|
|
793
|
+
underlyingTokenId?: string | undefined;
|
|
785
794
|
};
|
|
786
795
|
breakdowns: {
|
|
787
796
|
root: string;
|
|
@@ -855,6 +864,7 @@ export declare abstract class RewardService {
|
|
|
855
864
|
isTest: boolean;
|
|
856
865
|
type: import("@package/databases").TokenType;
|
|
857
866
|
isNative: boolean;
|
|
867
|
+
underlyingTokenId: string | null;
|
|
858
868
|
price: number | null;
|
|
859
869
|
updatedAt: number | null;
|
|
860
870
|
priceSource: string | null;
|
|
@@ -939,6 +949,7 @@ export declare abstract class RewardService {
|
|
|
939
949
|
updatedAt?: number | null | undefined;
|
|
940
950
|
priceSource?: string | null | undefined;
|
|
941
951
|
displaySymbol?: string | undefined;
|
|
952
|
+
underlyingTokenId?: string | undefined;
|
|
942
953
|
}[];
|
|
943
954
|
chain: {
|
|
944
955
|
id: number;
|
|
@@ -1007,6 +1018,7 @@ export declare abstract class RewardService {
|
|
|
1007
1018
|
updatedAt?: number | null | undefined;
|
|
1008
1019
|
priceSource?: string | null | undefined;
|
|
1009
1020
|
displaySymbol?: string | undefined;
|
|
1021
|
+
underlyingTokenId?: string | undefined;
|
|
1010
1022
|
} | undefined;
|
|
1011
1023
|
} | undefined;
|
|
1012
1024
|
tvlRecord?: {
|
|
@@ -1041,6 +1053,7 @@ export declare abstract class RewardService {
|
|
|
1041
1053
|
updatedAt?: number | null | undefined;
|
|
1042
1054
|
priceSource?: string | null | undefined;
|
|
1043
1055
|
displaySymbol?: string | undefined;
|
|
1056
|
+
underlyingTokenId?: string | undefined;
|
|
1044
1057
|
};
|
|
1045
1058
|
amount: string | bigint;
|
|
1046
1059
|
distributionType?: "DUTCH_AUCTION" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "FIX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "FIX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_AMOUNT_PER_LIQUIDITY_VALUE" | "MAX_REWARD_VALUE_PER_LIQUIDITY_AMOUNT" | "MAX_REWARD_VALUE_PER_LIQUIDITY_VALUE" | undefined;
|
|
@@ -1093,15 +1106,16 @@ export declare abstract class RewardService {
|
|
|
1093
1106
|
address: string;
|
|
1094
1107
|
decimals: number;
|
|
1095
1108
|
symbol: string;
|
|
1096
|
-
displaySymbol: string;
|
|
1097
1109
|
icon: string;
|
|
1098
1110
|
verified: boolean;
|
|
1099
|
-
isTest: boolean;
|
|
1100
|
-
type: import("@package/databases").TokenType;
|
|
1101
1111
|
isNative: boolean;
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1112
|
+
isTest: boolean;
|
|
1113
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
|
1114
|
+
price?: number | null | undefined;
|
|
1115
|
+
updatedAt?: number | null | undefined;
|
|
1116
|
+
priceSource?: string | null | undefined;
|
|
1117
|
+
displaySymbol?: string | undefined;
|
|
1118
|
+
underlyingTokenId?: string | undefined;
|
|
1105
1119
|
};
|
|
1106
1120
|
breakdowns: {
|
|
1107
1121
|
root: string;
|
|
@@ -1175,6 +1189,7 @@ export declare abstract class RewardService {
|
|
|
1175
1189
|
isTest: boolean;
|
|
1176
1190
|
type: import("@package/databases").TokenType;
|
|
1177
1191
|
isNative: boolean;
|
|
1192
|
+
underlyingTokenId: string | null;
|
|
1178
1193
|
price: number | null;
|
|
1179
1194
|
updatedAt: number | null;
|
|
1180
1195
|
priceSource: string | null;
|
|
@@ -1225,15 +1240,16 @@ export declare abstract class RewardService {
|
|
|
1225
1240
|
address: string;
|
|
1226
1241
|
decimals: number;
|
|
1227
1242
|
symbol: string;
|
|
1228
|
-
displaySymbol: string;
|
|
1229
1243
|
icon: string;
|
|
1230
1244
|
verified: boolean;
|
|
1231
|
-
isTest: boolean;
|
|
1232
|
-
type: import("@package/databases").TokenType;
|
|
1233
1245
|
isNative: boolean;
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1246
|
+
isTest: boolean;
|
|
1247
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
|
1248
|
+
price?: number | null | undefined;
|
|
1249
|
+
updatedAt?: number | null | undefined;
|
|
1250
|
+
priceSource?: string | null | undefined;
|
|
1251
|
+
displaySymbol?: string | undefined;
|
|
1252
|
+
underlyingTokenId?: string | undefined;
|
|
1237
1253
|
};
|
|
1238
1254
|
breakdowns: {
|
|
1239
1255
|
root: string;
|
|
@@ -1307,6 +1323,7 @@ export declare abstract class RewardService {
|
|
|
1307
1323
|
isTest: boolean;
|
|
1308
1324
|
type: import("@package/databases").TokenType;
|
|
1309
1325
|
isNative: boolean;
|
|
1326
|
+
underlyingTokenId: string | null;
|
|
1310
1327
|
price: number | null;
|
|
1311
1328
|
updatedAt: number | null;
|
|
1312
1329
|
priceSource: string | null;
|
|
@@ -1433,6 +1450,7 @@ export declare abstract class RewardService {
|
|
|
1433
1450
|
isTest: boolean;
|
|
1434
1451
|
type: import("@package/databases").TokenType;
|
|
1435
1452
|
isNative: boolean;
|
|
1453
|
+
underlyingTokenId: string | null;
|
|
1436
1454
|
price: number | null;
|
|
1437
1455
|
updatedAt: number | null;
|
|
1438
1456
|
priceSource: string | null;
|
|
@@ -1553,6 +1571,7 @@ export declare abstract class RewardService {
|
|
|
1553
1571
|
isTest: boolean;
|
|
1554
1572
|
type: import("@package/databases").TokenType;
|
|
1555
1573
|
isNative: boolean;
|
|
1574
|
+
underlyingTokenId: string | null;
|
|
1556
1575
|
price: number | null;
|
|
1557
1576
|
updatedAt: number | null;
|
|
1558
1577
|
priceSource: string | null;
|
|
@@ -1637,6 +1656,7 @@ export declare abstract class RewardService {
|
|
|
1637
1656
|
isTest: boolean;
|
|
1638
1657
|
type: import("@package/databases").TokenType;
|
|
1639
1658
|
isNative: boolean;
|
|
1659
|
+
underlyingTokenId: string | null;
|
|
1640
1660
|
price: number | null;
|
|
1641
1661
|
updatedAt: number | null;
|
|
1642
1662
|
priceSource: string | null;
|
|
@@ -1678,15 +1698,16 @@ export declare abstract class RewardService {
|
|
|
1678
1698
|
address: string;
|
|
1679
1699
|
decimals: number;
|
|
1680
1700
|
symbol: string;
|
|
1681
|
-
displaySymbol: string;
|
|
1682
1701
|
icon: string;
|
|
1683
1702
|
verified: boolean;
|
|
1684
|
-
isTest: boolean;
|
|
1685
|
-
type: import("@package/databases").TokenType;
|
|
1686
1703
|
isNative: boolean;
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1704
|
+
isTest: boolean;
|
|
1705
|
+
type: "POINT" | "PRETGE" | "TOKEN";
|
|
1706
|
+
price?: number | null | undefined;
|
|
1707
|
+
updatedAt?: number | null | undefined;
|
|
1708
|
+
priceSource?: string | null | undefined;
|
|
1709
|
+
displaySymbol?: string | undefined;
|
|
1710
|
+
underlyingTokenId?: string | undefined;
|
|
1690
1711
|
};
|
|
1691
1712
|
breakdowns: {
|
|
1692
1713
|
root: string;
|
|
@@ -1760,6 +1781,7 @@ export declare abstract class RewardService {
|
|
|
1760
1781
|
isTest: boolean;
|
|
1761
1782
|
type: import("@package/databases").TokenType;
|
|
1762
1783
|
isNative: boolean;
|
|
1784
|
+
underlyingTokenId: string | null;
|
|
1763
1785
|
price: number | null;
|
|
1764
1786
|
updatedAt: number | null;
|
|
1765
1787
|
priceSource: string | null;
|