@jup-ag/platform-list 1.2.91 → 1.2.93
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 +6 -0
- 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/dist/platforms/solanatracker.d.ts +3 -0
- package/dist/platforms/solanatracker.js +16 -0
- 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"));
|
|
@@ -361,6 +362,7 @@ const solanabeach = __importStar(require("./solanabeach"));
|
|
|
361
362
|
const solanaid = __importStar(require("./solanaid"));
|
|
362
363
|
const solanamobile = __importStar(require("./solanamobile"));
|
|
363
364
|
const solanart = __importStar(require("./solanart"));
|
|
365
|
+
const solanatracker = __importStar(require("./solanatracker"));
|
|
364
366
|
const solayer = __importStar(require("./solayer"));
|
|
365
367
|
const solcard = __importStar(require("./solcard"));
|
|
366
368
|
const solcasino = __importStar(require("./solcasino"));
|
|
@@ -566,6 +568,7 @@ exports.platforms = [
|
|
|
566
568
|
futarchy.platform,
|
|
567
569
|
futard.platform,
|
|
568
570
|
galaxy.platform,
|
|
571
|
+
garden.platform,
|
|
569
572
|
gary.platform,
|
|
570
573
|
gauntlet.platform,
|
|
571
574
|
gecko.platform,
|
|
@@ -766,6 +769,7 @@ exports.platforms = [
|
|
|
766
769
|
solanaid.platform,
|
|
767
770
|
solanamobile.platform,
|
|
768
771
|
solanart.platform,
|
|
772
|
+
solanatracker.platform,
|
|
769
773
|
solayer.platform,
|
|
770
774
|
solcard.platform,
|
|
771
775
|
solcasino.platform,
|
|
@@ -972,6 +976,7 @@ exports.services = [
|
|
|
972
976
|
...futarchy.services,
|
|
973
977
|
...futard.services,
|
|
974
978
|
...galaxy.services,
|
|
979
|
+
...garden.services,
|
|
975
980
|
...gary.services,
|
|
976
981
|
...gauntlet.services,
|
|
977
982
|
...gecko.services,
|
|
@@ -1172,6 +1177,7 @@ exports.services = [
|
|
|
1172
1177
|
...solanaid.services,
|
|
1173
1178
|
...solanamobile.services,
|
|
1174
1179
|
...solanart.services,
|
|
1180
|
+
...solanatracker.services,
|
|
1175
1181
|
...solayer.services,
|
|
1176
1182
|
...solcard.services,
|
|
1177
1183
|
...solcasino.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;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "solanatracker",
|
|
6
|
+
name: "Solana Tracker",
|
|
7
|
+
description: "Solana Tracker offers Data APIs, RPC Services, Swap API and a trading platform.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://www.solanatracker.io/",
|
|
10
|
+
discord: "https://discord.gg/pzW6wMfsJT",
|
|
11
|
+
twitter: "https://x.com/solanatrackr",
|
|
12
|
+
github: "https://github.com/solanatracker",
|
|
13
|
+
},
|
|
14
|
+
tags: ["tool", "infrastructure"],
|
|
15
|
+
};
|
|
16
|
+
exports.services = [];
|