@jup-ag/platform-list 1.2.87 → 1.2.88
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
CHANGED
|
@@ -431,6 +431,7 @@ const xstocks = __importStar(require("./xstocks"));
|
|
|
431
431
|
const y00ts = __importStar(require("./y00ts"));
|
|
432
432
|
const yaku = __importStar(require("./yaku"));
|
|
433
433
|
const yieldfan = __importStar(require("./yieldfan"));
|
|
434
|
+
const yo = __importStar(require("./yo"));
|
|
434
435
|
const zelo = __importStar(require("./zelo"));
|
|
435
436
|
const zenrock = __importStar(require("./zenrock"));
|
|
436
437
|
const zepz = __importStar(require("./zepz"));
|
|
@@ -834,6 +835,7 @@ exports.platforms = [
|
|
|
834
835
|
y00ts.platform,
|
|
835
836
|
yaku.platform,
|
|
836
837
|
yieldfan.platform,
|
|
838
|
+
yo.platform,
|
|
837
839
|
zelo.platform,
|
|
838
840
|
zenrock.platform,
|
|
839
841
|
zepz.platform,
|
|
@@ -1238,6 +1240,7 @@ exports.services = [
|
|
|
1238
1240
|
...y00ts.services,
|
|
1239
1241
|
...yaku.services,
|
|
1240
1242
|
...yieldfan.services,
|
|
1243
|
+
...yo.services,
|
|
1241
1244
|
...zelo.services,
|
|
1242
1245
|
...zenrock.services,
|
|
1243
1246
|
...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,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];
|