@merkl/api 1.6.10 → 1.6.12
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/cache/declaration.d.ts +0 -50
- package/dist/src/cache/declaration.js.map +1 -1
- package/dist/src/eden/index.d.ts +70 -114
- package/dist/src/engine/implementations/clamm/tvl.abstract.d.ts +1 -1
- package/dist/src/index.d.ts +119 -173
- package/dist/src/index.js.map +1 -1
- package/dist/src/jobs/update-v3-caches.js.map +1 -1
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +10 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +20 -0
- package/dist/src/modules/v4/chain/chain.formatter.d.ts +6 -2
- package/dist/src/modules/v4/chain/chain.formatter.js.map +1 -1
- package/dist/src/modules/v4/clamm/clamm.controller.d.ts +2 -2
- package/dist/src/modules/v4/config/config.controller.d.ts +37 -0
- package/dist/src/modules/v4/config/config.controller.js.map +1 -1
- package/dist/src/modules/v4/config/config.service.js.map +1 -1
- package/dist/src/modules/v4/merklRoot/merklRoot.controller.d.ts +1 -7
- package/dist/src/modules/v4/merklRoot/merklRoot.model.d.ts +7 -0
- package/dist/src/modules/v4/merklRoot/merklRoot.service.d.ts +3 -19
- package/dist/src/modules/v4/merklRoot/merklRoot.service.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.formatter.d.ts +16 -1
- package/dist/src/modules/v4/opportunity/opportunity.formatter.js.map +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +22 -2
- package/dist/src/modules/v4/override/override.controller.d.ts +49 -90
- package/dist/src/modules/v4/override/override.controller.js.map +1 -1
- package/dist/src/modules/v4/override/override.service.d.ts +1 -6
- package/dist/src/modules/v4/override/override.service.js.map +1 -1
- package/dist/src/modules/v4/reward/reward.service.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +99 -99
- package/dist/src/modules/v4/uniswap/uniswap.service.js.map +1 -1
- package/dist/src/plugins/errorHandler.js.map +1 -1
- package/dist/src/routes/v3/router.d.ts +0 -74
- package/dist/src/routes/v3/router.js.map +1 -1
- package/package.json +1 -1
- package/dist/src/libs/positions/EigenLayer/index.d.ts +0 -6
- package/dist/src/libs/positions/EigenLayer/index.js.map +0 -1
- package/dist/src/libs/positions/ajna/index.d.ts +0 -6
- package/dist/src/libs/positions/ajna/index.js.map +0 -1
- package/dist/src/libs/positions/badger/index.d.ts +0 -6
- package/dist/src/libs/positions/badger/index.js.map +0 -1
- package/dist/src/libs/positions/clamm/index.d.ts +0 -7
- package/dist/src/libs/positions/clamm/index.js.map +0 -1
- package/dist/src/libs/positions/compound/index.d.ts +0 -25
- package/dist/src/libs/positions/compound/index.js.map +0 -1
- package/dist/src/libs/positions/dolomite/index.d.ts +0 -17
- package/dist/src/libs/positions/dolomite/index.js.map +0 -1
- package/dist/src/libs/positions/erc20/index.d.ts +0 -5
- package/dist/src/libs/positions/erc20/index.js.map +0 -1
- package/dist/src/libs/positions/euler/index.d.ts +0 -5
- package/dist/src/libs/positions/euler/index.js.map +0 -1
- package/dist/src/libs/positions/index.d.ts +0 -2
- package/dist/src/libs/positions/index.js.map +0 -1
- package/dist/src/libs/positions/morpho/index.d.ts +0 -6
- package/dist/src/libs/positions/morpho/index.js.map +0 -1
- package/dist/src/libs/positions/prepareFetch.d.ts +0 -22
- package/dist/src/libs/positions/prepareFetch.js.map +0 -1
- package/dist/src/libs/positions/silo/index.d.ts +0 -5
- package/dist/src/libs/positions/silo/index.js.map +0 -1
- package/dist/src/libs/positions/types.d.ts +0 -76
- package/dist/src/libs/positions/types.js.map +0 -1
- package/dist/src/libs/staticCampaigns.d.ts +0 -7
- package/dist/src/libs/staticCampaigns.js.map +0 -1
- package/dist/src/routes/v3/campaign/delay.d.ts +0 -90
- package/dist/src/routes/v3/campaign/delay.js.map +0 -1
- package/dist/src/routes/v3/campaigns.d.ts +0 -85
- package/dist/src/routes/v3/campaigns.js.map +0 -1
- package/dist/src/routes/v3/positions.d.ts +0 -103
- package/dist/src/routes/v3/positions.js.map +0 -1
- package/dist/src/routes/v3/updates.d.ts +0 -92
- package/dist/src/routes/v3/updates.js.map +0 -1
|
@@ -1,15 +1,5 @@
|
|
|
1
1
|
import { TTLType } from "./redis";
|
|
2
2
|
export declare const CacheDeclaration: {
|
|
3
|
-
Updates: {
|
|
4
|
-
compressed: false;
|
|
5
|
-
redisTTL: TTLType.Minutes2;
|
|
6
|
-
localCache: false;
|
|
7
|
-
};
|
|
8
|
-
Delays: {
|
|
9
|
-
compressed: false;
|
|
10
|
-
redisTTL: TTLType.Minutes2;
|
|
11
|
-
localCache: false;
|
|
12
|
-
};
|
|
13
3
|
TwtParticipants: {
|
|
14
4
|
compressed: false;
|
|
15
5
|
redisTTL: TTLType.Minutes5;
|
|
@@ -65,26 +55,11 @@ export declare const CacheDeclaration: {
|
|
|
65
55
|
redisTTL: TTLType.Minutes30;
|
|
66
56
|
localCache: false;
|
|
67
57
|
};
|
|
68
|
-
Opportunities: {
|
|
69
|
-
compressed: true;
|
|
70
|
-
redisTTL: TTLType.Hours12;
|
|
71
|
-
localCache: false;
|
|
72
|
-
};
|
|
73
|
-
OpportunitiesWithTest: {
|
|
74
|
-
compressed: true;
|
|
75
|
-
redisTTL: TTLType.Hours12;
|
|
76
|
-
localCache: false;
|
|
77
|
-
};
|
|
78
58
|
Campaigns: {
|
|
79
59
|
compressed: true;
|
|
80
60
|
redisTTL: TTLType.Hours12;
|
|
81
61
|
localCache: false;
|
|
82
62
|
};
|
|
83
|
-
LiveCampaigns: {
|
|
84
|
-
compressed: true;
|
|
85
|
-
redisTTL: TTLType.Hours12;
|
|
86
|
-
localCache: false;
|
|
87
|
-
};
|
|
88
63
|
CampaignsOldFormat: {
|
|
89
64
|
compressed: true;
|
|
90
65
|
redisTTL: TTLType.Hours12;
|
|
@@ -95,39 +70,14 @@ export declare const CacheDeclaration: {
|
|
|
95
70
|
redisTTL: TTLType.Hours12;
|
|
96
71
|
localCache: false;
|
|
97
72
|
};
|
|
98
|
-
StaticCampaigns: {
|
|
99
|
-
compressed: true;
|
|
100
|
-
redisTTL: TTLType.Hours12;
|
|
101
|
-
localCache: false;
|
|
102
|
-
};
|
|
103
|
-
Blacklist: {
|
|
104
|
-
compressed: true;
|
|
105
|
-
redisTTL: TTLType.Minutes10;
|
|
106
|
-
localCache: false;
|
|
107
|
-
};
|
|
108
73
|
TokenList: {
|
|
109
74
|
compressed: false;
|
|
110
75
|
redisTTL: TTLType.Minutes30;
|
|
111
76
|
localCache: false;
|
|
112
77
|
};
|
|
113
|
-
CurrentRoot: {
|
|
114
|
-
compressed: false;
|
|
115
|
-
redisTTL: TTLType.Seconds30;
|
|
116
|
-
localCache: true;
|
|
117
|
-
};
|
|
118
78
|
Chains: {
|
|
119
79
|
compressed: false;
|
|
120
80
|
redisTTL: TTLType.Hours3;
|
|
121
81
|
localCache: true;
|
|
122
82
|
};
|
|
123
|
-
RootsWithRewardOnChain: {
|
|
124
|
-
compressed: false;
|
|
125
|
-
redisTTL: TTLType.Minutes2;
|
|
126
|
-
localCache: true;
|
|
127
|
-
};
|
|
128
|
-
UniswapV4Pools: {
|
|
129
|
-
compressed: false;
|
|
130
|
-
redisTTL: TTLType.Day;
|
|
131
|
-
localCache: false;
|
|
132
|
-
};
|
|
133
83
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"declaration.js","sourceRoot":"","sources":["../../../../../apps/api/src/cache/declaration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAElC,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,
|
|
1
|
+
{"version":3,"file":"declaration.js","sourceRoot":"","sources":["../../../../../apps/api/src/cache/declaration.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAElC,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,eAAe,EAAE,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,CAAC,QAAQ,EAAE,UAAU,EAAE,KAAK,EAAE;IACrF,eAAe,EAAE;QACf,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,OAAO;QACzB,UAAU,EAAE,KAAK;KAClB;IACD,SAAS,EAAE;QACT,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,MAAM;QACxB,UAAU,EAAE,KAAK;KAClB;IACD,eAAe,EAAE;QACf,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,SAAS;QAC3B,UAAU,EAAE,KAAK;KAClB;IACD,aAAa,EAAE;QACb,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,GAAG;QACrB,UAAU,EAAE,KAAK;KAClB;IACD,qBAAqB,EAAE;QACrB,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,IAAI;QACtB,UAAU,EAAE,KAAK;KAClB;IACD,cAAc,EAAE;QACd,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,SAAS;QAC3B,UAAU,EAAE,KAAK;KAClB;IACD,WAAW,EAAE;QACX,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,SAAS;QAC3B,UAAU,EAAE,KAAK;KAClB;IACD,aAAa,EAAE;QACb,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,SAAS;QAC3B,UAAU,EAAE,KAAK;KAClB;IACD,MAAM,EAAE;QACN,UAAU,EAAE,IAAI;QAChB,QAAQ,EAAE,OAAO,CAAC,SAAS;QAC3B,UAAU,EAAE,KAAK;KAClB;IACD,cAAc,EAAE;QACd,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,SAAS;QAC3B,UAAU,EAAE,KAAK;KAClB;IACD,SAAS,EAAE;QACT,UAAU,EAAE,IAAI;QAChB,QAAQ,EAAE,OAAO,CAAC,OAAO;QACzB,UAAU,EAAE,KAAK;KAClB;IACD,kBAAkB,EAAE;QAClB,UAAU,EAAE,IAAI;QAChB,QAAQ,EAAE,OAAO,CAAC,OAAO;QACzB,UAAU,EAAE,KAAK;KAClB;IACD,sBAAsB,EAAE;QACtB,UAAU,EAAE,IAAI;QAChB,QAAQ,EAAE,OAAO,CAAC,OAAO;QACzB,UAAU,EAAE,KAAK;KAClB;IACD,SAAS,EAAE;QACT,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,SAAS;QAC3B,UAAU,EAAE,KAAK;KAClB;IACD,MAAM,EAAE;QACN,UAAU,EAAE,KAAK;QACjB,QAAQ,EAAE,OAAO,CAAC,MAAM;QACxB,UAAU,EAAE,IAAI;KACjB;CAGF,CAAC"}
|
package/dist/src/eden/index.d.ts
CHANGED
|
@@ -23,6 +23,23 @@ declare const eden: {
|
|
|
23
23
|
message: string;
|
|
24
24
|
};
|
|
25
25
|
}>>;
|
|
26
|
+
"favicon.ico": {
|
|
27
|
+
get: (options?: {
|
|
28
|
+
fetch?: RequestInit | undefined;
|
|
29
|
+
headers?: Record<string, unknown> | undefined;
|
|
30
|
+
query?: Record<string, unknown> | undefined;
|
|
31
|
+
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
32
|
+
200: Response | {
|
|
33
|
+
name: string;
|
|
34
|
+
message: any;
|
|
35
|
+
info: any;
|
|
36
|
+
} | {
|
|
37
|
+
info?: undefined;
|
|
38
|
+
name: string;
|
|
39
|
+
message: string;
|
|
40
|
+
};
|
|
41
|
+
}>>;
|
|
42
|
+
};
|
|
26
43
|
v1: {
|
|
27
44
|
allowances: {
|
|
28
45
|
get: (options: {
|
|
@@ -231,23 +248,6 @@ declare const eden: {
|
|
|
231
248
|
};
|
|
232
249
|
}>>;
|
|
233
250
|
};
|
|
234
|
-
campaigns: {
|
|
235
|
-
get: (options: {
|
|
236
|
-
fetch?: RequestInit | undefined;
|
|
237
|
-
headers?: Record<string, unknown> | undefined;
|
|
238
|
-
query: {
|
|
239
|
-
chainIds?: string | string[] | undefined;
|
|
240
|
-
types?: string | number | number[] | string[] | undefined;
|
|
241
|
-
live?: boolean | undefined;
|
|
242
|
-
creatorTag?: string | undefined;
|
|
243
|
-
hideTestTokens?: string | undefined;
|
|
244
|
-
};
|
|
245
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
246
|
-
[x: string]: any;
|
|
247
|
-
[x: number]: any;
|
|
248
|
-
[x: symbol]: any;
|
|
249
|
-
}>>;
|
|
250
|
-
};
|
|
251
251
|
campaignsForMainParameter: {
|
|
252
252
|
get: (options: {
|
|
253
253
|
fetch?: RequestInit | undefined;
|
|
@@ -691,26 +691,6 @@ declare const eden: {
|
|
|
691
691
|
};
|
|
692
692
|
}>>;
|
|
693
693
|
};
|
|
694
|
-
positions: {
|
|
695
|
-
get: (options: {
|
|
696
|
-
fetch?: RequestInit | undefined;
|
|
697
|
-
headers?: Record<string, unknown> | undefined;
|
|
698
|
-
query: {
|
|
699
|
-
chainId?: number | undefined;
|
|
700
|
-
user: string;
|
|
701
|
-
};
|
|
702
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
703
|
-
422: {
|
|
704
|
-
type: "validation";
|
|
705
|
-
on: string;
|
|
706
|
-
summary?: string | undefined;
|
|
707
|
-
message?: string | undefined;
|
|
708
|
-
found?: unknown;
|
|
709
|
-
property?: string | undefined;
|
|
710
|
-
expected?: string | undefined;
|
|
711
|
-
};
|
|
712
|
-
}>>;
|
|
713
|
-
};
|
|
714
694
|
radiant: {
|
|
715
695
|
get: (options: {
|
|
716
696
|
fetch?: RequestInit | undefined;
|
|
@@ -867,28 +847,6 @@ declare const eden: {
|
|
|
867
847
|
};
|
|
868
848
|
}>>;
|
|
869
849
|
};
|
|
870
|
-
updates: {
|
|
871
|
-
get: (options: {
|
|
872
|
-
fetch?: RequestInit | undefined;
|
|
873
|
-
headers?: Record<string, unknown> | undefined;
|
|
874
|
-
query: {};
|
|
875
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
876
|
-
200: import("../routes/v3/updates").UpdatesT;
|
|
877
|
-
400: {
|
|
878
|
-
error: string;
|
|
879
|
-
message?: string | undefined;
|
|
880
|
-
};
|
|
881
|
-
422: {
|
|
882
|
-
type: "validation";
|
|
883
|
-
on: string;
|
|
884
|
-
summary?: string | undefined;
|
|
885
|
-
message?: string | undefined;
|
|
886
|
-
found?: unknown;
|
|
887
|
-
property?: string | undefined;
|
|
888
|
-
expected?: string | undefined;
|
|
889
|
-
};
|
|
890
|
-
}>>;
|
|
891
|
-
};
|
|
892
850
|
userRewards: {
|
|
893
851
|
get: (options: {
|
|
894
852
|
fetch?: RequestInit | undefined;
|
|
@@ -2388,6 +2346,11 @@ declare const eden: {
|
|
|
2388
2346
|
icon: string;
|
|
2389
2347
|
liveCampaigns: number;
|
|
2390
2348
|
endOfDisputePeriod: number;
|
|
2349
|
+
explorers?: {
|
|
2350
|
+
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
2351
|
+
url: string;
|
|
2352
|
+
chainId: number;
|
|
2353
|
+
}[] | undefined;
|
|
2391
2354
|
};
|
|
2392
2355
|
protocol: {
|
|
2393
2356
|
id: string;
|
|
@@ -5145,6 +5108,11 @@ declare const eden: {
|
|
|
5145
5108
|
icon: string;
|
|
5146
5109
|
liveCampaigns: number;
|
|
5147
5110
|
endOfDisputePeriod: number;
|
|
5111
|
+
explorers?: {
|
|
5112
|
+
type: "BLOCKSCOUT" | "ETHERSCAN";
|
|
5113
|
+
url: string;
|
|
5114
|
+
chainId: number;
|
|
5115
|
+
}[] | undefined;
|
|
5148
5116
|
};
|
|
5149
5117
|
protocol: {
|
|
5150
5118
|
id: string;
|
|
@@ -6830,7 +6798,7 @@ declare const eden: {
|
|
|
6830
6798
|
symbolCurrency1: string;
|
|
6831
6799
|
tickSpacing: number;
|
|
6832
6800
|
} & {
|
|
6833
|
-
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6801
|
+
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").CAMELOT | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6834
6802
|
}) | ({
|
|
6835
6803
|
chainId: number;
|
|
6836
6804
|
currency0: string;
|
|
@@ -6876,7 +6844,7 @@ declare const eden: {
|
|
|
6876
6844
|
symbolCurrency1: string;
|
|
6877
6845
|
tickSpacing: number;
|
|
6878
6846
|
} & {
|
|
6879
|
-
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6847
|
+
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").CAMELOT | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6880
6848
|
}) | ({
|
|
6881
6849
|
chainId: number;
|
|
6882
6850
|
currency0: string;
|
|
@@ -6929,7 +6897,7 @@ declare const eden: {
|
|
|
6929
6897
|
symbolCurrency1: string;
|
|
6930
6898
|
tickSpacing: number;
|
|
6931
6899
|
} & {
|
|
6932
|
-
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6900
|
+
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").CAMELOT | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6933
6901
|
}) | ({
|
|
6934
6902
|
chainId: number;
|
|
6935
6903
|
currency0: string;
|
|
@@ -6975,7 +6943,7 @@ declare const eden: {
|
|
|
6975
6943
|
symbolCurrency1: string;
|
|
6976
6944
|
tickSpacing: number;
|
|
6977
6945
|
} & {
|
|
6978
|
-
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6946
|
+
protocol: import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").CAMELOT | import("@package/resources/enums").KYO | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").UNISWAPV4 | import("@package/resources/enums").VELODROME | import("@package/resources/enums").HYBRA | import("@package/resources/enums").KATANA | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").UNISWAPV3 | import("@package/resources/enums").XSWAP | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").AERODROME | import("@package/resources/enums").KITTEN_SWAP;
|
|
6979
6947
|
}) | ({
|
|
6980
6948
|
chainId: number;
|
|
6981
6949
|
currency0: string;
|
|
@@ -7073,6 +7041,38 @@ declare const eden: {
|
|
|
7073
7041
|
};
|
|
7074
7042
|
}>>;
|
|
7075
7043
|
})) & {};
|
|
7044
|
+
diff: {
|
|
7045
|
+
post: (body: {
|
|
7046
|
+
oldConfig: any;
|
|
7047
|
+
newConfig: any;
|
|
7048
|
+
}, options?: {
|
|
7049
|
+
fetch?: RequestInit | undefined;
|
|
7050
|
+
headers?: Record<string, unknown> | undefined;
|
|
7051
|
+
query?: Record<string, unknown> | undefined;
|
|
7052
|
+
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
7053
|
+
200: ({
|
|
7054
|
+
type: "insert";
|
|
7055
|
+
path: string;
|
|
7056
|
+
value: any;
|
|
7057
|
+
} | {
|
|
7058
|
+
type: "update";
|
|
7059
|
+
path: string;
|
|
7060
|
+
value: any;
|
|
7061
|
+
} | {
|
|
7062
|
+
type: "delete";
|
|
7063
|
+
path: string;
|
|
7064
|
+
})[];
|
|
7065
|
+
422: {
|
|
7066
|
+
type: "validation";
|
|
7067
|
+
on: string;
|
|
7068
|
+
summary?: string | undefined;
|
|
7069
|
+
message?: string | undefined;
|
|
7070
|
+
found?: unknown;
|
|
7071
|
+
property?: string | undefined;
|
|
7072
|
+
expected?: string | undefined;
|
|
7073
|
+
};
|
|
7074
|
+
}>>;
|
|
7075
|
+
};
|
|
7076
7076
|
encode: {
|
|
7077
7077
|
post: (body?: any, options?: {
|
|
7078
7078
|
fetch?: RequestInit | undefined;
|
|
@@ -11011,13 +11011,11 @@ declare const eden: {
|
|
|
11011
11011
|
apply: ((params: {
|
|
11012
11012
|
campaignId: string | number;
|
|
11013
11013
|
}) => {
|
|
11014
|
-
post: (body
|
|
11014
|
+
post: (body?: unknown, options?: {
|
|
11015
11015
|
fetch?: RequestInit | undefined;
|
|
11016
|
-
headers
|
|
11017
|
-
authorization: string;
|
|
11018
|
-
};
|
|
11016
|
+
headers?: Record<string, unknown> | undefined;
|
|
11019
11017
|
query?: Record<string, unknown> | undefined;
|
|
11020
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
11018
|
+
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
11021
11019
|
200: any;
|
|
11022
11020
|
422: {
|
|
11023
11021
|
type: "validation";
|
|
@@ -11033,13 +11031,11 @@ declare const eden: {
|
|
|
11033
11031
|
post: (body: {
|
|
11034
11032
|
config: any;
|
|
11035
11033
|
override: any;
|
|
11036
|
-
}, options
|
|
11034
|
+
}, options?: {
|
|
11037
11035
|
fetch?: RequestInit | undefined;
|
|
11038
|
-
headers
|
|
11039
|
-
authorization: string;
|
|
11040
|
-
};
|
|
11036
|
+
headers?: Record<string, unknown> | undefined;
|
|
11041
11037
|
query?: Record<string, unknown> | undefined;
|
|
11042
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
11038
|
+
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
11043
11039
|
200: any;
|
|
11044
11040
|
422: {
|
|
11045
11041
|
type: "validation";
|
|
@@ -11052,40 +11048,6 @@ declare const eden: {
|
|
|
11052
11048
|
};
|
|
11053
11049
|
}>>;
|
|
11054
11050
|
};
|
|
11055
|
-
diff: {
|
|
11056
|
-
post: (body: {
|
|
11057
|
-
oldConfig: any;
|
|
11058
|
-
newConfig: any;
|
|
11059
|
-
}, options: {
|
|
11060
|
-
fetch?: RequestInit | undefined;
|
|
11061
|
-
headers: {
|
|
11062
|
-
authorization: string;
|
|
11063
|
-
};
|
|
11064
|
-
query?: Record<string, unknown> | undefined;
|
|
11065
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
11066
|
-
200: ({
|
|
11067
|
-
type: "insert";
|
|
11068
|
-
path: string;
|
|
11069
|
-
value: any;
|
|
11070
|
-
} | {
|
|
11071
|
-
type: "update";
|
|
11072
|
-
path: string;
|
|
11073
|
-
value: any;
|
|
11074
|
-
} | {
|
|
11075
|
-
type: "delete";
|
|
11076
|
-
path: string;
|
|
11077
|
-
})[];
|
|
11078
|
-
422: {
|
|
11079
|
-
type: "validation";
|
|
11080
|
-
on: string;
|
|
11081
|
-
summary?: string | undefined;
|
|
11082
|
-
message?: string | undefined;
|
|
11083
|
-
found?: unknown;
|
|
11084
|
-
property?: string | undefined;
|
|
11085
|
-
expected?: string | undefined;
|
|
11086
|
-
};
|
|
11087
|
-
}>>;
|
|
11088
|
-
};
|
|
11089
11051
|
};
|
|
11090
11052
|
parse: {
|
|
11091
11053
|
post: (body: {
|
|
@@ -13417,13 +13379,7 @@ declare const eden: {
|
|
|
13417
13379
|
headers?: Record<string, unknown> | undefined;
|
|
13418
13380
|
query?: Record<string, unknown> | undefined;
|
|
13419
13381
|
} | undefined) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
13420
|
-
200: Record<number,
|
|
13421
|
-
live: string;
|
|
13422
|
-
tree: string;
|
|
13423
|
-
lastTree: string;
|
|
13424
|
-
endOfDisputePeriod: number;
|
|
13425
|
-
disputer: string;
|
|
13426
|
-
}>;
|
|
13382
|
+
200: Record<number, import("../modules/v4/merklRoot/merklRoot.model").RootCacheModel>;
|
|
13427
13383
|
}>>;
|
|
13428
13384
|
};
|
|
13429
13385
|
reports: ((params: {
|
|
@@ -5,6 +5,6 @@ type campaignType = CLAMMV3CampaignType;
|
|
|
5
5
|
export declare class CLAMMTVLBuilder implements TVLBuilder<campaignType> {
|
|
6
6
|
campaignType: campaignType;
|
|
7
7
|
constructor(campaignType: campaignType);
|
|
8
|
-
build(computeChainId: ChainId, campaigns: EngineCampaign<campaignType>[]): Promise<TVLData<import("@package/resources/enums").HYBRA | import("@package/resources/enums").UNISWAP_V3 | import("@package/resources/enums").KATANA | import("@package/resources/enums").XSWAP | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").KYO | import("@package/resources/enums").VELODROME | import("@package/resources/enums").AERODROME | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").KITTEN_SWAP | import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP>>;
|
|
8
|
+
build(computeChainId: ChainId, campaigns: EngineCampaign<campaignType>[]): Promise<TVLData<import("@package/resources/enums").HYBRA | import("@package/resources/enums").UNISWAP_V3 | import("@package/resources/enums").KATANA | import("@package/resources/enums").XSWAP | import("@package/resources/enums").KATANA_ALGEBRA | import("@package/resources/enums").VOLTAGE | import("@package/resources/enums").JAINE | import("@package/resources/enums").PANCAKESWAP | import("@package/resources/enums").RAMSES | import("@package/resources/enums").PHARAOH | import("@package/resources/enums").KYO | import("@package/resources/enums").VELODROME | import("@package/resources/enums").AERODROME | import("@package/resources/enums").NEPTUNE | import("@package/resources/enums").SYNC_SWAP | import("@package/resources/enums").KITTEN_SWAP | import("@package/resources/enums").ARTHSWAP | import("@package/resources/enums").BASE_SWAP | import("@package/resources/enums").CAMELOT>>;
|
|
9
9
|
}
|
|
10
10
|
export {};
|