@jup-ag/platform-list 1.2.68 → 1.2.71
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/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 +12 -0
- package/dist/platforms/tramplin.d.ts +3 -0
- package/dist/platforms/tramplin.js +15 -0
- package/package.json +1 -1
|
@@ -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"));
|
|
@@ -337,6 +340,7 @@ const thevault = __importStar(require("./thevault"));
|
|
|
337
340
|
const threshold = __importStar(require("./threshold"));
|
|
338
341
|
const tiplink = __importStar(require("./tiplink"));
|
|
339
342
|
const titan = __importStar(require("./titan"));
|
|
343
|
+
const tramplin = __importStar(require("./tramplin"));
|
|
340
344
|
const trepa = __importStar(require("./trepa"));
|
|
341
345
|
const triad = __importStar(require("./triad"));
|
|
342
346
|
const tribeca = __importStar(require("./tribeca"));
|
|
@@ -439,6 +443,7 @@ exports.platforms = [
|
|
|
439
443
|
cushion.platform,
|
|
440
444
|
cyberfrogs.platform,
|
|
441
445
|
cytonic.platform,
|
|
446
|
+
daosdotfun.platform,
|
|
442
447
|
debridge.platform,
|
|
443
448
|
defidevcorp.platform,
|
|
444
449
|
defiland.platform,
|
|
@@ -483,6 +488,7 @@ exports.platforms = [
|
|
|
483
488
|
gecko.platform,
|
|
484
489
|
genesysgo.platform,
|
|
485
490
|
glow.platform,
|
|
491
|
+
gmtrade.platform,
|
|
486
492
|
goblingold.platform,
|
|
487
493
|
godl.platform,
|
|
488
494
|
gofurs.platform,
|
|
@@ -512,6 +518,7 @@ exports.platforms = [
|
|
|
512
518
|
humidifi.platform,
|
|
513
519
|
hxro.platform,
|
|
514
520
|
hylo.platform,
|
|
521
|
+
icm.platform,
|
|
515
522
|
iloop.platform,
|
|
516
523
|
invariant.platform,
|
|
517
524
|
jet.platform,
|
|
@@ -672,6 +679,7 @@ exports.platforms = [
|
|
|
672
679
|
threshold.platform,
|
|
673
680
|
tiplink.platform,
|
|
674
681
|
titan.platform,
|
|
682
|
+
tramplin.platform,
|
|
675
683
|
trepa.platform,
|
|
676
684
|
triad.platform,
|
|
677
685
|
tribeca.platform,
|
|
@@ -775,6 +783,7 @@ exports.services = [
|
|
|
775
783
|
...cushion.services,
|
|
776
784
|
...cyberfrogs.services,
|
|
777
785
|
...cytonic.services,
|
|
786
|
+
...daosdotfun.services,
|
|
778
787
|
...debridge.services,
|
|
779
788
|
...defidevcorp.services,
|
|
780
789
|
...defiland.services,
|
|
@@ -819,6 +828,7 @@ exports.services = [
|
|
|
819
828
|
...gecko.services,
|
|
820
829
|
...genesysgo.services,
|
|
821
830
|
...glow.services,
|
|
831
|
+
...gmtrade.services,
|
|
822
832
|
...goblingold.services,
|
|
823
833
|
...godl.services,
|
|
824
834
|
...gofurs.services,
|
|
@@ -848,6 +858,7 @@ exports.services = [
|
|
|
848
858
|
...humidifi.services,
|
|
849
859
|
...hxro.services,
|
|
850
860
|
...hylo.services,
|
|
861
|
+
...icm.services,
|
|
851
862
|
...iloop.services,
|
|
852
863
|
...invariant.services,
|
|
853
864
|
...jet.services,
|
|
@@ -1008,6 +1019,7 @@ exports.services = [
|
|
|
1008
1019
|
...threshold.services,
|
|
1009
1020
|
...tiplink.services,
|
|
1010
1021
|
...titan.services,
|
|
1022
|
+
...tramplin.services,
|
|
1011
1023
|
...trepa.services,
|
|
1012
1024
|
...triad.services,
|
|
1013
1025
|
...tribeca.services,
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "tramplin",
|
|
6
|
+
name: "Tramplin",
|
|
7
|
+
description: "Boost your savings with randomized yield.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://tramplin.io/",
|
|
10
|
+
twitter: "https://x.com/Tramplin_io",
|
|
11
|
+
discord: "https://discord.com/invite/tramplin",
|
|
12
|
+
},
|
|
13
|
+
tags: ["dapp"],
|
|
14
|
+
};
|
|
15
|
+
exports.services = [];
|