@jup-ag/platform-list 1.2.54 → 1.2.56
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/index.js
CHANGED
|
@@ -308,6 +308,7 @@ const titan = __importStar(require("./titan"));
|
|
|
308
308
|
const trepa = __importStar(require("./trepa"));
|
|
309
309
|
const triad = __importStar(require("./triad"));
|
|
310
310
|
const tribeca = __importStar(require("./tribeca"));
|
|
311
|
+
const trojan = __importStar(require("./trojan"));
|
|
311
312
|
const trustfun = __importStar(require("./trustfun"));
|
|
312
313
|
const tuktuk = __importStar(require("./tuktuk"));
|
|
313
314
|
const tulip = __importStar(require("./tulip"));
|
|
@@ -604,6 +605,7 @@ exports.platforms = [
|
|
|
604
605
|
trepa.platform,
|
|
605
606
|
triad.platform,
|
|
606
607
|
tribeca.platform,
|
|
608
|
+
trojan.platform,
|
|
607
609
|
trustfun.platform,
|
|
608
610
|
tuktuk.platform,
|
|
609
611
|
tulip.platform,
|
|
@@ -901,6 +903,7 @@ exports.services = [
|
|
|
901
903
|
...trepa.services,
|
|
902
904
|
...triad.services,
|
|
903
905
|
...tribeca.services,
|
|
906
|
+
...trojan.services,
|
|
904
907
|
...trustfun.services,
|
|
905
908
|
...tuktuk.services,
|
|
906
909
|
...tulip.services,
|
|
@@ -0,0 +1,30 @@
|
|
|
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: "trojan",
|
|
7
|
+
name: "Trojan",
|
|
8
|
+
description: "Trojan's Terminal is a high-performance, intuitive crypto trading platform.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://trojan.com/",
|
|
11
|
+
documentation: "https://docs.trojan.com/",
|
|
12
|
+
twitter: "https://x.com/TrojanOnSolana",
|
|
13
|
+
discord: "https://discord.gg/trojan",
|
|
14
|
+
telegram: "https://t.me/trojan",
|
|
15
|
+
},
|
|
16
|
+
tags: ["dapp", "dex"],
|
|
17
|
+
addedAt: 1768316327000,
|
|
18
|
+
};
|
|
19
|
+
const contract = {
|
|
20
|
+
name: "Trade",
|
|
21
|
+
address: "troyXT7Ty3s2rjJe4bqWaroUrS4Fjd8rbHHNHxcACF4",
|
|
22
|
+
networkId: types_1.NetworkId.solana,
|
|
23
|
+
};
|
|
24
|
+
exports.service = {
|
|
25
|
+
id: `${exports.platform.id}-trade`,
|
|
26
|
+
name: "Trade",
|
|
27
|
+
platformId: exports.platform.id,
|
|
28
|
+
contractsRaw: [contract],
|
|
29
|
+
};
|
|
30
|
+
exports.services = [exports.service];
|