@jup-ag/platform-list 1.2.86 → 1.2.87
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 +9 -0
- package/dist/platforms/jupiter-offerbook.d.ts +9 -0
- package/dist/platforms/jupiter-offerbook.js +27 -0
- package/dist/platforms/jupnet.d.ts +4 -0
- package/dist/platforms/jupnet.js +27 -0
- package/dist/platforms/mysticdao.d.ts +4 -0
- package/dist/platforms/mysticdao.js +26 -0
- package/dist/platforms/symmetry.d.ts +2 -1
- package/dist/platforms/symmetry.js +19 -8
- package/package.json +1 -1
package/dist/platforms/index.js
CHANGED
|
@@ -214,8 +214,10 @@ const jupiterGovernance = __importStar(require("./jupiter-governance"));
|
|
|
214
214
|
const jupiterJupuary = __importStar(require("./jupiter-jupuary"));
|
|
215
215
|
const jupiterLaunchpad = __importStar(require("./jupiter-launchpad"));
|
|
216
216
|
const jupiterMobile = __importStar(require("./jupiter-mobile"));
|
|
217
|
+
const jupiterOfferbook = __importStar(require("./jupiter-offerbook"));
|
|
217
218
|
const jupiterPm = __importStar(require("./jupiter-pm"));
|
|
218
219
|
const jupiterWallet = __importStar(require("./jupiter-wallet"));
|
|
220
|
+
const jupnet = __importStar(require("./jupnet"));
|
|
219
221
|
const kamino = __importStar(require("./kamino"));
|
|
220
222
|
const kast = __importStar(require("./kast"));
|
|
221
223
|
const katana = __importStar(require("./katana"));
|
|
@@ -260,6 +262,7 @@ const mooncake = __importStar(require("./mooncake"));
|
|
|
260
262
|
const moonpay = __importStar(require("./moonpay"));
|
|
261
263
|
const moonwalk = __importStar(require("./moonwalk"));
|
|
262
264
|
const moose = __importStar(require("./moose"));
|
|
265
|
+
const mysticdao = __importStar(require("./mysticdao"));
|
|
263
266
|
const nativeStake = __importStar(require("./native-stake"));
|
|
264
267
|
const neutral = __importStar(require("./neutral"));
|
|
265
268
|
const nirvana = __importStar(require("./nirvana"));
|
|
@@ -614,8 +617,10 @@ exports.platforms = [
|
|
|
614
617
|
jupiterJupuary.platform,
|
|
615
618
|
jupiterLaunchpad.platform,
|
|
616
619
|
jupiterMobile.platform,
|
|
620
|
+
jupiterOfferbook.platform,
|
|
617
621
|
jupiterPm.platform,
|
|
618
622
|
jupiterWallet.platform,
|
|
623
|
+
jupnet.platform,
|
|
619
624
|
kamino.platform,
|
|
620
625
|
kast.platform,
|
|
621
626
|
katana.platform,
|
|
@@ -660,6 +665,7 @@ exports.platforms = [
|
|
|
660
665
|
moonpay.platform,
|
|
661
666
|
moonwalk.platform,
|
|
662
667
|
moose.platform,
|
|
668
|
+
mysticdao.platform,
|
|
663
669
|
nativeStake.platform,
|
|
664
670
|
neutral.platform,
|
|
665
671
|
nirvana.platform,
|
|
@@ -1015,8 +1021,10 @@ exports.services = [
|
|
|
1015
1021
|
...jupiterJupuary.services,
|
|
1016
1022
|
...jupiterLaunchpad.services,
|
|
1017
1023
|
...jupiterMobile.services,
|
|
1024
|
+
...jupiterOfferbook.services,
|
|
1018
1025
|
...jupiterPm.services,
|
|
1019
1026
|
...jupiterWallet.services,
|
|
1027
|
+
...jupnet.services,
|
|
1020
1028
|
...kamino.services,
|
|
1021
1029
|
...kast.services,
|
|
1022
1030
|
...katana.services,
|
|
@@ -1061,6 +1069,7 @@ exports.services = [
|
|
|
1061
1069
|
...moonpay.services,
|
|
1062
1070
|
...moonwalk.services,
|
|
1063
1071
|
...moose.services,
|
|
1072
|
+
...mysticdao.services,
|
|
1064
1073
|
...nativeStake.services,
|
|
1065
1074
|
...neutral.services,
|
|
1066
1075
|
...nirvana.services,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PlatformRaw, ServiceRaw } from "../types";
|
|
2
|
+
export declare const platform: PlatformRaw;
|
|
3
|
+
export declare const contract: {
|
|
4
|
+
name: string;
|
|
5
|
+
address: string;
|
|
6
|
+
networkId: "solana";
|
|
7
|
+
};
|
|
8
|
+
export declare const service: ServiceRaw;
|
|
9
|
+
export declare const services: ServiceRaw[];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.service = exports.contract = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
const jupiter_exchange_1 = require("./jupiter-exchange");
|
|
6
|
+
exports.platform = {
|
|
7
|
+
id: "jupiter-offerbook",
|
|
8
|
+
name: "Jupiter Offerbook",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://offerbook.jup.ag/",
|
|
11
|
+
twitter: "https://x.com/jup_offerbook",
|
|
12
|
+
},
|
|
13
|
+
tags: ["defi", "dapp"],
|
|
14
|
+
parentId: jupiter_exchange_1.platform.id,
|
|
15
|
+
};
|
|
16
|
+
exports.contract = {
|
|
17
|
+
name: "Loans",
|
|
18
|
+
address: "Loanq3nXSZtyb2QC2Xv9PBb7mwb99vSQUJ22cEwi3qH",
|
|
19
|
+
networkId: types_1.NetworkId.solana,
|
|
20
|
+
};
|
|
21
|
+
exports.service = {
|
|
22
|
+
id: `jupiter-offerbook-main`,
|
|
23
|
+
name: "Offerbook",
|
|
24
|
+
platformId: exports.platform.id,
|
|
25
|
+
contractsRaw: [exports.contract],
|
|
26
|
+
};
|
|
27
|
+
exports.services = [exports.service];
|
|
@@ -0,0 +1,27 @@
|
|
|
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
|
+
const jupiter_exchange_1 = require("./jupiter-exchange");
|
|
6
|
+
exports.platform = {
|
|
7
|
+
id: "jupnet",
|
|
8
|
+
name: "Jupnet",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://x.com/Jupnet",
|
|
11
|
+
twitter: "https://x.com/Jupnet",
|
|
12
|
+
},
|
|
13
|
+
tags: ["dex"],
|
|
14
|
+
parentId: jupiter_exchange_1.platform.id,
|
|
15
|
+
};
|
|
16
|
+
const contract = {
|
|
17
|
+
name: "Bank",
|
|
18
|
+
address: "bk1PDAkbHEBGtVRiM94Lzets8gVFP7FgySyfkAc8MPN",
|
|
19
|
+
networkId: types_1.NetworkId.solana,
|
|
20
|
+
};
|
|
21
|
+
exports.service = {
|
|
22
|
+
id: `${exports.platform.id}-global-deposits`,
|
|
23
|
+
name: "Global Deposit",
|
|
24
|
+
platformId: exports.platform.id,
|
|
25
|
+
contractsRaw: [contract],
|
|
26
|
+
};
|
|
27
|
+
exports.services = [exports.service];
|
|
@@ -0,0 +1,26 @@
|
|
|
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: "mysticdao",
|
|
7
|
+
name: "Mystic DAO",
|
|
8
|
+
description: "Mystic DAO is a gamified DeFi ecosystem on Solana.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://mysticdao.io/",
|
|
11
|
+
twitter: "https://x.com/MysticDAO",
|
|
12
|
+
},
|
|
13
|
+
tags: ["gaming"],
|
|
14
|
+
};
|
|
15
|
+
const contract = {
|
|
16
|
+
name: "Main",
|
|
17
|
+
address: "MYstiCRQrXvJAp3DGUdguaZjn7Zq1kwUYRe2sRK2RFY",
|
|
18
|
+
networkId: types_1.NetworkId.solana,
|
|
19
|
+
};
|
|
20
|
+
exports.service = {
|
|
21
|
+
id: `${exports.platform.id}-main`,
|
|
22
|
+
name: "Main",
|
|
23
|
+
platformId: exports.platform.id,
|
|
24
|
+
contractsRaw: [contract],
|
|
25
|
+
};
|
|
26
|
+
exports.services = [exports.service];
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PlatformRaw, ServiceRaw } from "../types";
|
|
2
2
|
export declare const platform: PlatformRaw;
|
|
3
|
-
export declare const
|
|
3
|
+
export declare const v2Service: ServiceRaw;
|
|
4
|
+
export declare const v3Service: 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.
|
|
3
|
+
exports.services = exports.v3Service = exports.v2Service = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "symmetry",
|
|
@@ -16,17 +16,28 @@ exports.platform = {
|
|
|
16
16
|
medium: "https://symmetry-fi.medium.com/",
|
|
17
17
|
documentation: "https://docs.symmetry.fi/",
|
|
18
18
|
},
|
|
19
|
-
tags: ["dapp", "defi"],
|
|
19
|
+
tags: ["dapp", "defi", "vault"],
|
|
20
20
|
};
|
|
21
|
-
const
|
|
22
|
-
name: "Symmetry",
|
|
21
|
+
const v2Contract = {
|
|
22
|
+
name: "Symmetry V2",
|
|
23
23
|
address: "2KehYt3KsEQR53jYcxjbQp2d2kCp4AkuQW68atufRwSr",
|
|
24
24
|
networkId: types_1.NetworkId.solana,
|
|
25
25
|
};
|
|
26
|
-
|
|
26
|
+
const v3Contract = {
|
|
27
|
+
name: "Symmetry V3",
|
|
28
|
+
address: "BASKT7aKd8n7ibpUbwLP3Wiyxyi3yoiXsxBk4Hpumate",
|
|
29
|
+
networkId: types_1.NetworkId.solana,
|
|
30
|
+
};
|
|
31
|
+
exports.v2Service = {
|
|
27
32
|
id: "symmetry-main",
|
|
28
|
-
name: "
|
|
33
|
+
name: "V2",
|
|
34
|
+
platformId: exports.platform.id,
|
|
35
|
+
contractsRaw: [v2Contract],
|
|
36
|
+
};
|
|
37
|
+
exports.v3Service = {
|
|
38
|
+
id: "symmetry-v3",
|
|
39
|
+
name: "V3",
|
|
29
40
|
platformId: exports.platform.id,
|
|
30
|
-
contractsRaw: [
|
|
41
|
+
contractsRaw: [v3Contract],
|
|
31
42
|
};
|
|
32
|
-
exports.services = [exports.
|
|
43
|
+
exports.services = [exports.v2Service, exports.v3Service];
|