@jup-ag/platform-list 1.2.90 → 1.2.92
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/platforms/garden.d.ts +4 -0
- package/dist/platforms/garden.js +27 -0
- package/dist/platforms/index.js +3 -0
- package/dist/platforms/jupiter-offerbook.js +1 -1
- package/dist/platforms/phoenix.d.ts +2 -1
- package/dist/platforms/phoenix.js +19 -6
- package/dist/platforms/smithii.d.ts +1 -0
- package/dist/platforms/smithii.js +14 -2
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.service = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "garden",
|
|
7
|
+
name: "Garden",
|
|
8
|
+
description: "Garden is the fastest and most cost-efficient way to move native Bitcoin between chains, without giving up custody.",
|
|
9
|
+
tags: ["tool", "bridge", "dapp"],
|
|
10
|
+
defiLlamaId: "garden",
|
|
11
|
+
links: {
|
|
12
|
+
website: "https://garden.finance",
|
|
13
|
+
twitter: "https://x.com/gardenfi",
|
|
14
|
+
},
|
|
15
|
+
};
|
|
16
|
+
const contract = {
|
|
17
|
+
name: "Bridge",
|
|
18
|
+
address: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF",
|
|
19
|
+
networkId: types_1.NetworkId.solana,
|
|
20
|
+
};
|
|
21
|
+
exports.service = {
|
|
22
|
+
id: `${exports.platform.id}-bridge`,
|
|
23
|
+
name: "Bridge",
|
|
24
|
+
platformId: exports.platform.id,
|
|
25
|
+
contractsRaw: [contract],
|
|
26
|
+
};
|
|
27
|
+
exports.services = [exports.service];
|
package/dist/platforms/index.js
CHANGED
|
@@ -161,6 +161,7 @@ const fuse = __importStar(require("./fuse"));
|
|
|
161
161
|
const futarchy = __importStar(require("./futarchy"));
|
|
162
162
|
const futard = __importStar(require("./futard"));
|
|
163
163
|
const galaxy = __importStar(require("./galaxy"));
|
|
164
|
+
const garden = __importStar(require("./garden"));
|
|
164
165
|
const gary = __importStar(require("./gary"));
|
|
165
166
|
const gauntlet = __importStar(require("./gauntlet"));
|
|
166
167
|
const gecko = __importStar(require("./gecko"));
|
|
@@ -566,6 +567,7 @@ exports.platforms = [
|
|
|
566
567
|
futarchy.platform,
|
|
567
568
|
futard.platform,
|
|
568
569
|
galaxy.platform,
|
|
570
|
+
garden.platform,
|
|
569
571
|
gary.platform,
|
|
570
572
|
gauntlet.platform,
|
|
571
573
|
gecko.platform,
|
|
@@ -972,6 +974,7 @@ exports.services = [
|
|
|
972
974
|
...futarchy.services,
|
|
973
975
|
...futard.services,
|
|
974
976
|
...galaxy.services,
|
|
977
|
+
...garden.services,
|
|
975
978
|
...gary.services,
|
|
976
979
|
...gauntlet.services,
|
|
977
980
|
...gecko.services,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PlatformRaw, ServiceRaw } from "../types";
|
|
2
2
|
export declare const platform: PlatformRaw;
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const legacyService: ServiceRaw;
|
|
4
|
+
export declare const eternalService: ServiceRaw;
|
|
4
5
|
export declare const services: ServiceRaw[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.
|
|
3
|
+
exports.services = exports.eternalService = exports.legacyService = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "phoenix",
|
|
@@ -17,16 +17,29 @@ exports.platform = {
|
|
|
17
17
|
tags: ["dapp", "dex", "trading", "defi"],
|
|
18
18
|
};
|
|
19
19
|
const contract = {
|
|
20
|
-
name: "
|
|
20
|
+
name: "Legacy",
|
|
21
21
|
address: "PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY",
|
|
22
22
|
networkId: types_1.NetworkId.solana,
|
|
23
23
|
};
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
const eternalContract = {
|
|
25
|
+
name: "Eternal",
|
|
26
|
+
address: "EtrnLzgbS7nMMy5fbD42kXiUzGg8XQzJ972Xtk1cjWih",
|
|
27
|
+
networkId: types_1.NetworkId.solana,
|
|
28
|
+
};
|
|
29
|
+
exports.legacyService = {
|
|
30
|
+
id: `${exports.platform.id}-legacy`,
|
|
31
|
+
name: "Legacy",
|
|
27
32
|
platformId: exports.platform.id,
|
|
28
33
|
contractsRaw: [contract],
|
|
29
34
|
link: "https://www.phoenix.trade/",
|
|
30
35
|
description: "On-chain central limit order book enabling traders to place limit and market orders with full price-time priority matching.",
|
|
31
36
|
};
|
|
32
|
-
exports.
|
|
37
|
+
exports.eternalService = {
|
|
38
|
+
id: `${exports.platform.id}-eternal`,
|
|
39
|
+
name: "Eternal",
|
|
40
|
+
platformId: exports.platform.id,
|
|
41
|
+
contractsRaw: [eternalContract],
|
|
42
|
+
link: "https://www.phoenix.trade/",
|
|
43
|
+
description: "On-chain central limit order book enabling traders to place limit and market orders with full price-time priority matching.",
|
|
44
|
+
};
|
|
45
|
+
exports.services = [exports.legacyService, exports.eternalService];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.service = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "smithii",
|
|
6
7
|
name: "Smithii",
|
|
@@ -17,5 +18,16 @@ exports.platform = {
|
|
|
17
18
|
addedAt: 1771329600000,
|
|
18
19
|
isDeprecated: true,
|
|
19
20
|
};
|
|
20
|
-
|
|
21
|
+
const contract = {
|
|
22
|
+
name: "Launchpad",
|
|
23
|
+
address: "payTxVMsrh3oo81ocHb6xFge4vGUJenEFFa3sRdLNX2",
|
|
24
|
+
networkId: types_1.NetworkId.solana,
|
|
25
|
+
};
|
|
26
|
+
exports.service = {
|
|
27
|
+
id: `${exports.platform.id}-launchpad`,
|
|
28
|
+
name: "Launchpad",
|
|
29
|
+
platformId: exports.platform.id,
|
|
30
|
+
contractsRaw: [contract],
|
|
31
|
+
};
|
|
32
|
+
exports.services = [exports.service];
|
|
21
33
|
exports.default = exports.services;
|