@jup-ag/platform-list 1.2.84 → 1.2.86
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/drift.js
CHANGED
|
@@ -3,4 +3,5 @@ export declare const platform: PlatformRaw;
|
|
|
3
3
|
export declare const stakingService: ServiceRaw;
|
|
4
4
|
export declare const mainService: ServiceRaw;
|
|
5
5
|
export declare const missionsService: ServiceRaw;
|
|
6
|
+
export declare const tmiService: ServiceRaw;
|
|
6
7
|
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.missionsService = exports.mainService = exports.stakingService = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.tmiService = exports.missionsService = exports.mainService = exports.stakingService = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "famousfoxfederation",
|
|
@@ -51,8 +51,15 @@ exports.missionsService = {
|
|
|
51
51
|
link: "https://famousfoxes.com/missions",
|
|
52
52
|
description: "Gamified staking feature where Foxes embark on themed adventures to earn Treasury Chests and FAME tokens for cosmetic upgrades.",
|
|
53
53
|
};
|
|
54
|
+
exports.tmiService = {
|
|
55
|
+
id: `${exports.platform.id}-tmi`,
|
|
56
|
+
name: "TMI",
|
|
57
|
+
platformId: exports.platform.id,
|
|
58
|
+
contractsRaw: [],
|
|
59
|
+
};
|
|
54
60
|
exports.services = [
|
|
55
61
|
exports.stakingService,
|
|
56
62
|
exports.mainService,
|
|
57
63
|
exports.missionsService,
|
|
64
|
+
exports.tmiService,
|
|
58
65
|
];
|
package/dist/platforms/pyth.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export declare const expressRelayContract: {
|
|
|
6
6
|
networkId: "solana";
|
|
7
7
|
};
|
|
8
8
|
export declare const stakingService: ServiceRaw;
|
|
9
|
+
export declare const integrityPoolService: ServiceRaw;
|
|
9
10
|
export declare const governanceService: ServiceRaw;
|
|
10
11
|
export declare const expressRelayService: ServiceRaw;
|
|
11
12
|
export declare const airdropService: ServiceRaw;
|
package/dist/platforms/pyth.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.airdropService = exports.expressRelayService = exports.governanceService = exports.stakingService = exports.expressRelayContract = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.airdropService = exports.expressRelayService = exports.governanceService = exports.integrityPoolService = exports.stakingService = exports.expressRelayContract = exports.platform = void 0;
|
|
4
4
|
const types_1 = require("../types");
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "pyth",
|
|
@@ -22,6 +22,11 @@ const contract = {
|
|
|
22
22
|
address: "pytS9TjG1qyAZypk7n8rw8gfW9sUaqqYyMhJQ4E7JCQ",
|
|
23
23
|
networkId: types_1.NetworkId.solana,
|
|
24
24
|
};
|
|
25
|
+
const integrityPoolContract = {
|
|
26
|
+
name: "Staking",
|
|
27
|
+
address: "pyti8TM4zRVBjmarcgAPmTNNAXYKJv7WVHrkrm6woLN",
|
|
28
|
+
networkId: types_1.NetworkId.solana,
|
|
29
|
+
};
|
|
25
30
|
const airdropContract = {
|
|
26
31
|
name: "Airdrop",
|
|
27
32
|
address: "EXxqB6XPLczReFcZyigfbdowB6WGYtnkLYC4XZ2ae9ch",
|
|
@@ -45,6 +50,12 @@ exports.stakingService = {
|
|
|
45
50
|
link: "https://staking.pyth.network/",
|
|
46
51
|
description: "PYTH token staking enabling holders to participate in data validation, earn rewards, and contribute to oracle network security.",
|
|
47
52
|
};
|
|
53
|
+
exports.integrityPoolService = {
|
|
54
|
+
id: `${exports.platform.id}-integrity-pool`,
|
|
55
|
+
name: "Integrity Pool",
|
|
56
|
+
platformId: exports.platform.id,
|
|
57
|
+
contractsRaw: [integrityPoolContract],
|
|
58
|
+
};
|
|
48
59
|
exports.governanceService = {
|
|
49
60
|
id: `${exports.platform.id}-governance`,
|
|
50
61
|
name: "Governance",
|
|
@@ -67,6 +78,7 @@ exports.airdropService = {
|
|
|
67
78
|
};
|
|
68
79
|
exports.services = [
|
|
69
80
|
exports.stakingService,
|
|
81
|
+
exports.integrityPoolService,
|
|
70
82
|
exports.governanceService,
|
|
71
83
|
exports.expressRelayService,
|
|
72
84
|
exports.airdropService,
|