@merkl/api 0.16.1 → 0.16.3
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 +8 -9
- package/dist/database/api/.generated/drizzle/schema.js +2 -3
- package/dist/database/api/.generated/drizzle/schema.ts +2 -4
- package/dist/database/api/.generated/edge.js +5 -33
- package/dist/database/api/.generated/index-browser.js +2 -30
- package/dist/database/api/.generated/index.d.ts +123 -210
- package/dist/database/api/.generated/index.js +5 -33
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +2 -32
- package/dist/database/api/.generated/wasm.js +2 -30
- package/dist/src/constants.d.ts +259 -13
- package/dist/src/eden/index.d.ts +98 -98
- package/dist/src/index.d.ts +19 -19
- package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicData.js +6 -1
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/factoryFinder.js +1 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.d.ts +4 -1
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.js +6 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerV3PoolProcessor.d.ts +44 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerV3PoolProcessor.js +69 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/HourglassProcessor.d.ts +36 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/HourglassProcessor.js +31 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.js +5 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1.js +10 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +6 -6
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +5 -65
- package/dist/src/modules/v4/campaign/campaign.model.js +1 -34
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +7 -7
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +14 -15
- package/dist/src/modules/v4/campaign/campaign.service.js +6 -6
- package/dist/src/modules/v4/chain/chain.repository.d.ts +1 -1
- package/dist/src/modules/v4/dynamicData/dynamicData.controller.d.ts +2 -2
- package/dist/src/modules/v4/dynamicData/dynamicData.model.d.ts +2 -58
- package/dist/src/modules/v4/dynamicData/dynamicData.model.js +2 -3
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +1 -8
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +4 -13
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +9 -9
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +3 -31
- package/dist/src/modules/v4/opportunity/opportunity.model.js +2 -2
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +33 -18
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +9 -1
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +15 -15
- package/dist/src/modules/v4/opportunity/opportunity.service.js +3 -2
- package/dist/src/modules/v4/opportunity/subservices/getErc20Metadata.service.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/subservices/getErc20Metadata.service.js +2 -2
- package/dist/src/modules/v4/opportunity/subservices/getEulerMetadata.service.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/subservices/getEulerMetadata.service.js +3 -2
- package/dist/src/modules/v4/opportunity/validate-id.pipe.js +3 -3
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +2 -2
- package/dist/src/modules/v4/reward/reward.repository.d.ts +1 -1
- package/dist/src/modules/v4/reward/reward.service.d.ts +8 -8
- package/dist/src/modules/v4/reward/reward.service.js +2 -2
- package/dist/src/modules/v4/router.d.ts +19 -19
- package/dist/src/modules/v4/user/user.controller.d.ts +2 -2
- package/dist/src/utils/decodeCalls.js +9 -1
- package/dist/src/utils/encodeCalls.js +25 -1
- package/dist/src/utils/generateCardName.d.ts +1 -1
- package/dist/src/utils/generateCardName.js +17 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import type { Campaign as CampaignResource, CampaignWithParams } from "../modules/v4";
|
2
|
-
import type {
|
2
|
+
import type { Campaign as CampaignEnum } from "@sdk";
|
3
3
|
declare const eden: {
|
4
4
|
derive: {};
|
5
5
|
resolve: {};
|
@@ -110,7 +110,7 @@ declare const eden: {
|
|
110
110
|
200: {
|
111
111
|
id: string;
|
112
112
|
chainId: number;
|
113
|
-
type:
|
113
|
+
type: string;
|
114
114
|
identifier: string;
|
115
115
|
name: string;
|
116
116
|
status: "PAST" | "LIVE" | "SOON";
|
@@ -396,7 +396,7 @@ declare const eden: {
|
|
396
396
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
397
397
|
200: {
|
398
398
|
name: string;
|
399
|
-
type:
|
399
|
+
type: string;
|
400
400
|
id: string;
|
401
401
|
status: import("../../database/api/.generated").$Enums.Status;
|
402
402
|
tags: string[];
|
@@ -418,7 +418,7 @@ declare const eden: {
|
|
418
418
|
depositUrl?: string | undefined;
|
419
419
|
protocols?: string[] | undefined;
|
420
420
|
mainProtocol?: string | undefined;
|
421
|
-
type:
|
421
|
+
type: string;
|
422
422
|
tokens: {
|
423
423
|
chainId: number;
|
424
424
|
address: string;
|
@@ -426,7 +426,7 @@ declare const eden: {
|
|
426
426
|
status: "NONE" | "PAST" | "LIVE" | "SOON";
|
427
427
|
identifier: string;
|
428
428
|
chainId: number;
|
429
|
-
action: "
|
429
|
+
action: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "INVALID";
|
430
430
|
}, options: {
|
431
431
|
headers: {
|
432
432
|
authorization: string;
|
@@ -436,7 +436,7 @@ declare const eden: {
|
|
436
436
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
437
437
|
200: {
|
438
438
|
name: string;
|
439
|
-
type:
|
439
|
+
type: string;
|
440
440
|
id: string;
|
441
441
|
status: import("../../database/api/.generated").$Enums.Status;
|
442
442
|
tags: string[];
|
@@ -550,7 +550,7 @@ declare const eden: {
|
|
550
550
|
icon: string;
|
551
551
|
} | undefined;
|
552
552
|
name: string;
|
553
|
-
type:
|
553
|
+
type: string;
|
554
554
|
status: import("../../database/api/.generated").$Enums.Status;
|
555
555
|
tags: string[];
|
556
556
|
identifier: string;
|
@@ -590,7 +590,7 @@ declare const eden: {
|
|
590
590
|
get: (options: {
|
591
591
|
headers?: Record<string, unknown> | undefined;
|
592
592
|
query: {
|
593
|
-
type?:
|
593
|
+
type?: string | undefined;
|
594
594
|
items?: number | undefined;
|
595
595
|
subType?: number | undefined;
|
596
596
|
page?: number | undefined;
|
@@ -727,12 +727,13 @@ declare const eden: {
|
|
727
727
|
computedUntil: bigint;
|
728
728
|
processingStarted: bigint;
|
729
729
|
};
|
730
|
+
creatorAddress: string;
|
730
731
|
Creator: {
|
731
732
|
tags: string[];
|
732
733
|
address: string;
|
733
734
|
creatorId: string | null;
|
734
735
|
};
|
735
|
-
type:
|
736
|
+
type: string;
|
736
737
|
id: string;
|
737
738
|
subType: number | null;
|
738
739
|
startTimestamp: bigint;
|
@@ -743,7 +744,6 @@ declare const eden: {
|
|
743
744
|
rewardTokenId: string;
|
744
745
|
amount: string;
|
745
746
|
opportunityId: string;
|
746
|
-
creatorAddress: string;
|
747
747
|
}[];
|
748
748
|
})[];
|
749
749
|
readonly 404: {
|
@@ -871,7 +871,7 @@ declare const eden: {
|
|
871
871
|
fetch?: RequestInit | undefined;
|
872
872
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
873
873
|
200: {
|
874
|
-
type:
|
874
|
+
type: string;
|
875
875
|
id: string;
|
876
876
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
877
877
|
subType: number | null;
|
@@ -916,7 +916,7 @@ declare const eden: {
|
|
916
916
|
fetch?: RequestInit | undefined;
|
917
917
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
918
918
|
200: {
|
919
|
-
type:
|
919
|
+
type: string;
|
920
920
|
id: string;
|
921
921
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
922
922
|
subType: number | null;
|
@@ -936,7 +936,7 @@ declare const eden: {
|
|
936
936
|
get: (options: {
|
937
937
|
headers?: Record<string, unknown> | undefined;
|
938
938
|
query: {
|
939
|
-
type?:
|
939
|
+
type?: string | undefined;
|
940
940
|
items?: number | undefined;
|
941
941
|
subType?: number | undefined;
|
942
942
|
page?: number | undefined;
|
@@ -988,12 +988,13 @@ declare const eden: {
|
|
988
988
|
computedUntil: bigint;
|
989
989
|
processingStarted: bigint;
|
990
990
|
};
|
991
|
+
creatorAddress: string;
|
991
992
|
Creator: {
|
992
993
|
tags: string[];
|
993
994
|
address: string;
|
994
995
|
creatorId: string | null;
|
995
996
|
};
|
996
|
-
type:
|
997
|
+
type: string;
|
997
998
|
id: string;
|
998
999
|
subType: number | null;
|
999
1000
|
startTimestamp: bigint;
|
@@ -1004,7 +1005,6 @@ declare const eden: {
|
|
1004
1005
|
rewardTokenId: string;
|
1005
1006
|
amount: string;
|
1006
1007
|
opportunityId: string;
|
1007
|
-
creatorAddress: string;
|
1008
1008
|
}[];
|
1009
1009
|
}>>;
|
1010
1010
|
};
|
@@ -1012,7 +1012,7 @@ declare const eden: {
|
|
1012
1012
|
get: (options: {
|
1013
1013
|
headers?: Record<string, unknown> | undefined;
|
1014
1014
|
query: {
|
1015
|
-
type?:
|
1015
|
+
type?: string | undefined;
|
1016
1016
|
items?: number | undefined;
|
1017
1017
|
subType?: number | undefined;
|
1018
1018
|
page?: number | undefined;
|
@@ -2040,7 +2040,7 @@ declare const eden: {
|
|
2040
2040
|
} | null;
|
2041
2041
|
} & {
|
2042
2042
|
name: string;
|
2043
|
-
type:
|
2043
|
+
type: string;
|
2044
2044
|
id: string;
|
2045
2045
|
status: import("../../database/api/.generated").$Enums.Status;
|
2046
2046
|
tags: string[];
|
@@ -2142,7 +2142,7 @@ declare const eden: {
|
|
2142
2142
|
} | null;
|
2143
2143
|
} & {
|
2144
2144
|
name: string;
|
2145
|
-
type:
|
2145
|
+
type: string;
|
2146
2146
|
id: string;
|
2147
2147
|
status: import("../../database/api/.generated").$Enums.Status;
|
2148
2148
|
tags: string[];
|
@@ -2564,7 +2564,7 @@ declare const eden: {
|
|
2564
2564
|
rewardTokenAddress?: string | undefined;
|
2565
2565
|
distributionChain?: {} | undefined;
|
2566
2566
|
opportunityIdentifier?: string | undefined;
|
2567
|
-
type:
|
2567
|
+
type: string;
|
2568
2568
|
params: {};
|
2569
2569
|
computeChainId: number;
|
2570
2570
|
}, options: {
|
@@ -2583,7 +2583,7 @@ declare const eden: {
|
|
2583
2583
|
authorization: string;
|
2584
2584
|
};
|
2585
2585
|
query: {
|
2586
|
-
type?:
|
2586
|
+
type?: string | undefined;
|
2587
2587
|
items?: number | undefined;
|
2588
2588
|
subType?: number | undefined;
|
2589
2589
|
page?: number | undefined;
|
@@ -3221,7 +3221,7 @@ declare const eden: {
|
|
3221
3221
|
200: {
|
3222
3222
|
id: string;
|
3223
3223
|
chainId: number;
|
3224
|
-
type:
|
3224
|
+
type: string;
|
3225
3225
|
identifier: string;
|
3226
3226
|
name: string;
|
3227
3227
|
status: "PAST" | "LIVE" | "SOON";
|
@@ -3507,7 +3507,7 @@ declare const eden: {
|
|
3507
3507
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
3508
3508
|
200: {
|
3509
3509
|
name: string;
|
3510
|
-
type:
|
3510
|
+
type: string;
|
3511
3511
|
id: string;
|
3512
3512
|
status: import("../../database/api/.generated").$Enums.Status;
|
3513
3513
|
tags: string[];
|
@@ -3529,7 +3529,7 @@ declare const eden: {
|
|
3529
3529
|
depositUrl?: string | undefined;
|
3530
3530
|
protocols?: string[] | undefined;
|
3531
3531
|
mainProtocol?: string | undefined;
|
3532
|
-
type:
|
3532
|
+
type: string;
|
3533
3533
|
tokens: {
|
3534
3534
|
chainId: number;
|
3535
3535
|
address: string;
|
@@ -3537,7 +3537,7 @@ declare const eden: {
|
|
3537
3537
|
status: "NONE" | "PAST" | "LIVE" | "SOON";
|
3538
3538
|
identifier: string;
|
3539
3539
|
chainId: number;
|
3540
|
-
action: "
|
3540
|
+
action: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "INVALID";
|
3541
3541
|
}, options: {
|
3542
3542
|
headers: {
|
3543
3543
|
authorization: string;
|
@@ -3547,7 +3547,7 @@ declare const eden: {
|
|
3547
3547
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
3548
3548
|
200: {
|
3549
3549
|
name: string;
|
3550
|
-
type:
|
3550
|
+
type: string;
|
3551
3551
|
id: string;
|
3552
3552
|
status: import("../../database/api/.generated").$Enums.Status;
|
3553
3553
|
tags: string[];
|
@@ -3661,7 +3661,7 @@ declare const eden: {
|
|
3661
3661
|
icon: string;
|
3662
3662
|
} | undefined;
|
3663
3663
|
name: string;
|
3664
|
-
type:
|
3664
|
+
type: string;
|
3665
3665
|
status: import("../../database/api/.generated").$Enums.Status;
|
3666
3666
|
tags: string[];
|
3667
3667
|
identifier: string;
|
@@ -3701,7 +3701,7 @@ declare const eden: {
|
|
3701
3701
|
get: (options: {
|
3702
3702
|
headers?: Record<string, unknown> | undefined;
|
3703
3703
|
query: {
|
3704
|
-
type?:
|
3704
|
+
type?: string | undefined;
|
3705
3705
|
items?: number | undefined;
|
3706
3706
|
subType?: number | undefined;
|
3707
3707
|
page?: number | undefined;
|
@@ -3838,12 +3838,13 @@ declare const eden: {
|
|
3838
3838
|
computedUntil: bigint;
|
3839
3839
|
processingStarted: bigint;
|
3840
3840
|
};
|
3841
|
+
creatorAddress: string;
|
3841
3842
|
Creator: {
|
3842
3843
|
tags: string[];
|
3843
3844
|
address: string;
|
3844
3845
|
creatorId: string | null;
|
3845
3846
|
};
|
3846
|
-
type:
|
3847
|
+
type: string;
|
3847
3848
|
id: string;
|
3848
3849
|
subType: number | null;
|
3849
3850
|
startTimestamp: bigint;
|
@@ -3854,7 +3855,6 @@ declare const eden: {
|
|
3854
3855
|
rewardTokenId: string;
|
3855
3856
|
amount: string;
|
3856
3857
|
opportunityId: string;
|
3857
|
-
creatorAddress: string;
|
3858
3858
|
}[];
|
3859
3859
|
})[];
|
3860
3860
|
readonly 404: {
|
@@ -3982,7 +3982,7 @@ declare const eden: {
|
|
3982
3982
|
fetch?: RequestInit | undefined;
|
3983
3983
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
3984
3984
|
200: {
|
3985
|
-
type:
|
3985
|
+
type: string;
|
3986
3986
|
id: string;
|
3987
3987
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
3988
3988
|
subType: number | null;
|
@@ -4027,7 +4027,7 @@ declare const eden: {
|
|
4027
4027
|
fetch?: RequestInit | undefined;
|
4028
4028
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
4029
4029
|
200: {
|
4030
|
-
type:
|
4030
|
+
type: string;
|
4031
4031
|
id: string;
|
4032
4032
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
4033
4033
|
subType: number | null;
|
@@ -4047,7 +4047,7 @@ declare const eden: {
|
|
4047
4047
|
get: (options: {
|
4048
4048
|
headers?: Record<string, unknown> | undefined;
|
4049
4049
|
query: {
|
4050
|
-
type?:
|
4050
|
+
type?: string | undefined;
|
4051
4051
|
items?: number | undefined;
|
4052
4052
|
subType?: number | undefined;
|
4053
4053
|
page?: number | undefined;
|
@@ -4099,12 +4099,13 @@ declare const eden: {
|
|
4099
4099
|
computedUntil: bigint;
|
4100
4100
|
processingStarted: bigint;
|
4101
4101
|
};
|
4102
|
+
creatorAddress: string;
|
4102
4103
|
Creator: {
|
4103
4104
|
tags: string[];
|
4104
4105
|
address: string;
|
4105
4106
|
creatorId: string | null;
|
4106
4107
|
};
|
4107
|
-
type:
|
4108
|
+
type: string;
|
4108
4109
|
id: string;
|
4109
4110
|
subType: number | null;
|
4110
4111
|
startTimestamp: bigint;
|
@@ -4115,7 +4116,6 @@ declare const eden: {
|
|
4115
4116
|
rewardTokenId: string;
|
4116
4117
|
amount: string;
|
4117
4118
|
opportunityId: string;
|
4118
|
-
creatorAddress: string;
|
4119
4119
|
}[];
|
4120
4120
|
}>>;
|
4121
4121
|
};
|
@@ -4123,7 +4123,7 @@ declare const eden: {
|
|
4123
4123
|
get: (options: {
|
4124
4124
|
headers?: Record<string, unknown> | undefined;
|
4125
4125
|
query: {
|
4126
|
-
type?:
|
4126
|
+
type?: string | undefined;
|
4127
4127
|
items?: number | undefined;
|
4128
4128
|
subType?: number | undefined;
|
4129
4129
|
page?: number | undefined;
|
@@ -5151,7 +5151,7 @@ declare const eden: {
|
|
5151
5151
|
} | null;
|
5152
5152
|
} & {
|
5153
5153
|
name: string;
|
5154
|
-
type:
|
5154
|
+
type: string;
|
5155
5155
|
id: string;
|
5156
5156
|
status: import("../../database/api/.generated").$Enums.Status;
|
5157
5157
|
tags: string[];
|
@@ -5253,7 +5253,7 @@ declare const eden: {
|
|
5253
5253
|
} | null;
|
5254
5254
|
} & {
|
5255
5255
|
name: string;
|
5256
|
-
type:
|
5256
|
+
type: string;
|
5257
5257
|
id: string;
|
5258
5258
|
status: import("../../database/api/.generated").$Enums.Status;
|
5259
5259
|
tags: string[];
|
@@ -5675,7 +5675,7 @@ declare const eden: {
|
|
5675
5675
|
rewardTokenAddress?: string | undefined;
|
5676
5676
|
distributionChain?: {} | undefined;
|
5677
5677
|
opportunityIdentifier?: string | undefined;
|
5678
|
-
type:
|
5678
|
+
type: string;
|
5679
5679
|
params: {};
|
5680
5680
|
computeChainId: number;
|
5681
5681
|
}, options: {
|
@@ -5694,7 +5694,7 @@ declare const eden: {
|
|
5694
5694
|
authorization: string;
|
5695
5695
|
};
|
5696
5696
|
query: {
|
5697
|
-
type?:
|
5697
|
+
type?: string | undefined;
|
5698
5698
|
items?: number | undefined;
|
5699
5699
|
subType?: number | undefined;
|
5700
5700
|
page?: number | undefined;
|
@@ -7086,7 +7086,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7086
7086
|
depositUrl?: string | undefined;
|
7087
7087
|
protocols?: string[] | undefined;
|
7088
7088
|
mainProtocol?: string | undefined;
|
7089
|
-
type:
|
7089
|
+
type: string;
|
7090
7090
|
tokens: {
|
7091
7091
|
chainId: number;
|
7092
7092
|
address: string;
|
@@ -7094,7 +7094,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7094
7094
|
status: "NONE" | "PAST" | "LIVE" | "SOON";
|
7095
7095
|
identifier: string;
|
7096
7096
|
chainId: number;
|
7097
|
-
action: "
|
7097
|
+
action: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "INVALID";
|
7098
7098
|
};
|
7099
7099
|
params: {};
|
7100
7100
|
query: unknown;
|
@@ -7104,7 +7104,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7104
7104
|
response: {
|
7105
7105
|
200: {
|
7106
7106
|
name: string;
|
7107
|
-
type:
|
7107
|
+
type: string;
|
7108
7108
|
id: string;
|
7109
7109
|
status: import("../../database/api/.generated").$Enums.Status;
|
7110
7110
|
tags: string[];
|
@@ -7138,7 +7138,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7138
7138
|
200: {
|
7139
7139
|
id: string;
|
7140
7140
|
chainId: number;
|
7141
|
-
type:
|
7141
|
+
type: string;
|
7142
7142
|
identifier: string;
|
7143
7143
|
name: string;
|
7144
7144
|
status: "PAST" | "LIVE" | "SOON";
|
@@ -7268,7 +7268,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7268
7268
|
icon: string;
|
7269
7269
|
} | undefined;
|
7270
7270
|
name: string;
|
7271
|
-
type:
|
7271
|
+
type: string;
|
7272
7272
|
status: import("../../database/api/.generated").$Enums.Status;
|
7273
7273
|
tags: string[];
|
7274
7274
|
identifier: string;
|
@@ -7429,7 +7429,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7429
7429
|
body: unknown;
|
7430
7430
|
params: {};
|
7431
7431
|
query: {
|
7432
|
-
type?:
|
7432
|
+
type?: string | undefined;
|
7433
7433
|
items?: number | undefined;
|
7434
7434
|
subType?: number | undefined;
|
7435
7435
|
page?: number | undefined;
|
@@ -7566,12 +7566,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7566
7566
|
computedUntil: bigint;
|
7567
7567
|
processingStarted: bigint;
|
7568
7568
|
};
|
7569
|
+
creatorAddress: string;
|
7569
7570
|
Creator: {
|
7570
7571
|
tags: string[];
|
7571
7572
|
address: string;
|
7572
7573
|
creatorId: string | null;
|
7573
7574
|
};
|
7574
|
-
type:
|
7575
|
+
type: string;
|
7575
7576
|
id: string;
|
7576
7577
|
subType: number | null;
|
7577
7578
|
startTimestamp: bigint;
|
@@ -7582,7 +7583,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7582
7583
|
rewardTokenId: string;
|
7583
7584
|
amount: string;
|
7584
7585
|
opportunityId: string;
|
7585
|
-
creatorAddress: string;
|
7586
7586
|
}[];
|
7587
7587
|
})[];
|
7588
7588
|
readonly 404: {
|
@@ -7886,7 +7886,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7886
7886
|
response: {
|
7887
7887
|
200: {
|
7888
7888
|
name: string;
|
7889
|
-
type:
|
7889
|
+
type: string;
|
7890
7890
|
id: string;
|
7891
7891
|
status: import("../../database/api/.generated").$Enums.Status;
|
7892
7892
|
tags: string[];
|
@@ -7932,7 +7932,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7932
7932
|
};
|
7933
7933
|
response: {
|
7934
7934
|
200: {
|
7935
|
-
type:
|
7935
|
+
type: string;
|
7936
7936
|
id: string;
|
7937
7937
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
7938
7938
|
subType: number | null;
|
@@ -7983,7 +7983,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7983
7983
|
};
|
7984
7984
|
response: {
|
7985
7985
|
200: {
|
7986
|
-
type:
|
7986
|
+
type: string;
|
7987
7987
|
id: string;
|
7988
7988
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
7989
7989
|
subType: number | null;
|
@@ -8006,7 +8006,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8006
8006
|
body: unknown;
|
8007
8007
|
params: {};
|
8008
8008
|
query: {
|
8009
|
-
type?:
|
8009
|
+
type?: string | undefined;
|
8010
8010
|
items?: number | undefined;
|
8011
8011
|
subType?: number | undefined;
|
8012
8012
|
page?: number | undefined;
|
@@ -8058,12 +8058,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8058
8058
|
computedUntil: bigint;
|
8059
8059
|
processingStarted: bigint;
|
8060
8060
|
};
|
8061
|
+
creatorAddress: string;
|
8061
8062
|
Creator: {
|
8062
8063
|
tags: string[];
|
8063
8064
|
address: string;
|
8064
8065
|
creatorId: string | null;
|
8065
8066
|
};
|
8066
|
-
type:
|
8067
|
+
type: string;
|
8067
8068
|
id: string;
|
8068
8069
|
subType: number | null;
|
8069
8070
|
startTimestamp: bigint;
|
@@ -8074,7 +8075,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8074
8075
|
rewardTokenId: string;
|
8075
8076
|
amount: string;
|
8076
8077
|
opportunityId: string;
|
8077
|
-
creatorAddress: string;
|
8078
8078
|
}[];
|
8079
8079
|
};
|
8080
8080
|
};
|
@@ -8085,7 +8085,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8085
8085
|
body: unknown;
|
8086
8086
|
params: {};
|
8087
8087
|
query: {
|
8088
|
-
type?:
|
8088
|
+
type?: string | undefined;
|
8089
8089
|
items?: number | undefined;
|
8090
8090
|
subType?: number | undefined;
|
8091
8091
|
page?: number | undefined;
|
@@ -9467,7 +9467,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9467
9467
|
} | null;
|
9468
9468
|
} & {
|
9469
9469
|
name: string;
|
9470
|
-
type:
|
9470
|
+
type: string;
|
9471
9471
|
id: string;
|
9472
9472
|
status: import("../../database/api/.generated").$Enums.Status;
|
9473
9473
|
tags: string[];
|
@@ -9580,7 +9580,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9580
9580
|
} | null;
|
9581
9581
|
} & {
|
9582
9582
|
name: string;
|
9583
|
-
type:
|
9583
|
+
type: string;
|
9584
9584
|
id: string;
|
9585
9585
|
status: import("../../database/api/.generated").$Enums.Status;
|
9586
9586
|
tags: string[];
|
@@ -10086,7 +10086,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
10086
10086
|
rewardTokenAddress?: string | undefined;
|
10087
10087
|
distributionChain?: {} | undefined;
|
10088
10088
|
opportunityIdentifier?: string | undefined;
|
10089
|
-
type:
|
10089
|
+
type: string;
|
10090
10090
|
params: {};
|
10091
10091
|
computeChainId: number;
|
10092
10092
|
};
|
@@ -10108,7 +10108,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
10108
10108
|
body: unknown;
|
10109
10109
|
params: {};
|
10110
10110
|
query: {
|
10111
|
-
type?:
|
10111
|
+
type?: string | undefined;
|
10112
10112
|
items?: number | undefined;
|
10113
10113
|
subType?: number | undefined;
|
10114
10114
|
page?: number | undefined;
|
@@ -11794,7 +11794,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11794
11794
|
200: {
|
11795
11795
|
id: string;
|
11796
11796
|
chainId: number;
|
11797
|
-
type:
|
11797
|
+
type: string;
|
11798
11798
|
identifier: string;
|
11799
11799
|
name: string;
|
11800
11800
|
status: "PAST" | "LIVE" | "SOON";
|
@@ -12080,7 +12080,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12080
12080
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
12081
12081
|
200: {
|
12082
12082
|
name: string;
|
12083
|
-
type:
|
12083
|
+
type: string;
|
12084
12084
|
id: string;
|
12085
12085
|
status: import("../../database/api/.generated").$Enums.Status;
|
12086
12086
|
tags: string[];
|
@@ -12102,7 +12102,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12102
12102
|
depositUrl?: string | undefined;
|
12103
12103
|
protocols?: string[] | undefined;
|
12104
12104
|
mainProtocol?: string | undefined;
|
12105
|
-
type:
|
12105
|
+
type: string;
|
12106
12106
|
tokens: {
|
12107
12107
|
chainId: number;
|
12108
12108
|
address: string;
|
@@ -12110,7 +12110,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12110
12110
|
status: "NONE" | "PAST" | "LIVE" | "SOON";
|
12111
12111
|
identifier: string;
|
12112
12112
|
chainId: number;
|
12113
|
-
action: "
|
12113
|
+
action: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "INVALID";
|
12114
12114
|
}, options: {
|
12115
12115
|
headers: {
|
12116
12116
|
authorization: string;
|
@@ -12120,7 +12120,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12120
12120
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
12121
12121
|
200: {
|
12122
12122
|
name: string;
|
12123
|
-
type:
|
12123
|
+
type: string;
|
12124
12124
|
id: string;
|
12125
12125
|
status: import("../../database/api/.generated").$Enums.Status;
|
12126
12126
|
tags: string[];
|
@@ -12234,7 +12234,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12234
12234
|
icon: string;
|
12235
12235
|
} | undefined;
|
12236
12236
|
name: string;
|
12237
|
-
type:
|
12237
|
+
type: string;
|
12238
12238
|
status: import("../../database/api/.generated").$Enums.Status;
|
12239
12239
|
tags: string[];
|
12240
12240
|
identifier: string;
|
@@ -12274,7 +12274,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12274
12274
|
get: (options: {
|
12275
12275
|
headers?: Record<string, unknown> | undefined;
|
12276
12276
|
query: {
|
12277
|
-
type?:
|
12277
|
+
type?: string | undefined;
|
12278
12278
|
items?: number | undefined;
|
12279
12279
|
subType?: number | undefined;
|
12280
12280
|
page?: number | undefined;
|
@@ -12411,12 +12411,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12411
12411
|
computedUntil: bigint;
|
12412
12412
|
processingStarted: bigint;
|
12413
12413
|
};
|
12414
|
+
creatorAddress: string;
|
12414
12415
|
Creator: {
|
12415
12416
|
tags: string[];
|
12416
12417
|
address: string;
|
12417
12418
|
creatorId: string | null;
|
12418
12419
|
};
|
12419
|
-
type:
|
12420
|
+
type: string;
|
12420
12421
|
id: string;
|
12421
12422
|
subType: number | null;
|
12422
12423
|
startTimestamp: bigint;
|
@@ -12427,7 +12428,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12427
12428
|
rewardTokenId: string;
|
12428
12429
|
amount: string;
|
12429
12430
|
opportunityId: string;
|
12430
|
-
creatorAddress: string;
|
12431
12431
|
}[];
|
12432
12432
|
})[];
|
12433
12433
|
readonly 404: {
|
@@ -12555,7 +12555,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12555
12555
|
fetch?: RequestInit | undefined;
|
12556
12556
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
12557
12557
|
200: {
|
12558
|
-
type:
|
12558
|
+
type: string;
|
12559
12559
|
id: string;
|
12560
12560
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
12561
12561
|
subType: number | null;
|
@@ -12600,7 +12600,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12600
12600
|
fetch?: RequestInit | undefined;
|
12601
12601
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
12602
12602
|
200: {
|
12603
|
-
type:
|
12603
|
+
type: string;
|
12604
12604
|
id: string;
|
12605
12605
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
12606
12606
|
subType: number | null;
|
@@ -12620,7 +12620,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12620
12620
|
get: (options: {
|
12621
12621
|
headers?: Record<string, unknown> | undefined;
|
12622
12622
|
query: {
|
12623
|
-
type?:
|
12623
|
+
type?: string | undefined;
|
12624
12624
|
items?: number | undefined;
|
12625
12625
|
subType?: number | undefined;
|
12626
12626
|
page?: number | undefined;
|
@@ -12672,12 +12672,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12672
12672
|
computedUntil: bigint;
|
12673
12673
|
processingStarted: bigint;
|
12674
12674
|
};
|
12675
|
+
creatorAddress: string;
|
12675
12676
|
Creator: {
|
12676
12677
|
tags: string[];
|
12677
12678
|
address: string;
|
12678
12679
|
creatorId: string | null;
|
12679
12680
|
};
|
12680
|
-
type:
|
12681
|
+
type: string;
|
12681
12682
|
id: string;
|
12682
12683
|
subType: number | null;
|
12683
12684
|
startTimestamp: bigint;
|
@@ -12688,7 +12689,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12688
12689
|
rewardTokenId: string;
|
12689
12690
|
amount: string;
|
12690
12691
|
opportunityId: string;
|
12691
|
-
creatorAddress: string;
|
12692
12692
|
}[];
|
12693
12693
|
}>>;
|
12694
12694
|
};
|
@@ -12696,7 +12696,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12696
12696
|
get: (options: {
|
12697
12697
|
headers?: Record<string, unknown> | undefined;
|
12698
12698
|
query: {
|
12699
|
-
type?:
|
12699
|
+
type?: string | undefined;
|
12700
12700
|
items?: number | undefined;
|
12701
12701
|
subType?: number | undefined;
|
12702
12702
|
page?: number | undefined;
|
@@ -13724,7 +13724,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13724
13724
|
} | null;
|
13725
13725
|
} & {
|
13726
13726
|
name: string;
|
13727
|
-
type:
|
13727
|
+
type: string;
|
13728
13728
|
id: string;
|
13729
13729
|
status: import("../../database/api/.generated").$Enums.Status;
|
13730
13730
|
tags: string[];
|
@@ -13826,7 +13826,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13826
13826
|
} | null;
|
13827
13827
|
} & {
|
13828
13828
|
name: string;
|
13829
|
-
type:
|
13829
|
+
type: string;
|
13830
13830
|
id: string;
|
13831
13831
|
status: import("../../database/api/.generated").$Enums.Status;
|
13832
13832
|
tags: string[];
|
@@ -14248,7 +14248,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14248
14248
|
rewardTokenAddress?: string | undefined;
|
14249
14249
|
distributionChain?: {} | undefined;
|
14250
14250
|
opportunityIdentifier?: string | undefined;
|
14251
|
-
type:
|
14251
|
+
type: string;
|
14252
14252
|
params: {};
|
14253
14253
|
computeChainId: number;
|
14254
14254
|
}, options: {
|
@@ -14267,7 +14267,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14267
14267
|
authorization: string;
|
14268
14268
|
};
|
14269
14269
|
query: {
|
14270
|
-
type?:
|
14270
|
+
type?: string | undefined;
|
14271
14271
|
items?: number | undefined;
|
14272
14272
|
subType?: number | undefined;
|
14273
14273
|
page?: number | undefined;
|
@@ -14905,7 +14905,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14905
14905
|
200: {
|
14906
14906
|
id: string;
|
14907
14907
|
chainId: number;
|
14908
|
-
type:
|
14908
|
+
type: string;
|
14909
14909
|
identifier: string;
|
14910
14910
|
name: string;
|
14911
14911
|
status: "PAST" | "LIVE" | "SOON";
|
@@ -15191,7 +15191,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15191
15191
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
15192
15192
|
200: {
|
15193
15193
|
name: string;
|
15194
|
-
type:
|
15194
|
+
type: string;
|
15195
15195
|
id: string;
|
15196
15196
|
status: import("../../database/api/.generated").$Enums.Status;
|
15197
15197
|
tags: string[];
|
@@ -15213,7 +15213,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15213
15213
|
depositUrl?: string | undefined;
|
15214
15214
|
protocols?: string[] | undefined;
|
15215
15215
|
mainProtocol?: string | undefined;
|
15216
|
-
type:
|
15216
|
+
type: string;
|
15217
15217
|
tokens: {
|
15218
15218
|
chainId: number;
|
15219
15219
|
address: string;
|
@@ -15221,7 +15221,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15221
15221
|
status: "NONE" | "PAST" | "LIVE" | "SOON";
|
15222
15222
|
identifier: string;
|
15223
15223
|
chainId: number;
|
15224
|
-
action: "
|
15224
|
+
action: "POOL" | "HOLD" | "DROP" | "LEND" | "BORROW" | "LONG" | "SHORT" | "INVALID";
|
15225
15225
|
}, options: {
|
15226
15226
|
headers: {
|
15227
15227
|
authorization: string;
|
@@ -15231,7 +15231,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15231
15231
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
15232
15232
|
200: {
|
15233
15233
|
name: string;
|
15234
|
-
type:
|
15234
|
+
type: string;
|
15235
15235
|
id: string;
|
15236
15236
|
status: import("../../database/api/.generated").$Enums.Status;
|
15237
15237
|
tags: string[];
|
@@ -15345,7 +15345,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15345
15345
|
icon: string;
|
15346
15346
|
} | undefined;
|
15347
15347
|
name: string;
|
15348
|
-
type:
|
15348
|
+
type: string;
|
15349
15349
|
status: import("../../database/api/.generated").$Enums.Status;
|
15350
15350
|
tags: string[];
|
15351
15351
|
identifier: string;
|
@@ -15385,7 +15385,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15385
15385
|
get: (options: {
|
15386
15386
|
headers?: Record<string, unknown> | undefined;
|
15387
15387
|
query: {
|
15388
|
-
type?:
|
15388
|
+
type?: string | undefined;
|
15389
15389
|
items?: number | undefined;
|
15390
15390
|
subType?: number | undefined;
|
15391
15391
|
page?: number | undefined;
|
@@ -15522,12 +15522,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15522
15522
|
computedUntil: bigint;
|
15523
15523
|
processingStarted: bigint;
|
15524
15524
|
};
|
15525
|
+
creatorAddress: string;
|
15525
15526
|
Creator: {
|
15526
15527
|
tags: string[];
|
15527
15528
|
address: string;
|
15528
15529
|
creatorId: string | null;
|
15529
15530
|
};
|
15530
|
-
type:
|
15531
|
+
type: string;
|
15531
15532
|
id: string;
|
15532
15533
|
subType: number | null;
|
15533
15534
|
startTimestamp: bigint;
|
@@ -15538,7 +15539,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15538
15539
|
rewardTokenId: string;
|
15539
15540
|
amount: string;
|
15540
15541
|
opportunityId: string;
|
15541
|
-
creatorAddress: string;
|
15542
15542
|
}[];
|
15543
15543
|
})[];
|
15544
15544
|
readonly 404: {
|
@@ -15666,7 +15666,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15666
15666
|
fetch?: RequestInit | undefined;
|
15667
15667
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
15668
15668
|
200: {
|
15669
|
-
type:
|
15669
|
+
type: string;
|
15670
15670
|
id: string;
|
15671
15671
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
15672
15672
|
subType: number | null;
|
@@ -15711,7 +15711,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15711
15711
|
fetch?: RequestInit | undefined;
|
15712
15712
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
15713
15713
|
200: {
|
15714
|
-
type:
|
15714
|
+
type: string;
|
15715
15715
|
id: string;
|
15716
15716
|
params: import("database/api/.generated/runtime/library").JsonValue;
|
15717
15717
|
subType: number | null;
|
@@ -15731,7 +15731,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15731
15731
|
get: (options: {
|
15732
15732
|
headers?: Record<string, unknown> | undefined;
|
15733
15733
|
query: {
|
15734
|
-
type?:
|
15734
|
+
type?: string | undefined;
|
15735
15735
|
items?: number | undefined;
|
15736
15736
|
subType?: number | undefined;
|
15737
15737
|
page?: number | undefined;
|
@@ -15783,12 +15783,13 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15783
15783
|
computedUntil: bigint;
|
15784
15784
|
processingStarted: bigint;
|
15785
15785
|
};
|
15786
|
+
creatorAddress: string;
|
15786
15787
|
Creator: {
|
15787
15788
|
tags: string[];
|
15788
15789
|
address: string;
|
15789
15790
|
creatorId: string | null;
|
15790
15791
|
};
|
15791
|
-
type:
|
15792
|
+
type: string;
|
15792
15793
|
id: string;
|
15793
15794
|
subType: number | null;
|
15794
15795
|
startTimestamp: bigint;
|
@@ -15799,7 +15800,6 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15799
15800
|
rewardTokenId: string;
|
15800
15801
|
amount: string;
|
15801
15802
|
opportunityId: string;
|
15802
|
-
creatorAddress: string;
|
15803
15803
|
}[];
|
15804
15804
|
}>>;
|
15805
15805
|
};
|
@@ -15807,7 +15807,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15807
15807
|
get: (options: {
|
15808
15808
|
headers?: Record<string, unknown> | undefined;
|
15809
15809
|
query: {
|
15810
|
-
type?:
|
15810
|
+
type?: string | undefined;
|
15811
15811
|
items?: number | undefined;
|
15812
15812
|
subType?: number | undefined;
|
15813
15813
|
page?: number | undefined;
|
@@ -16835,7 +16835,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16835
16835
|
} | null;
|
16836
16836
|
} & {
|
16837
16837
|
name: string;
|
16838
|
-
type:
|
16838
|
+
type: string;
|
16839
16839
|
id: string;
|
16840
16840
|
status: import("../../database/api/.generated").$Enums.Status;
|
16841
16841
|
tags: string[];
|
@@ -16937,7 +16937,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16937
16937
|
} | null;
|
16938
16938
|
} & {
|
16939
16939
|
name: string;
|
16940
|
-
type:
|
16940
|
+
type: string;
|
16941
16941
|
id: string;
|
16942
16942
|
status: import("../../database/api/.generated").$Enums.Status;
|
16943
16943
|
tags: string[];
|
@@ -17359,7 +17359,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17359
17359
|
rewardTokenAddress?: string | undefined;
|
17360
17360
|
distributionChain?: {} | undefined;
|
17361
17361
|
opportunityIdentifier?: string | undefined;
|
17362
|
-
type:
|
17362
|
+
type: string;
|
17363
17363
|
params: {};
|
17364
17364
|
computeChainId: number;
|
17365
17365
|
}, options: {
|
@@ -17378,7 +17378,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17378
17378
|
authorization: string;
|
17379
17379
|
};
|
17380
17380
|
query: {
|
17381
|
-
type?:
|
17381
|
+
type?: string | undefined;
|
17382
17382
|
items?: number | undefined;
|
17383
17383
|
subType?: number | undefined;
|
17384
17384
|
page?: number | undefined;
|
@@ -18597,8 +18597,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
18597
18597
|
};
|
18598
18598
|
export type Opportunity = FromPromise<Api["v4"]["opportunities"]["index"]["get"]>;
|
18599
18599
|
export type Protocol = FromPromise<Api["v4"]["protocols"]["index"]["get"]>;
|
18600
|
-
export type Campaign
|
18601
|
-
export type CampaignParams<C extends
|
18600
|
+
export type Campaign = CampaignResource["model"];
|
18601
|
+
export type CampaignParams<C extends CampaignEnum> = CampaignWithParams<C>["model"]["params"];
|
18602
18602
|
export type Chain = FromPromise<Api["v4"]["chains"]["index"]["get"]>;
|
18603
18603
|
export type Explorer = FromPromise<Api["v4"]["chains"]["index"]["get"]>["explorers"][number];
|
18604
18604
|
export type Token = FromPromise<Api["v4"]["tokens"]["index"]["get"]>;
|