@merkl/api 0.19.12 → 0.19.14
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/seeder/resources/protocol.d.ts +12 -12
- package/dist/database/api/seeder/resources/protocol.js +13 -13
- package/dist/src/eden/index.d.ts +460 -456
- package/dist/src/index.d.ts +168 -160
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +199 -158
- package/dist/src/modules/v4/campaign/campaign.controller.js +28 -32
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +3 -1
- package/dist/src/modules/v4/campaign/campaign.model.js +2 -1
- package/dist/src/modules/v4/campaign/campaign.repository.js +1 -1
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +5 -10
- package/dist/src/modules/v4/campaign/campaign.service.js +3 -2
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +4 -3
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +2 -1
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +5 -6
- package/dist/src/modules/v4/opportunity/opportunity.service.js +6 -9
- package/dist/src/modules/v4/protocol/protocol.service.js +0 -33
- package/dist/src/modules/v4/router.d.ts +168 -160
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -55,9 +55,9 @@ declare const _default: {
|
|
55
55
|
readonly icon: string;
|
56
56
|
readonly url: "";
|
57
57
|
};
|
58
|
-
readonly
|
59
|
-
readonly id: "pancakeswap
|
60
|
-
readonly name: "
|
58
|
+
readonly pancakeswap: {
|
59
|
+
readonly id: "pancakeswap";
|
60
|
+
readonly name: "PancakeSwap";
|
61
61
|
readonly tags: readonly ["ALM"];
|
62
62
|
readonly icon: string;
|
63
63
|
readonly url: "";
|
@@ -104,12 +104,12 @@ declare const _default: {
|
|
104
104
|
readonly icon: string;
|
105
105
|
readonly url: "";
|
106
106
|
};
|
107
|
-
readonly
|
108
|
-
readonly id: "sushiswap
|
109
|
-
readonly name: "
|
107
|
+
readonly sushiswap: {
|
108
|
+
readonly id: "sushiswap";
|
109
|
+
readonly name: "SushiSwap";
|
110
110
|
readonly tags: readonly ["ALM"];
|
111
111
|
readonly icon: string;
|
112
|
-
readonly url: "";
|
112
|
+
readonly url: "https://www.sushi.com/ethereum/swap";
|
113
113
|
};
|
114
114
|
readonly swapr: {
|
115
115
|
readonly id: "swapr";
|
@@ -146,9 +146,9 @@ declare const _default: {
|
|
146
146
|
readonly icon: string;
|
147
147
|
readonly url: "";
|
148
148
|
};
|
149
|
-
readonly
|
150
|
-
readonly id: "uniswap
|
151
|
-
readonly name: "
|
149
|
+
readonly uniswap: {
|
150
|
+
readonly id: "uniswap";
|
151
|
+
readonly name: "Uniswap";
|
152
152
|
readonly tags: readonly ["DEX"];
|
153
153
|
readonly icon: string;
|
154
154
|
readonly url: "";
|
@@ -349,8 +349,8 @@ declare const _default: {
|
|
349
349
|
readonly icon: string;
|
350
350
|
readonly url: "";
|
351
351
|
};
|
352
|
-
readonly
|
353
|
-
readonly id: "supswap
|
352
|
+
readonly supswap: {
|
353
|
+
readonly id: "supswap";
|
354
354
|
readonly name: "Supswap";
|
355
355
|
readonly icon: string;
|
356
356
|
readonly url: "";
|
@@ -57,9 +57,9 @@ export default {
|
|
57
57
|
icon: bucket("kim.svg"),
|
58
58
|
url: "",
|
59
59
|
},
|
60
|
-
|
61
|
-
id: "pancakeswap
|
62
|
-
name: "
|
60
|
+
pancakeswap: {
|
61
|
+
id: "pancakeswap",
|
62
|
+
name: "PancakeSwap",
|
63
63
|
tags: ["ALM"],
|
64
64
|
icon: bucket("pancakeswap.svg"),
|
65
65
|
url: "",
|
@@ -106,12 +106,12 @@ export default {
|
|
106
106
|
icon: bucket("stryke.svg"),
|
107
107
|
url: "",
|
108
108
|
},
|
109
|
-
|
110
|
-
id: "sushiswap
|
111
|
-
name: "
|
109
|
+
sushiswap: {
|
110
|
+
id: "sushiswap",
|
111
|
+
name: "SushiSwap",
|
112
112
|
tags: ["ALM"],
|
113
113
|
icon: bucket("sushi.svg"),
|
114
|
-
url: "",
|
114
|
+
url: "https://www.sushi.com/ethereum/swap",
|
115
115
|
},
|
116
116
|
swapr: {
|
117
117
|
id: "swapr",
|
@@ -149,11 +149,11 @@ export default {
|
|
149
149
|
url: "",
|
150
150
|
},
|
151
151
|
// ─── LP DEX ──────────────────────────────────────────────────────────
|
152
|
-
|
153
|
-
id: "uniswap
|
154
|
-
name: "
|
152
|
+
uniswap: {
|
153
|
+
id: "uniswap",
|
154
|
+
name: "Uniswap",
|
155
155
|
tags: ["DEX"],
|
156
|
-
icon: bucket("uniswap
|
156
|
+
icon: bucket("uniswap.svg"),
|
157
157
|
url: "",
|
158
158
|
},
|
159
159
|
velodrome: {
|
@@ -321,8 +321,8 @@ export default {
|
|
321
321
|
icon: bucket("layerbank.svg"),
|
322
322
|
url: "",
|
323
323
|
},
|
324
|
-
|
325
|
-
id: "supswap
|
324
|
+
supswap: {
|
325
|
+
id: "supswap",
|
326
326
|
name: "Supswap",
|
327
327
|
icon: bucket("subswap.svg"),
|
328
328
|
url: "",
|