@jup-ag/platform-list 1.2.26 → 1.2.27
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.
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.stakeService = exports.mintService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "hastra",
|
|
7
|
+
name: "Hastra",
|
|
8
|
+
tags: ["dapp"],
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://www.hastra.io/",
|
|
11
|
+
twitter: "https://x.com/HastraFi",
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
const mintContract = {
|
|
15
|
+
name: "Vault Mint",
|
|
16
|
+
address: "9WUyNREiPDMgwMh5Gt81Fd3JpiCKxpjZ5Dpq9Bo1RhMV",
|
|
17
|
+
networkId: types_1.NetworkId.solana,
|
|
18
|
+
};
|
|
19
|
+
const stakeContract = {
|
|
20
|
+
name: "Vault Stake",
|
|
21
|
+
address: "97V7JsExNC6yFWu5KjK1FLfVkNVvtMpAFL5QkLWKEGxY",
|
|
22
|
+
networkId: types_1.NetworkId.solana,
|
|
23
|
+
};
|
|
24
|
+
exports.mintService = {
|
|
25
|
+
id: `${exports.platform.id}-mint`,
|
|
26
|
+
name: "Mint",
|
|
27
|
+
platformId: exports.platform.id,
|
|
28
|
+
contractsRaw: [mintContract],
|
|
29
|
+
};
|
|
30
|
+
exports.stakeService = {
|
|
31
|
+
id: `${exports.platform.id}-stake`,
|
|
32
|
+
name: "Stake",
|
|
33
|
+
platformId: exports.platform.id,
|
|
34
|
+
contractsRaw: [stakeContract],
|
|
35
|
+
};
|
|
36
|
+
exports.services = [exports.mintService, exports.stakeService];
|
package/dist/platforms/index.js
CHANGED
|
@@ -120,6 +120,7 @@ const gpool = __importStar(require("./gpool"));
|
|
|
120
120
|
const graphite = __importStar(require("./graphite"));
|
|
121
121
|
const grass = __importStar(require("./grass"));
|
|
122
122
|
const guano = __importStar(require("./guano"));
|
|
123
|
+
const hastra = __importStar(require("./hastra"));
|
|
123
124
|
const haven = __importStar(require("./haven"));
|
|
124
125
|
const hawksight = __importStar(require("./hawksight"));
|
|
125
126
|
const hedgehog = __importStar(require("./hedgehog"));
|
|
@@ -364,6 +365,7 @@ exports.platforms = [
|
|
|
364
365
|
graphite.platform,
|
|
365
366
|
grass.platform,
|
|
366
367
|
guano.platform,
|
|
368
|
+
hastra.platform,
|
|
367
369
|
haven.platform,
|
|
368
370
|
hawksight.platform,
|
|
369
371
|
hedgehog.platform,
|
|
@@ -609,6 +611,7 @@ exports.services = [
|
|
|
609
611
|
...graphite.services,
|
|
610
612
|
...grass.services,
|
|
611
613
|
...guano.services,
|
|
614
|
+
...hastra.services,
|
|
612
615
|
...haven.services,
|
|
613
616
|
...hawksight.services,
|
|
614
617
|
...hedgehog.services,
|