@jup-ag/platform-list 1.2.92 → 1.2.98

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/README.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  A comprehensive registry of platforms in the Solana ecosystem. This package provides structured platform data including metadata, links, token(s) information, smart contracts and services.
4
4
 
5
+ ## JSON endpoints
6
+
7
+ The latest generated JSON files are available via GitHub Releases:
8
+
9
+ - [`platforms.json`](https://github.com/jup-ag/platform-list/releases/latest/download/platforms.json)
10
+ - [`services.json`](https://github.com/jup-ag/platform-list/releases/latest/download/services.json)
11
+ - [`contracts.json`](https://github.com/jup-ag/platform-list/releases/latest/download/contracts.json)
12
+
5
13
  ## Installation
6
14
 
7
15
  ```bash
@@ -12,7 +12,7 @@ exports.platform = {
12
12
  github: "https://github.com/glamsystems/",
13
13
  documentation: "https://docs.glam.systems/",
14
14
  },
15
- tags: ["defi", "institutional", "vault", "rwa", "infrastructure"],
15
+ tags: ["defi", "vault", "rwa", "infrastructure"],
16
16
  addedAt: 1770984000000,
17
17
  };
18
18
  const protocolContract = {
@@ -15,6 +15,7 @@ exports.platform = {
15
15
  documentation: "https://iloop-1.gitbook.io/docs.iloop.finance",
16
16
  },
17
17
  tags: ["dapp", "vault", "defi", "ai", "lst"],
18
+ isDeprecated: true,
18
19
  };
19
20
  const contract = {
20
21
  name: "Lending",
@@ -337,6 +337,7 @@ const reflex = __importStar(require("./reflex"));
337
337
  const relay = __importStar(require("./relay"));
338
338
  const remora = __importStar(require("./remora"));
339
339
  const renzo = __importStar(require("./renzo"));
340
+ const rise = __importStar(require("./rise"));
340
341
  const robinhood = __importStar(require("./robinhood"));
341
342
  const runemine = __importStar(require("./runemine"));
342
343
  const saber = __importStar(require("./saber"));
@@ -362,6 +363,7 @@ const solanabeach = __importStar(require("./solanabeach"));
362
363
  const solanaid = __importStar(require("./solanaid"));
363
364
  const solanamobile = __importStar(require("./solanamobile"));
364
365
  const solanart = __importStar(require("./solanart"));
366
+ const solanatracker = __importStar(require("./solanatracker"));
365
367
  const solayer = __importStar(require("./solayer"));
366
368
  const solcard = __importStar(require("./solcard"));
367
369
  const solcasino = __importStar(require("./solcasino"));
@@ -743,6 +745,7 @@ exports.platforms = [
743
745
  relay.platform,
744
746
  remora.platform,
745
747
  renzo.platform,
748
+ rise.platform,
746
749
  robinhood.platform,
747
750
  runemine.platform,
748
751
  saber.platform,
@@ -768,6 +771,7 @@ exports.platforms = [
768
771
  solanaid.platform,
769
772
  solanamobile.platform,
770
773
  solanart.platform,
774
+ solanatracker.platform,
771
775
  solayer.platform,
772
776
  solcard.platform,
773
777
  solcasino.platform,
@@ -1150,6 +1154,7 @@ exports.services = [
1150
1154
  ...relay.services,
1151
1155
  ...remora.services,
1152
1156
  ...renzo.services,
1157
+ ...rise.services,
1153
1158
  ...robinhood.services,
1154
1159
  ...runemine.services,
1155
1160
  ...saber.services,
@@ -1175,6 +1180,7 @@ exports.services = [
1175
1180
  ...solanaid.services,
1176
1181
  ...solanamobile.services,
1177
1182
  ...solanart.services,
1183
+ ...solanatracker.services,
1178
1184
  ...solayer.services,
1179
1185
  ...solcard.services,
1180
1186
  ...solcasino.services,
@@ -1,4 +1,5 @@
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 feesService: 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.service = exports.platform = void 0;
3
+ exports.services = exports.feesService = exports.service = exports.platform = void 0;
4
4
  const types_1 = require("../types");
5
5
  exports.platform = {
6
6
  id: "pumpswap",
@@ -20,10 +20,21 @@ const contract = {
20
20
  address: "pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA",
21
21
  networkId: types_1.NetworkId.solana,
22
22
  };
23
+ const feesContract = {
24
+ name: "Pump Fees",
25
+ address: "pfeeUxB6jkeY1Hxd7CsFCAjcbHA9rWtchMGdZ6VojVZ",
26
+ networkId: types_1.NetworkId.solana,
27
+ };
23
28
  exports.service = {
24
29
  id: "pumpswap-amm",
25
30
  name: "PumpSwap AMM",
26
31
  platformId: exports.platform.id,
27
32
  contractsRaw: [contract],
28
33
  };
29
- exports.services = [exports.service];
34
+ exports.feesService = {
35
+ id: "pumpswap-fees",
36
+ name: "Pump Fees",
37
+ platformId: exports.platform.id,
38
+ contractsRaw: [feesContract],
39
+ };
40
+ exports.services = [exports.service, exports.feesService];
@@ -0,0 +1,4 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const service: ServiceRaw;
4
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,29 @@
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: "rise",
7
+ name: "Rise",
8
+ description: "RISE is a permissionless token launch platform",
9
+ tags: ["launchpad"],
10
+ links: {
11
+ website: "https://rise.rich/",
12
+ telegram: "https://t.me/rise_dot_rich",
13
+ twitter: "https://x.com/risedotrich",
14
+ github: "https://github.com/riserich",
15
+ documentation: "https://docs.rise.rich",
16
+ },
17
+ };
18
+ const contract = {
19
+ name: "Launchpad",
20
+ address: "RiseZSHaLdj7pfn1tisUoSdG2i3QcVz9sQKuaRG9rar",
21
+ networkId: types_1.NetworkId.solana,
22
+ };
23
+ exports.service = {
24
+ id: "rise-launchpad",
25
+ name: "Rise",
26
+ platformId: exports.platform.id,
27
+ contractsRaw: [contract],
28
+ };
29
+ exports.services = [exports.service];
@@ -14,6 +14,7 @@ exports.platform = {
14
14
  medium: "https://medium.com/@lifinity.io/introducing-sandglass-a-yield-trading-protocol-on-solana-9b5ee5b33aff",
15
15
  },
16
16
  tags: ["dapp", "defi"],
17
+ isDeprecated: true,
17
18
  };
18
19
  const mainContract = {
19
20
  name: "Markets",
@@ -13,6 +13,7 @@ exports.platform = {
13
13
  documentation: "https://docs.sendit.fun/",
14
14
  },
15
15
  tags: ["dapp", "memecoin", "defi", "trading"],
16
+ isDeprecated: true,
16
17
  };
17
18
  const earnContract = {
18
19
  name: "SOL Earn",
@@ -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,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 = [];
@@ -9,7 +9,7 @@ exports.platform = {
9
9
  website: "https://zenrocklabs.io/",
10
10
  twitter: "https://x.com/zenrock",
11
11
  },
12
- tags: ["institutional", "bridge"],
12
+ tags: ["bridge"],
13
13
  tokens: [
14
14
  "9hX59xHHnaZXLU6quvm5uGY2iDiT3jczaReHy6A6TYKw",
15
15
  "JDt9rRGaieF6aN1cJkXFeUmsy7ZE4yY3CZb8tVMXVroS",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jup-ag/platform-list",
3
- "version": "1.2.92",
3
+ "version": "1.2.98",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",