@jup-ag/platform-list 1.2.67 → 1.2.70
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/index.d.ts +1 -1
- package/dist/platforms/daosdotfun.d.ts +4 -0
- package/dist/platforms/daosdotfun.js +27 -0
- package/dist/platforms/gmtrade.d.ts +5 -0
- package/dist/platforms/gmtrade.js +40 -0
- package/dist/platforms/icm.d.ts +22 -0
- package/dist/platforms/icm.js +28 -0
- package/dist/platforms/index.js +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Contract, Platform, Service } from "./types";
|
|
2
|
-
export { Contract, ContractRaw, Platform, Service } from "./types";
|
|
2
|
+
export { Contract, ContractRaw, Platform, Service, ServiceRaw } from "./types";
|
|
3
3
|
export * from "./utils";
|
|
4
4
|
declare const platforms: Platform[];
|
|
5
5
|
declare const services: Service[];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.service = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "daosdotfun",
|
|
7
|
+
name: "daos.fun",
|
|
8
|
+
description: "launch an AI agent or DAO in 1-click alongside ai16z on Solana's biggest AI capital market.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://www.daos.fun/",
|
|
11
|
+
twitter: "https://x.com/daosdotfun",
|
|
12
|
+
documentation: "https://www.daos.fun/playbook",
|
|
13
|
+
},
|
|
14
|
+
tags: ["launchpad"],
|
|
15
|
+
};
|
|
16
|
+
const contract = {
|
|
17
|
+
name: "Coin",
|
|
18
|
+
address: "4FqThZWv3QKWkSyXCDmATpWkpEiCHq5yhkdGWpSEDAZM",
|
|
19
|
+
networkId: types_1.NetworkId.solana,
|
|
20
|
+
};
|
|
21
|
+
exports.service = {
|
|
22
|
+
id: `${exports.platform.id}-coin`,
|
|
23
|
+
name: "Coin",
|
|
24
|
+
platformId: exports.platform.id,
|
|
25
|
+
contractsRaw: [contract],
|
|
26
|
+
};
|
|
27
|
+
exports.services = [exports.service];
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.stakeService = exports.tradeService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "gmtrade",
|
|
7
|
+
name: "GMTrade",
|
|
8
|
+
description: "GMTrade is a decentralized leveraged trading platform built on the Solana blockchain.",
|
|
9
|
+
tags: ["dex"],
|
|
10
|
+
links: {
|
|
11
|
+
website: "https://gmxsol.io/",
|
|
12
|
+
discord: "https://discord.com/invite/gmtrade",
|
|
13
|
+
twitter: "https://x.com/gmtrade_xyz",
|
|
14
|
+
documentation: "https://docs.gmtrade.xyz/",
|
|
15
|
+
},
|
|
16
|
+
defiLlamaId: "gmtrade",
|
|
17
|
+
};
|
|
18
|
+
const tradeContract = {
|
|
19
|
+
name: "Trade",
|
|
20
|
+
address: "Gmso1uvJnLbawvw7yezdfCDcPydwW2s2iqG3w6MDucLo",
|
|
21
|
+
networkId: types_1.NetworkId.solana,
|
|
22
|
+
};
|
|
23
|
+
const stakeContract = {
|
|
24
|
+
name: "Stake",
|
|
25
|
+
address: "LPMWczEVgXyQ3979XaqqEttanCXmYGvtJqPVtw1PvC8",
|
|
26
|
+
networkId: types_1.NetworkId.solana,
|
|
27
|
+
};
|
|
28
|
+
exports.tradeService = {
|
|
29
|
+
id: `${exports.platform.id}-trade`,
|
|
30
|
+
name: "Trade",
|
|
31
|
+
platformId: exports.platform.id,
|
|
32
|
+
contractsRaw: [tradeContract],
|
|
33
|
+
};
|
|
34
|
+
exports.stakeService = {
|
|
35
|
+
id: `${exports.platform.id}-stake`,
|
|
36
|
+
name: "Trade",
|
|
37
|
+
platformId: exports.platform.id,
|
|
38
|
+
contractsRaw: [stakeContract],
|
|
39
|
+
};
|
|
40
|
+
exports.services = [exports.tradeService];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { PlatformRaw } from "../types";
|
|
2
|
+
export declare const platform: PlatformRaw;
|
|
3
|
+
export declare const stakingService: {
|
|
4
|
+
id: string;
|
|
5
|
+
name: string;
|
|
6
|
+
platformId: string;
|
|
7
|
+
contractsRaw: {
|
|
8
|
+
name: string;
|
|
9
|
+
address: string;
|
|
10
|
+
networkId: "solana";
|
|
11
|
+
}[];
|
|
12
|
+
};
|
|
13
|
+
export declare const services: {
|
|
14
|
+
id: string;
|
|
15
|
+
name: string;
|
|
16
|
+
platformId: string;
|
|
17
|
+
contractsRaw: {
|
|
18
|
+
name: string;
|
|
19
|
+
address: string;
|
|
20
|
+
networkId: "solana";
|
|
21
|
+
}[];
|
|
22
|
+
}[];
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.stakingService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "icm",
|
|
7
|
+
name: "ICM.RUN",
|
|
8
|
+
description: "Solana's Internet Capital Markets: DAO & Incubator.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://icm.run/",
|
|
11
|
+
twitter: "https://x.com/icmdotrun",
|
|
12
|
+
telegram: "https://t.me/icmdotrun",
|
|
13
|
+
},
|
|
14
|
+
tags: ["dao"],
|
|
15
|
+
platformToken: "G5bStqnKXv11fmPvMaagUbZi86BGnpf9zZtyPQtAdaos",
|
|
16
|
+
};
|
|
17
|
+
const stakingContract = {
|
|
18
|
+
name: "Staking",
|
|
19
|
+
address: "BsMCB3NGDVstxsxK34MnazJTHuMjWTjngjGyybVTuS7s",
|
|
20
|
+
networkId: types_1.NetworkId.solana,
|
|
21
|
+
};
|
|
22
|
+
exports.stakingService = {
|
|
23
|
+
id: `${exports.platform.id}-staking`,
|
|
24
|
+
name: "Staking",
|
|
25
|
+
platformId: exports.platform.id,
|
|
26
|
+
contractsRaw: [stakingContract],
|
|
27
|
+
};
|
|
28
|
+
exports.services = [exports.stakingService];
|
package/dist/platforms/index.js
CHANGED
|
@@ -104,6 +104,7 @@ const cudis = __importStar(require("./cudis"));
|
|
|
104
104
|
const cushion = __importStar(require("./cushion"));
|
|
105
105
|
const cyberfrogs = __importStar(require("./cyberfrogs"));
|
|
106
106
|
const cytonic = __importStar(require("./cytonic"));
|
|
107
|
+
const daosdotfun = __importStar(require("./daosdotfun"));
|
|
107
108
|
const debridge = __importStar(require("./debridge"));
|
|
108
109
|
const defidevcorp = __importStar(require("./defidevcorp"));
|
|
109
110
|
const defiland = __importStar(require("./defiland"));
|
|
@@ -148,6 +149,7 @@ const gauntlet = __importStar(require("./gauntlet"));
|
|
|
148
149
|
const gecko = __importStar(require("./gecko"));
|
|
149
150
|
const genesysgo = __importStar(require("./genesysgo"));
|
|
150
151
|
const glow = __importStar(require("./glow"));
|
|
152
|
+
const gmtrade = __importStar(require("./gmtrade"));
|
|
151
153
|
const goblingold = __importStar(require("./goblingold"));
|
|
152
154
|
const godl = __importStar(require("./godl"));
|
|
153
155
|
const gofurs = __importStar(require("./gofurs"));
|
|
@@ -177,6 +179,7 @@ const huma = __importStar(require("./huma"));
|
|
|
177
179
|
const humidifi = __importStar(require("./humidifi"));
|
|
178
180
|
const hxro = __importStar(require("./hxro"));
|
|
179
181
|
const hylo = __importStar(require("./hylo"));
|
|
182
|
+
const icm = __importStar(require("./icm"));
|
|
180
183
|
const iloop = __importStar(require("./iloop"));
|
|
181
184
|
const invariant = __importStar(require("./invariant"));
|
|
182
185
|
const jet = __importStar(require("./jet"));
|
|
@@ -439,6 +442,7 @@ exports.platforms = [
|
|
|
439
442
|
cushion.platform,
|
|
440
443
|
cyberfrogs.platform,
|
|
441
444
|
cytonic.platform,
|
|
445
|
+
daosdotfun.platform,
|
|
442
446
|
debridge.platform,
|
|
443
447
|
defidevcorp.platform,
|
|
444
448
|
defiland.platform,
|
|
@@ -483,6 +487,7 @@ exports.platforms = [
|
|
|
483
487
|
gecko.platform,
|
|
484
488
|
genesysgo.platform,
|
|
485
489
|
glow.platform,
|
|
490
|
+
gmtrade.platform,
|
|
486
491
|
goblingold.platform,
|
|
487
492
|
godl.platform,
|
|
488
493
|
gofurs.platform,
|
|
@@ -512,6 +517,7 @@ exports.platforms = [
|
|
|
512
517
|
humidifi.platform,
|
|
513
518
|
hxro.platform,
|
|
514
519
|
hylo.platform,
|
|
520
|
+
icm.platform,
|
|
515
521
|
iloop.platform,
|
|
516
522
|
invariant.platform,
|
|
517
523
|
jet.platform,
|
|
@@ -775,6 +781,7 @@ exports.services = [
|
|
|
775
781
|
...cushion.services,
|
|
776
782
|
...cyberfrogs.services,
|
|
777
783
|
...cytonic.services,
|
|
784
|
+
...daosdotfun.services,
|
|
778
785
|
...debridge.services,
|
|
779
786
|
...defidevcorp.services,
|
|
780
787
|
...defiland.services,
|
|
@@ -819,6 +826,7 @@ exports.services = [
|
|
|
819
826
|
...gecko.services,
|
|
820
827
|
...genesysgo.services,
|
|
821
828
|
...glow.services,
|
|
829
|
+
...gmtrade.services,
|
|
822
830
|
...goblingold.services,
|
|
823
831
|
...godl.services,
|
|
824
832
|
...gofurs.services,
|
|
@@ -848,6 +856,7 @@ exports.services = [
|
|
|
848
856
|
...humidifi.services,
|
|
849
857
|
...hxro.services,
|
|
850
858
|
...hylo.services,
|
|
859
|
+
...icm.services,
|
|
851
860
|
...iloop.services,
|
|
852
861
|
...invariant.services,
|
|
853
862
|
...jet.services,
|