@jup-ag/platform-list 1.2.45 → 1.2.48
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/index.js +13 -10
- package/dist/platforms/1inch.js +1 -0
- package/dist/platforms/adrena.js +1 -0
- package/dist/platforms/altude.js +1 -0
- package/dist/platforms/chopcorp.js +1 -0
- package/dist/platforms/godl.js +1 -0
- package/dist/platforms/hastra.js +1 -0
- package/dist/platforms/helius.js +1 -1
- package/dist/platforms/humidifi.d.ts +3 -0
- package/dist/platforms/humidifi.js +17 -0
- package/dist/platforms/index.js +3 -0
- package/dist/platforms/jupiter-exchange.js +1 -1
- package/dist/platforms/jupiter-pm.js +1 -1
- package/dist/platforms/nodepay.js +1 -0
- package/dist/platforms/omni.js +1 -0
- package/dist/platforms/oreblue.js +1 -0
- package/dist/platforms/privacycash.js +1 -0
- package/dist/platforms/solv.js +1 -0
- package/dist/platforms/trustfun.js +1 -0
- package/dist/platforms/tuktuk.js +1 -0
- package/dist/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24,16 +24,19 @@ const platforms = index_1.platforms.map((p) => ({
|
|
|
24
24
|
isDeprecated: p.isDeprecated || false,
|
|
25
25
|
}));
|
|
26
26
|
exports.platforms = platforms;
|
|
27
|
-
const services = index_2.services.map((s) =>
|
|
28
|
-
...s
|
|
29
|
-
|
|
30
|
-
...
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
const services = index_2.services.map((s) => {
|
|
28
|
+
const { contractsRaw, ...rest } = s;
|
|
29
|
+
return {
|
|
30
|
+
...rest,
|
|
31
|
+
contracts: contractsRaw.map((c) => ({
|
|
32
|
+
...c,
|
|
33
|
+
id: `${c.networkId}-${c.address}`,
|
|
34
|
+
platformId: s.platformId,
|
|
35
|
+
serviceId: s.id,
|
|
36
|
+
networkId: c.networkId,
|
|
37
|
+
})),
|
|
38
|
+
};
|
|
39
|
+
});
|
|
37
40
|
exports.services = services;
|
|
38
41
|
const contracts = services
|
|
39
42
|
.map((s) => s.contracts)
|
package/dist/platforms/1inch.js
CHANGED
package/dist/platforms/adrena.js
CHANGED
package/dist/platforms/altude.js
CHANGED
package/dist/platforms/godl.js
CHANGED
package/dist/platforms/hastra.js
CHANGED
package/dist/platforms/helius.js
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "humidifi",
|
|
6
|
+
name: "HumidiFi",
|
|
7
|
+
description: "HumidiFi is a proprietary AMM (prop AMM) on Solana using privately managed liquidity vaults to deliver tighter spreads, lower slippage, and reduced MEV exposure for traders.",
|
|
8
|
+
defiLlamaId: "humidifi",
|
|
9
|
+
addedAt: 1767865388000,
|
|
10
|
+
links: {
|
|
11
|
+
website: "https://humidifi.xyz/",
|
|
12
|
+
twitter: "https://x.com/humidifi",
|
|
13
|
+
},
|
|
14
|
+
tokens: ["WETZjtprkDMCcUxPi9PfWnowMRZkiGGHDb9rABuRZ2U"],
|
|
15
|
+
tags: ["liquidity-provider"],
|
|
16
|
+
};
|
|
17
|
+
exports.services = [];
|
package/dist/platforms/index.js
CHANGED
|
@@ -147,6 +147,7 @@ const holdium = __importStar(require("./holdium"));
|
|
|
147
147
|
const honeyland = __importStar(require("./honeyland"));
|
|
148
148
|
const hubble = __importStar(require("./hubble"));
|
|
149
149
|
const huma = __importStar(require("./huma"));
|
|
150
|
+
const humidifi = __importStar(require("./humidifi"));
|
|
150
151
|
const hxro = __importStar(require("./hxro"));
|
|
151
152
|
const hylo = __importStar(require("./hylo"));
|
|
152
153
|
const iloop = __importStar(require("./iloop"));
|
|
@@ -426,6 +427,7 @@ exports.platforms = [
|
|
|
426
427
|
honeyland.platform,
|
|
427
428
|
hubble.platform,
|
|
428
429
|
huma.platform,
|
|
430
|
+
humidifi.platform,
|
|
429
431
|
hxro.platform,
|
|
430
432
|
hylo.platform,
|
|
431
433
|
iloop.platform,
|
|
@@ -706,6 +708,7 @@ exports.services = [
|
|
|
706
708
|
...honeyland.services,
|
|
707
709
|
...hubble.services,
|
|
708
710
|
...huma.services,
|
|
711
|
+
...humidifi.services,
|
|
709
712
|
...hxro.services,
|
|
710
713
|
...hylo.services,
|
|
711
714
|
...iloop.services,
|
package/dist/platforms/omni.js
CHANGED
package/dist/platforms/solv.js
CHANGED
package/dist/platforms/tuktuk.js
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export type Platform = {
|
|
|
7
7
|
description?: string;
|
|
8
8
|
defiLlamaId?: string;
|
|
9
9
|
isDeprecated: boolean;
|
|
10
|
+
addedAt?: number;
|
|
10
11
|
tokens?: string[];
|
|
11
12
|
tags: PlatformTag[];
|
|
12
13
|
links: {
|
|
@@ -19,7 +20,7 @@ export type Platform = {
|
|
|
19
20
|
documentation?: string;
|
|
20
21
|
};
|
|
21
22
|
};
|
|
22
|
-
export type PlatformTag = "dapp" | "tool" | "cex" | "nft-collection" | "nft-marketplace" | "lst" | "gaming" | "bridge" | "dao" | "memecoin" | "stablecoin" | "wallet" | "launchpad" | "dex" | "social" | "depin" | "desci" | "fitness" | "liquidity-provider";
|
|
23
|
+
export type PlatformTag = "dapp" | "tool" | "cex" | "nft-collection" | "nft-marketplace" | "lst" | "gaming" | "bridge" | "dao" | "memecoin" | "stablecoin" | "wallet" | "launchpad" | "dex" | "social" | "depin" | "desci" | "fitness" | "liquidity-provider" | "lending" | "rwa" | "institutional" | "prediction" | "trading" | "infrastructure" | "amm";
|
|
23
24
|
type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
|
|
24
25
|
export type PlatformRaw = Omit<Optional<Platform, "isDeprecated">, "image">;
|
|
25
26
|
export type Service = {
|