@jup-ag/platform-list 1.2.56 → 1.2.57

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.
@@ -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: "collectorcrypt",
6
+ name: "Collector Crypt",
7
+ description: "RWA Pokemon cards on Solana",
8
+ links: {
9
+ website: "https://collectorcrypt.com/",
10
+ twitter: "https://twitter.com/Collector_Crypt",
11
+ discord: "https://discord.gg/dzYKMkQQKk",
12
+ telegram: "https://t.me/CollectorChat",
13
+ },
14
+ tags: ["rwa", "nft-marketplace"],
15
+ platformToken: "CARDSccUMFKoPRZxt5vt3ksUbxEFEcnZ3H2pd3dKxYjp",
16
+ };
17
+ exports.services = [];
@@ -0,0 +1,4 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const stakingService: ServiceRaw;
4
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.stakingService = exports.platform = void 0;
4
+ const types_1 = require("../types");
5
+ exports.platform = {
6
+ id: "epicentral",
7
+ name: "Epicentral Labs",
8
+ description: "Epicentral Labs is building the essential infrastructure to make options trading a reality on the Solana Blockchain by bringing new decentralized finance derivatives to Solana through the Epicentral DAO.",
9
+ links: {
10
+ website: "https://www.epicentrallabs.com/",
11
+ discord: "https://discord.gg/5asAuY2sR8",
12
+ twitter: "https://x.com/EpicentralLabs",
13
+ github: "https://github.com/EpicentralLabs",
14
+ documentation: "https://docs.opx.markets/docs",
15
+ },
16
+ tags: ["dapp"],
17
+ platformToken: "LABSh5DTebUcUbEoLzXKCiXFJLecDFiDWiBGUU1GpxR",
18
+ tokens: ["7B2tQy8DwYt6aXHzt6UVDuqBB6WmykyZQodLSReQ9Wcz"],
19
+ };
20
+ const stakingContract = {
21
+ name: "Staking",
22
+ address: "EpicbGrj6qRkeYoy35ZTxHHtkvTtUC9Fz7KRuH7c5hrS",
23
+ networkId: types_1.NetworkId.solana,
24
+ };
25
+ exports.stakingService = {
26
+ id: `${exports.platform.id}-staking`,
27
+ name: "Staking",
28
+ platformId: exports.platform.id,
29
+ contractsRaw: [stakingContract],
30
+ link: "https://stake.opx.markets/",
31
+ };
32
+ exports.services = [exports.stakingService];
@@ -87,6 +87,7 @@ const claimyoursols = __importStar(require("./claimyoursols"));
87
87
  const claynosaurz = __importStar(require("./claynosaurz"));
88
88
  const clone = __importStar(require("./clone"));
89
89
  const coinmarketcap = __importStar(require("./coinmarketcap"));
90
+ const collectorcrypt = __importStar(require("./collectorcrypt"));
90
91
  const cropper = __importStar(require("./cropper"));
91
92
  const cudis = __importStar(require("./cudis"));
92
93
  const cushion = __importStar(require("./cushion"));
@@ -107,6 +108,7 @@ const drip = __importStar(require("./drip"));
107
108
  const dumpy = __importStar(require("./dumpy"));
108
109
  const elemental = __importStar(require("./elemental"));
109
110
  const ensofi = __importStar(require("./ensofi"));
111
+ const epicentral = __importStar(require("./epicentral"));
110
112
  const exoticmarkets = __importStar(require("./exoticmarkets"));
111
113
  const exponent = __importStar(require("./exponent"));
112
114
  const famousfoxfederation = __importStar(require("./famousfoxfederation"));
@@ -234,6 +236,7 @@ const phantom = __importStar(require("./phantom"));
234
236
  const phoenix = __importStar(require("./phoenix"));
235
237
  const photofinish = __importStar(require("./photofinish"));
236
238
  const photon = __importStar(require("./photon"));
239
+ const phygitals = __importStar(require("./phygitals"));
237
240
  const picasso = __importStar(require("./picasso"));
238
241
  const piggybank = __importStar(require("./piggybank"));
