@jup-ag/platform-list 1.2.87 → 1.2.89
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 +6 -0
- package/dist/platforms/perena.d.ts +1 -0
- package/dist/platforms/perena.js +13 -2
- package/dist/platforms/portal-bridge.d.ts +3 -0
- package/dist/platforms/portal-bridge.js +15 -0
- package/dist/platforms/wormhole.js +1 -1
- package/dist/platforms/yo.d.ts +4 -0
- package/dist/platforms/yo.js +27 -0
- package/package.json +1 -1
package/dist/platforms/index.js
CHANGED
|
@@ -309,6 +309,7 @@ const playsolana = __importStar(require("./playsolana"));
|
|
|
309
309
|
const pluto = __importStar(require("./pluto"));
|
|
310
310
|
const poolparty = __importStar(require("./poolparty"));
|
|
311
311
|
const port = __importStar(require("./port"));
|
|
312
|
+
const portalBridge = __importStar(require("./portal-bridge"));
|
|
312
313
|
const portals = __importStar(require("./portals"));
|
|
313
314
|
const privacycash = __importStar(require("./privacycash"));
|
|
314
315
|
const privy = __importStar(require("./privy"));
|
|
@@ -431,6 +432,7 @@ const xstocks = __importStar(require("./xstocks"));
|
|
|
431
432
|
const y00ts = __importStar(require("./y00ts"));
|
|
432
433
|
const yaku = __importStar(require("./yaku"));
|
|
433
434
|
const yieldfan = __importStar(require("./yieldfan"));
|
|
435
|
+
const yo = __importStar(require("./yo"));
|
|
434
436
|
const zelo = __importStar(require("./zelo"));
|
|
435
437
|
const zenrock = __importStar(require("./zenrock"));
|
|
436
438
|
const zepz = __importStar(require("./zepz"));
|
|
@@ -712,6 +714,7 @@ exports.platforms = [
|
|
|
712
714
|
pluto.platform,
|
|
713
715
|
poolparty.platform,
|
|
714
716
|
port.platform,
|
|
717
|
+
portalBridge.platform,
|
|
715
718
|
portals.platform,
|
|
716
719
|
privacycash.platform,
|
|
717
720
|
privy.platform,
|
|
@@ -834,6 +837,7 @@ exports.platforms = [
|
|
|
834
837
|
y00ts.platform,
|
|
835
838
|
yaku.platform,
|
|
836
839
|
yieldfan.platform,
|
|
840
|
+
yo.platform,
|
|
837
841
|
zelo.platform,
|
|
838
842
|
zenrock.platform,
|
|
839
843
|
zepz.platform,
|
|
@@ -1116,6 +1120,7 @@ exports.services = [
|
|
|
1116
1120
|
...pluto.services,
|
|
1117
1121
|
...poolparty.services,
|
|
1118
1122
|
...port.services,
|
|
1123
|
+
...portalBridge.services,
|
|
1119
1124
|
...portals.services,
|
|
1120
1125
|
...privacycash.services,
|
|
1121
1126
|
...privy.services,
|
|
@@ -1238,6 +1243,7 @@ exports.services = [
|
|
|
1238
1243
|
...y00ts.services,
|
|
1239
1244
|
...yaku.services,
|
|
1240
1245
|
...yieldfan.services,
|
|
1246
|
+
...yo.services,
|
|
1241
1247
|
...zelo.services,
|
|
1242
1248
|
...zenrock.services,
|
|
1243
1249
|
...zepz.services,
|
package/dist/platforms/perena.js
CHANGED
|
@@ -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.starService = exports.service = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "perena",
|
|
@@ -22,10 +22,21 @@ const contract = {
|
|
|
22
22
|
address: "NUMERUNsFCP3kuNmWZuXtm1AaQCPj9uw6Guv2Ekoi5P",
|
|
23
23
|
networkId: types_1.NetworkId.solana,
|
|
24
24
|
};
|
|
25
|
+
const starContract = {
|
|
26
|
+
name: "Perena",
|
|
27
|
+
address: "save8RQVPMWNTzU18t3GBvBkN9hT7jsGjiCQ28FpD9H",
|
|
28
|
+
networkId: types_1.NetworkId.solana,
|
|
29
|
+
};
|
|
25
30
|
exports.service = {
|
|
26
31
|
id: "perena-numeraire",
|
|
27
32
|
name: "Numéraire",
|
|
28
33
|
platformId: exports.platform.id,
|
|
29
34
|
contractsRaw: [contract],
|
|
30
35
|
};
|
|
31
|
-
exports.
|
|
36
|
+
exports.starService = {
|
|
37
|
+
id: "perena-star",
|
|
38
|
+
name: "usdstar",
|
|
39
|
+
platformId: exports.platform.id,
|
|
40
|
+
contractsRaw: [starContract],
|
|
41
|
+
};
|
|
42
|
+
exports.services = [exports.service, exports.starService];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "portal-bridge",
|
|
6
|
+
name: "Portal Bridge",
|
|
7
|
+
description: "Portal Bridge is a cross-chain token transfer interface powered by Wormhole, supporting bridging of assets across 30+ blockchains.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://portalbridge.com/",
|
|
10
|
+
twitter: "https://x.com/portalbridge_",
|
|
11
|
+
},
|
|
12
|
+
tags: ["bridge", "dapp"],
|
|
13
|
+
parentId: "wormhole",
|
|
14
|
+
};
|
|
15
|
+
exports.services = [];
|
|
@@ -7,7 +7,7 @@ exports.platform = {
|
|
|
7
7
|
name: "Wormhole",
|
|
8
8
|
description: "Wormhole is a cross-chain messaging protocol enabling asset and data transfers between Solana and over 30 other blockchains.",
|
|
9
9
|
links: {
|
|
10
|
-
website: "https://
|
|
10
|
+
website: "https://wormhole.com/",
|
|
11
11
|
discord: "https://discord.com/invite/wormholecrypto",
|
|
12
12
|
telegram: "https://t.me/wormholecrypto",
|
|
13
13
|
twitter: "https://x.com/wormhole",
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.solVaultService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "yo",
|
|
7
|
+
name: "YO",
|
|
8
|
+
description: "YO is a DeFi protocol that helps you easily boost your crypto earnings without the hassle.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://app.yo.xyz/",
|
|
11
|
+
twitter: "https://x.com/yield",
|
|
12
|
+
documentation: "https://docs.yo.xyz/",
|
|
13
|
+
},
|
|
14
|
+
tags: ["dapp"],
|
|
15
|
+
};
|
|
16
|
+
const contract = {
|
|
17
|
+
name: "SOL Vault",
|
|
18
|
+
address: "yvSoLSBaLoqZ2yQttGbaYzHDXr9Bo9UdqtiRDiVaMxP",
|
|
19
|
+
networkId: types_1.NetworkId.solana,
|
|
20
|
+
};
|
|
21
|
+
exports.solVaultService = {
|
|
22
|
+
id: `${exports.platform.id}-sol-vault`,
|
|
23
|
+
name: "yoSOL Vault",
|
|
24
|
+
platformId: exports.platform.id,
|
|
25
|
+
contractsRaw: [contract],
|
|
26
|
+
};
|
|
27
|
+
exports.services = [exports.solVaultService];
|