@jup-ag/platform-list 1.2.93 → 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 +8 -0
- package/dist/platforms/glam.js +1 -1
- package/dist/platforms/iloop.js +1 -0
- package/dist/platforms/index.js +3 -0
- package/dist/platforms/pumpswap.d.ts +1 -0
- package/dist/platforms/pumpswap.js +13 -2
- package/dist/platforms/rise.d.ts +4 -0
- package/dist/platforms/rise.js +29 -0
- package/dist/platforms/sandglass.js +1 -0
- package/dist/platforms/sendit.js +1 -0
- package/dist/platforms/zenrock.js +1 -1
- package/package.json +1 -1
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
|
package/dist/platforms/glam.js
CHANGED
|
@@ -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", "
|
|
15
|
+
tags: ["defi", "vault", "rwa", "infrastructure"],
|
|
16
16
|
addedAt: 1770984000000,
|
|
17
17
|
};
|
|
18
18
|
const protocolContract = {
|
package/dist/platforms/iloop.js
CHANGED
package/dist/platforms/index.js
CHANGED
|
@@ -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"));
|
|
@@ -744,6 +745,7 @@ exports.platforms = [
|
|
|
744
745
|
relay.platform,
|
|
745
746
|
remora.platform,
|
|
746
747
|
renzo.platform,
|
|
748
|
+
rise.platform,
|
|
747
749
|
robinhood.platform,
|
|
748
750
|
runemine.platform,
|
|
749
751
|
saber.platform,
|
|
@@ -1152,6 +1154,7 @@ exports.services = [
|
|
|
1152
1154
|
...relay.services,
|
|
1153
1155
|
...remora.services,
|
|
1154
1156
|
...renzo.services,
|
|
1157
|
+
...rise.services,
|
|
1155
1158
|
...robinhood.services,
|
|
1156
1159
|
...runemine.services,
|
|
1157
1160
|
...saber.services,
|
|
@@ -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.
|
|
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,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];
|
package/dist/platforms/sendit.js
CHANGED
|
@@ -9,7 +9,7 @@ exports.platform = {
|
|
|
9
9
|
website: "https://zenrocklabs.io/",
|
|
10
10
|
twitter: "https://x.com/zenrock",
|
|
11
11
|
},
|
|
12
|
-
tags: ["
|
|
12
|
+
tags: ["bridge"],
|
|
13
13
|
tokens: [
|
|
14
14
|
"9hX59xHHnaZXLU6quvm5uGY2iDiT3jczaReHy6A6TYKw",
|
|
15
15
|
"JDt9rRGaieF6aN1cJkXFeUmsy7ZE4yY3CZb8tVMXVroS",
|