@jup-ag/platform-list 1.2.52 → 1.2.53

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.
@@ -191,6 +191,7 @@ const maestro = __importStar(require("./maestro"));
191
191
  const magiceden = __importStar(require("./magiceden"));
192
192
  const magna = __importStar(require("./magna"));
193
193
  const mango = __importStar(require("./mango"));
194
+ const manifest = __importStar(require("./manifest"));
194
195
  const maple = __importStar(require("./maple"));
195
196
  const marginfi = __importStar(require("./marginfi"));
196
197
  const marinade = __importStar(require("./marinade"));
@@ -484,6 +485,7 @@ exports.platforms = [
484
485
  magiceden.platform,
485
486
  magna.platform,
486
487
  mango.platform,
488
+ manifest.platform,
487
489
  maple.platform,
488
490
  marginfi.platform,
489
491
  marinade.platform,
@@ -778,6 +780,7 @@ exports.services = [
778
780
  ...magiceden.services,
779
781
  ...magna.services,
780
782
  ...mango.services,
783
+ ...manifest.services,
781
784
  ...maple.services,
782
785
  ...marginfi.services,
783
786
  ...marinade.services,
@@ -0,0 +1,5 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const orderBookService: ServiceRaw;
4
+ export declare const vaultService: ServiceRaw;
5
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.vaultService = exports.orderBookService = exports.platform = void 0;
4
+ const types_1 = require("../types");
5
+ exports.platform = {
6
+ id: "manifest",
7
+ name: "Manifest",
8
+ description: "Manifest is the 3rd-generation on-chain orderbook built on Solana.",
9
+ tags: ["dex"],
10
+ links: {
11
+ website: "https://manifest.trade/",
12
+ telegram: "https://t.me/manifest_trade",
13
+ twitter: "https://x.com/ManifestTrade",
14
+ documentation: "https://manifest.trade/whitepaper.pdf",
15
+ },
16
+ };
17
+ const orderBookContract = {
18
+ name: "Order Book",
19
+ address: "wMNFSTkir3HgyZTsB7uqu3i7FA73grFCptPXgrZjksL",
20
+ networkId: types_1.NetworkId.solana,
21
+ };
22
+ const vaultContract = {
23
+ name: "Vault",
24
+ address: "MNFSTqtC93rEfYHB6hF82sKdZpUDFWkViLByLd1k1Ms",
25
+ networkId: types_1.NetworkId.solana,
26
+ };
27
+ exports.orderBookService = {
28
+ id: `${exports.platform.id}-order-book`,
29
+ name: "Order Book",
30
+ platformId: exports.platform.id,
31
+ contractsRaw: [orderBookContract],
32
+ };
33
+ exports.vaultService = {
34
+ id: `${exports.platform.id}-vault`,
35
+ name: "Vault",
36
+ platformId: exports.platform.id,
37
+ contractsRaw: [vaultContract],
38
+ };
39
+ exports.services = [exports.orderBookService, exports.vaultService];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jup-ag/platform-list",
3
- "version": "1.2.52",
3
+ "version": "1.2.53",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",