239
242
  const playsolana = __importStar(require("./playsolana"));
@@ -292,7 +295,6 @@ const spdr = __importStar(require("./spdr"));
292
295
  const spice = __importStar(require("./spice"));
293
296
  const squads = __importStar(require("./squads"));
294
297
  const stabble = __importStar(require("./stabble"));
295
- const stakewise = __importStar(require("./stakewise"));
296
298
  const stakewiz = __importStar(require("./stakewiz"));
297
299
  const staratlas = __importStar(require("./staratlas"));
298
300
  const stepfinance = __importStar(require("./stepfinance"));
@@ -384,6 +386,7 @@ exports.platforms = [
384
386
  claynosaurz.platform,
385
387
  clone.platform,
386
388
  coinmarketcap.platform,
389
+ collectorcrypt.platform,
387
390
  cropper.platform,
388
391
  cudis.platform,
389
392
  cushion.platform,
@@ -404,6 +407,7 @@ exports.platforms = [
404
407
  dumpy.platform,
405
408
  elemental.platform,
406
409
  ensofi.platform,
410
+ epicentral.platform,
407
411
  exoticmarkets.platform,
408
412
  exponent.platform,
409
413
  famousfoxfederation.platform,
@@ -531,6 +535,7 @@ exports.platforms = [
531
535
  phoenix.platform,
532
536
  photofinish.platform,
533
537
  photon.platform,
538
+ phygitals.platform,
534
539
  picasso.platform,
535
540
  piggybank.platform,
536
541
  playsolana.platform,
@@ -589,7 +594,6 @@ exports.platforms = [
589
594
  spice.platform,
590
595
  squads.platform,
591
596
  stabble.platform,
592
- stakewise.platform,
593
597
  stakewiz.platform,
594
598
  staratlas.platform,
595
599
  stepfinance.platform,
@@ -682,6 +686,7 @@ exports.services = [
682
686
  ...claynosaurz.services,
683
687
  ...clone.services,
684
688
  ...coinmarketcap.services,
689
+ ...collectorcrypt.services,
685
690
  ...cropper.services,
686
691
  ...cudis.services,
687
692
  ...cushion.services,
@@ -702,6 +707,7 @@ exports.services = [
702
707
  ...dumpy.services,
703
708
  ...elemental.services,
704
709
  ...ensofi.services,
710
+ ...epicentral.services,
705
711
  ...exoticmarkets.services,
706
712
  ...exponent.services,
707
713
  ...famousfoxfederation.services,
@@ -829,6 +835,7 @@ exports.services = [
829
835
  ...phoenix.services,
830
836
  ...photofinish.services,
831
837
  ...photon.services,
838
+ ...phygitals.services,
832
839
  ...picasso.services,
833
840
  ...piggybank.services,
834
841
  ...playsolana.services,
@@ -887,7 +894,6 @@ exports.services = [
887
894
  ...spice.services,
888
895
  ...squads.services,
889
896
  ...stabble.services,
890
- ...stakewise.services,
891
897
  ...stakewiz.services,
892
898
  ...staratlas.services,
893
899
  ...stepfinance.services,
@@ -1,3 +1,4 @@
1
1
  import { PlatformRaw, ServiceRaw } from "../types";
2
2
  export declare const platform: PlatformRaw;
3
+ export declare const transferService: ServiceRaw;
3
4
  export declare const services: ServiceRaw[];
@@ -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.transferService = exports.platform = void 0;
4
+ const types_1 = require("../types");
4
5
  exports.platform = {
5
6
  id: "phantom",
6
7
  name: "Phantom",
@@ -13,4 +14,15 @@ exports.platform = {
13
14
  },
14
15
  tags: ["wallet"],
15
16
  };
16
- exports.services = [];
17
+ const contract = {
18
+ name: "Transfer",
19
+ address: "DeJBGdMFa1uynnnKiwrVioatTuHmNLpyFKnmB5kaFdzQ",
20
+ networkId: types_1.NetworkId.solana,
21
+ };
22
+ exports.transferService = {
23
+ id: `${exports.platform.id}-transfer`,
24
+ name: "Transfer",
25
+ platformId: exports.platform.id,
26
+ contractsRaw: [contract],
27
+ };
28
+ exports.services = [exports.transferService];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -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: "phygitals",
6
+ name: "Phygitals",
7
+ description: "RWA cards on Solana",
8
+ links: {
9
+ website: "https://www.phygitals.com/",
10
+ twitter: "https://x.com/phygitals",
11
+ discord: "https://discord.gg/phygitals",
12
+ telegram: "https://t.me/phygitals_bot",
13
+ documentation: "https://docs.phygitals.com/",
14
+ },
15
+ tags: ["rwa", "nft-marketplace"],
16
+ };
17
+ exports.services = [];
@@ -1,5 +1,6 @@
1
1
  import { PlatformRaw, ServiceRaw } from "../types";
2
2
  export declare const platform: PlatformRaw;
3
3
  export declare const service: ServiceRaw;
4
+ export declare const limitOrderService: ServiceRaw;
4
5
  export declare const forgeService: ServiceRaw;
5
6
  export declare const services: ServiceRaw[];
@@ -1,13 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.services = exports.forgeService = exports.service = exports.platform = void 0;
3
+ exports.services = exports.forgeService = exports.limitOrderService = exports.service = exports.platform = void 0;
4
4
  const types_1 = require("../types");
5
5
  exports.platform = {
6
6
  id: "titan",
7
7
  name: "Titan",
8
8
  description: "Titan is a decentralized exchange and liquidity aggregator.",
9
9
  links: {
10
- website: "https://titandex.io/",
10
+ website: "https://titan.exchange/",
11
11
  twitter: "https://x.com/Titan_Exchange",
12
12
  discord: "https://discord.gg/titanexchange",
13
13
  telegram: "https://t.me/TitanDexSol",
@@ -20,16 +20,31 @@ const contract = {
20
20
  address: "T1TANpTeScyeqVzzgNViGDNrkQ6qHz9KrSBS4aNXvGT",
21
21
  networkId: types_1.NetworkId.solana,
22
22
  };
23
+ const limitOrderContract = {
24
+ name: "Limit Order",
25
+ address: "TitanLozLMhczcwrioEguG2aAmiATAPXdYpBg3DbeKK",
26
+ networkId: types_1.NetworkId.solana,
27
+ };
23
28
  exports.service = {
24
29
  id: `${exports.platform.id}-swap`,
25
30
  name: "Swap",
26
31
  platformId: exports.platform.id,
27
32
  contractsRaw: [contract],
28
33
  };
34
+ exports.limitOrderService = {
35
+ id: `${exports.platform.id}-limit-order`,
36
+ name: "Limit Order",
37
+ platformId: exports.platform.id,
38
+ contractsRaw: [limitOrderContract],
39
+ };
29
40
  exports.forgeService = {
30
41
  id: `${exports.platform.id}-forge`,
31
42
  name: "Forge",
32
43
  platformId: exports.platform.id,
33
44
  contractsRaw: [],
34
45
  };
35
- exports.services = [exports.service, exports.forgeService];
46
+ exports.services = [
47
+ exports.service,
48
+ exports.forgeService,
49
+ exports.limitOrderService,
50
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jup-ag/platform-list",
3
- "version": "1.2.56",
3
+ "version": "1.2.57",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,18 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.services = exports.platform = void 0;
4
- exports.platform = {
5
- id: "stakewise",
6
- name: "StakeWise Staked ETH",
7
- description: "StakeWise is a liquid staking protocol for Ethereum that issues osETH, a liquid staking token with built-in slashing protection and diversified node operators.",
8
- defiLlamaId: "stakewise",
9
- links: {
10
- website: "https://stakewise.io/",
11
- discord: "https://discord.gg/stakewise",
12
- twitter: "https://x.com/stakewise_io",
13
- github: "https://github.com/stakewise",
14
- documentation: "https://docs.stakewise.io/",
15
- },
16
- tags: ["tool", "lst", "dapp"],
17
- };
18
- exports.services = [];