@merkl/api 1.18.40 → 1.19.2
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 +324 -66
- package/dist/src/engine/deprecated/dynamicData/implementations/Erc20.d.ts +38 -38
- package/dist/src/guards/KeyStoreAuth.guard.d.ts +26 -0
- package/dist/src/guards/KeyStoreAuth.guard.js.map +1 -0
- package/dist/src/index.d.ts +403 -66
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +20 -20
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.query-transformer.d.ts +90 -90
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +5 -5
- package/dist/src/modules/v4/carousel/carousel.controller.d.ts +9 -9
- package/dist/src/modules/v4/carousel/carousel.service.d.ts +6 -6
- package/dist/src/modules/v4/chain/chain.controller.d.ts +5 -5
- package/dist/src/modules/v4/chain/chain.model.d.ts +2 -0
- package/dist/src/modules/v4/creator/creator.controller.d.ts +3 -3
- package/dist/src/modules/v4/explorer/explorer.controller.d.ts +2 -2
- package/dist/src/modules/v4/explorer/explorer.model.d.ts +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.controller.d.ts +372 -0
- package/dist/src/modules/v4/keyStore/keyStore.controller.js.map +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.model.d.ts +63 -0
- package/dist/src/modules/v4/keyStore/keyStore.model.js.map +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.repository.d.ts +148 -0
- package/dist/src/modules/v4/keyStore/keyStore.repository.js.map +1 -0
- package/dist/src/modules/v4/keyStore/keyStore.service.d.ts +131 -0
- package/dist/src/modules/v4/keyStore/keyStore.service.js.map +1 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +18 -18
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +3 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +8 -0
- package/dist/src/modules/v4/opportunity/opportunity.query-transformer.d.ts +62 -61
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +10 -10
- package/dist/src/modules/v4/program/program.controller.d.ts +4 -4
- package/dist/src/modules/v4/program/program.service.d.ts +4 -4
- package/dist/src/modules/v4/reward/reward.service.d.ts +4 -4
- package/dist/src/modules/v4/router.d.ts +403 -66
- package/dist/src/modules/v4/router.js.map +1 -1
- package/dist/src/modules/v4/transaction/transaction.service.d.ts +12406 -12406
- package/dist/src/modules/v4/uniswap/uniswap.controller.d.ts +2 -2
- package/dist/src/modules/v4/uniswap/uniswap.service.d.ts +1 -1
- package/dist/src/modules/v4/user/user.controller.d.ts +3 -3
- package/dist/src/modules/v4/user/user.model.d.ts +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -119,7 +119,7 @@ export declare const UniswapController: Elysia<"uniswap", {
|
|
|
119
119
|
liveCampaigns: number;
|
|
120
120
|
endOfDisputePeriod: number;
|
|
121
121
|
explorers?: {
|
|
122
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
122
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
123
123
|
url: string;
|
|
124
124
|
chainId: number;
|
|
125
125
|
}[] | undefined;
|
|
@@ -343,7 +343,7 @@ export declare const UniswapController: Elysia<"uniswap", {
|
|
|
343
343
|
liveCampaigns: number;
|
|
344
344
|
endOfDisputePeriod: number;
|
|
345
345
|
explorers?: {
|
|
346
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
346
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
347
347
|
url: string;
|
|
348
348
|
chainId: number;
|
|
349
349
|
}[] | undefined;
|
|
@@ -90,7 +90,7 @@ export declare abstract class UniswapService {
|
|
|
90
90
|
liveCampaigns: number;
|
|
91
91
|
endOfDisputePeriod: number;
|
|
92
92
|
explorers?: {
|
|
93
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
93
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
94
94
|
url: string;
|
|
95
95
|
chainId: number;
|
|
96
96
|
}[] | undefined;
|
|
@@ -44,7 +44,7 @@ export declare const UserController: Elysia<"/users", {
|
|
|
44
44
|
liveCampaigns: number;
|
|
45
45
|
endOfDisputePeriod: number;
|
|
46
46
|
explorers?: {
|
|
47
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
47
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
48
48
|
url: string;
|
|
49
49
|
chainId: number;
|
|
50
50
|
}[] | undefined;
|
|
@@ -323,7 +323,7 @@ export declare const UserController: Elysia<"/users", {
|
|
|
323
323
|
liveCampaigns: number;
|
|
324
324
|
endOfDisputePeriod: number;
|
|
325
325
|
explorers?: {
|
|
326
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
326
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
327
327
|
url: string;
|
|
328
328
|
chainId: number;
|
|
329
329
|
}[] | undefined;
|
|
@@ -659,7 +659,7 @@ export declare const UserController: Elysia<"/users", {
|
|
|
659
659
|
liveCampaigns: number;
|
|
660
660
|
endOfDisputePeriod: number;
|
|
661
661
|
explorers?: {
|
|
662
|
-
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
662
|
+
type: "BLOCKSCOUT" | "ETHERSCAN" | "SOLSCAN";
|
|
663
663
|
url: string;
|
|
664
664
|
chainId: number;
|
|
665
665
|
}[] | undefined;
|
|
@@ -29,6 +29,7 @@ export declare const UserRewardsResourceDto: import("@sinclair/typebox").TObject
|
|
|
29
29
|
type: import("@sinclair/typebox").TEnum<{
|
|
30
30
|
readonly ETHERSCAN: "ETHERSCAN";
|
|
31
31
|
readonly BLOCKSCOUT: "BLOCKSCOUT";
|
|
32
|
+
readonly SOLSCAN: "SOLSCAN";
|
|
32
33
|
}>;
|
|
33
34
|
url: import("@sinclair/typebox").TString;
|
|
34
35
|
chainId: import("@sinclair/typebox").TNumber;
|