@jup-ag/platform-list 1.2.61 → 1.2.62
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/diversifi.d.ts +3 -0
- package/dist/platforms/diversifi.js +26 -0
- package/dist/platforms/index.js +12 -0
- package/dist/platforms/jupiter-jupuary.js +0 -1
- package/dist/platforms/jupiter-launchpad.js +0 -1
- package/dist/platforms/jupiter-mobile.d.ts +3 -0
- package/dist/platforms/jupiter-mobile.js +14 -0
- package/dist/platforms/jupiter-pm.js +0 -1
- package/dist/platforms/jupiter-wallet.js +0 -1
- package/dist/platforms/refihub.d.ts +3 -0
- package/dist/platforms/refihub.js +16 -0
- package/dist/platforms/solanamobile.d.ts +9 -0
- package/dist/platforms/solanamobile.js +30 -0
- package/package.json +1 -1
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "diversifi",
|
|
7
|
+
name: "DiversiFi",
|
|
8
|
+
description: "The Platform for Onchain Index Trading ",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://diversifi.trade/",
|
|
11
|
+
twitter: "https://x.com/useDiversiFi",
|
|
12
|
+
},
|
|
13
|
+
tags: ["trading", "defi"],
|
|
14
|
+
};
|
|
15
|
+
const contract = {
|
|
16
|
+
address: "3vyr9DRfMZb2KvUQdnps7YG3PY38XdguLBQaJ2DFkSxk",
|
|
17
|
+
name: "Main",
|
|
18
|
+
networkId: types_1.NetworkId.solana,
|
|
19
|
+
};
|
|
20
|
+
const service = {
|
|
21
|
+
id: `${exports.platform.id}-main`,
|
|
22
|
+
name: "Main",
|
|
23
|
+
platformId: exports.platform.id,
|
|
24
|
+
contractsRaw: [contract],
|
|
25
|
+
};
|
|
26
|
+
exports.services = [service];
|
package/dist/platforms/index.js
CHANGED
|
@@ -105,6 +105,7 @@ const degenapeacademy = __importStar(require("./degenapeacademy"));
|
|
|
105
105
|
const degencoinflip = __importStar(require("./degencoinflip"));
|
|
106
106
|
const degods = __importStar(require("./degods"));
|
|
107
107
|
const dflow = __importStar(require("./dflow"));
|
|
108
|
+
const diversifi = __importStar(require("./diversifi"));
|
|
108
109
|
const divvy = __importStar(require("./divvy"));
|
|
109
110
|
const domin8 = __importStar(require("./domin8"));
|
|
110
111
|
const doubleup = __importStar(require("./doubleup"));
|
|
@@ -172,6 +173,7 @@ const jupiterExchange = __importStar(require("./jupiter-exchange"));
|
|
|
172
173
|
const jupiterGovernance = __importStar(require("./jupiter-governance"));
|
|
173
174
|
const jupiterJupuary = __importStar(require("./jupiter-jupuary"));
|
|
174
175
|
const jupiterLaunchpad = __importStar(require("./jupiter-launchpad"));
|
|
176
|
+
const jupiterMobile = __importStar(require("./jupiter-mobile"));
|
|
175
177
|
const jupiterPm = __importStar(require("./jupiter-pm"));
|
|
176
178
|
const jupiterWallet = __importStar(require("./jupiter-wallet"));
|
|
177
179
|
const kamino = __importStar(require("./kamino"));
|
|
@@ -267,6 +269,7 @@ const ratex = __importStar(require("./ratex"));
|
|
|
267
269
|
const ratio = __importStar(require("./ratio"));
|
|
268
270
|
const raydium = __importStar(require("./raydium"));
|
|
269
271
|
const realms = __importStar(require("./realms"));
|
|
272
|
+
const refihub = __importStar(require("./refihub"));
|
|
270
273
|
const reflect = __importStar(require("./reflect"));
|
|
271
274
|
const relay = __importStar(require("./relay"));
|
|
272
275
|
const remora = __importStar(require("./remora"));
|
|
@@ -286,6 +289,7 @@ const sky = __importStar(require("./sky"));
|
|
|
286
289
|
const smb = __importStar(require("./smb"));
|
|
287
290
|
const solana = __importStar(require("./solana"));
|
|
288
291
|
const solanaid = __importStar(require("./solanaid"));
|
|
292
|
+
const solanamobile = __importStar(require("./solanamobile"));
|
|
289
293
|
const solanart = __importStar(require("./solanart"));
|
|
290
294
|
const solayer = __importStar(require("./solayer"));
|
|
291
295
|
const solcard = __importStar(require("./solcard"));
|
|
@@ -414,6 +418,7 @@ exports.platforms = [
|
|
|
414
418
|
degencoinflip.platform,
|
|
415
419
|
degods.platform,
|
|
416
420
|
dflow.platform,
|
|
421
|
+
diversifi.platform,
|
|
417
422
|
divvy.platform,
|
|
418
423
|
domin8.platform,
|
|
419
424
|
doubleup.platform,
|
|
@@ -481,6 +486,7 @@ exports.platforms = [
|
|
|
481
486
|
jupiterGovernance.platform,
|
|
482
487
|
jupiterJupuary.platform,
|
|
483
488
|
jupiterLaunchpad.platform,
|
|
489
|
+
jupiterMobile.platform,
|
|
484
490
|
jupiterPm.platform,
|
|
485
491
|
jupiterWallet.platform,
|
|
486
492
|
kamino.platform,
|
|
@@ -576,6 +582,7 @@ exports.platforms = [
|
|
|
576
582
|
ratio.platform,
|
|
577
583
|
raydium.platform,
|
|
578
584
|
realms.platform,
|
|
585
|
+
refihub.platform,
|
|
579
586
|
reflect.platform,
|
|
580
587
|
relay.platform,
|
|
581
588
|
remora.platform,
|
|
@@ -595,6 +602,7 @@ exports.platforms = [
|
|
|
595
602
|
smb.platform,
|
|
596
603
|
solana.platform,
|
|
597
604
|
solanaid.platform,
|
|
605
|
+
solanamobile.platform,
|
|
598
606
|
solanart.platform,
|
|
599
607
|
solayer.platform,
|
|
600
608
|
solcard.platform,
|
|
@@ -724,6 +732,7 @@ exports.services = [
|
|
|
724
732
|
...degencoinflip.services,
|
|
725
733
|
...degods.services,
|
|
726
734
|
...dflow.services,
|
|
735
|
+
...diversifi.services,
|
|
727
736
|
...divvy.services,
|
|
728
737
|
...domin8.services,
|
|
729
738
|
...doubleup.services,
|
|
@@ -791,6 +800,7 @@ exports.services = [
|
|
|
791
800
|
...jupiterGovernance.services,
|
|
792
801
|
...jupiterJupuary.services,
|
|
793
802
|
...jupiterLaunchpad.services,
|
|
803
|
+
...jupiterMobile.services,
|
|
794
804
|
...jupiterPm.services,
|
|
795
805
|
...jupiterWallet.services,
|
|
796
806
|
...kamino.services,
|
|
@@ -886,6 +896,7 @@ exports.services = [
|
|
|
886
896
|
...ratio.services,
|
|
887
897
|
...raydium.services,
|
|
888
898
|
...realms.services,
|
|
899
|
+
...refihub.services,
|
|
889
900
|
...reflect.services,
|
|
890
901
|
...relay.services,
|
|
891
902
|
...remora.services,
|
|
@@ -905,6 +916,7 @@ exports.services = [
|
|
|
905
916
|
...smb.services,
|
|
906
917
|
...solana.services,
|
|
907
918
|
...solanaid.services,
|
|
919
|
+
...solanamobile.services,
|
|
908
920
|
...solanart.services,
|
|
909
921
|
...solayer.services,
|
|
910
922
|
...solcard.services,
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "jupiter-mobile",
|
|
6
|
+
name: "Jupiter Mobile",
|
|
7
|
+
description: "The Most Powerful Mobile App in Crypto. Available on iOS & Android.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://jup.ag/mobile",
|
|
10
|
+
twitter: "https://x.com/jup_mobile",
|
|
11
|
+
},
|
|
12
|
+
tags: ["wallet"],
|
|
13
|
+
};
|
|
14
|
+
exports.services = [];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "refihub",
|
|
6
|
+
name: "Refi Hub",
|
|
7
|
+
description: "ReFi Hub is a blockchain-based platform bringing impact investing on-chain by tokenizing real-world assets (RWA).",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://www.refihub.io/",
|
|
10
|
+
discord: "https://discord.com/invite/B7f8Vx2ZFK",
|
|
11
|
+
twitter: "https://twitter.com/refihub",
|
|
12
|
+
documentation: "https://refihub.gitbook.io/refi-hub",
|
|
13
|
+
},
|
|
14
|
+
tags: ["dapp", "rwa"],
|
|
15
|
+
};
|
|
16
|
+
exports.services = [];
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PlatformRaw, ServiceRaw } from "../types";
|
|
2
|
+
export declare const platform: PlatformRaw;
|
|
3
|
+
export declare const stakingContract: {
|
|
4
|
+
name: string;
|
|
5
|
+
address: string;
|
|
6
|
+
networkId: "solana";
|
|
7
|
+
};
|
|
8
|
+
export declare const stakingService: ServiceRaw;
|
|
9
|
+
export declare const services: ServiceRaw[];
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.stakingService = exports.stakingContract = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "solanamobile",
|
|
7
|
+
name: "Solana Mobile",
|
|
8
|
+
description: "Seeker, the definitive crypto mobile device.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://solanamobile.com/",
|
|
11
|
+
discord: "https://discord.gg/solanamobile",
|
|
12
|
+
twitter: "https://x.com/solanamobile",
|
|
13
|
+
documentation: "https://docs.solanamobile.com/",
|
|
14
|
+
},
|
|
15
|
+
tags: ["wallet"],
|
|
16
|
+
platformToken: "SKRbvo6Gf7GondiT3BbTfuRDPqLWei4j2Qy2NPGZhW3",
|
|
17
|
+
};
|
|
18
|
+
exports.stakingContract = {
|
|
19
|
+
name: "Staking",
|
|
20
|
+
address: "SKRskrmtL83pcL4YqLWt6iPefDqwXQWHSw9S9vz94BZ",
|
|
21
|
+
networkId: types_1.NetworkId.solana,
|
|
22
|
+
};
|
|
23
|
+
exports.stakingService = {
|
|
24
|
+
id: `${exports.platform.id}-stake`,
|
|
25
|
+
name: "Staking",
|
|
26
|
+
platformId: exports.platform.id,
|
|
27
|
+
contractsRaw: [exports.stakingContract],
|
|
28
|
+
link: "https://stake.solanamobile.com/",
|
|
29
|
+
};
|
|
30
|
+
exports.services = [exports.stakingService];
|