@jup-ag/platform-list 1.2.76 → 1.2.79
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/arcium.d.ts +5 -0
- package/dist/platforms/arcium.js +31 -0
- package/dist/platforms/burnandclaim.d.ts +5 -0
- package/dist/platforms/burnandclaim.js +27 -0
- package/dist/platforms/cashcity.js +1 -0
- package/dist/platforms/collectorcrypt.js +1 -1
- package/dist/platforms/hadeswap.js +1 -1
- package/dist/platforms/index.js +15 -0
- package/dist/platforms/omnipair.d.ts +4 -0
- package/dist/platforms/omnipair.js +31 -0
- package/dist/platforms/smithii.js +1 -0
- package/dist/platforms/unclaimedsol.d.ts +1 -0
- package/dist/platforms/unclaimedsol.js +15 -3
- package/dist/platforms/wzrd.d.ts +6 -0
- package/dist/platforms/wzrd.js +41 -0
- package/dist/platforms/zora.d.ts +3 -0
- package/dist/platforms/zora.js +18 -0
- package/package.json +1 -1
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.mxeService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "arcium",
|
|
7
|
+
name: "Arcium",
|
|
8
|
+
description: "Arcium is building the encrypted execution engine enabling compute over fully encrypted data at Solana speed and scale.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://arcium.com/",
|
|
11
|
+
discord: "https://discord.gg/arcium",
|
|
12
|
+
twitter: "https://x.com/arcium",
|
|
13
|
+
github: "https://github.com/arcium-hq",
|
|
14
|
+
documentation: "https://docs.arcium.com/",
|
|
15
|
+
},
|
|
16
|
+
tags: ["tool", "infrastructure", "privacy"],
|
|
17
|
+
addedAt: 1739750400000,
|
|
18
|
+
};
|
|
19
|
+
const mxeContract = {
|
|
20
|
+
name: "MXE",
|
|
21
|
+
address: "Arcj82pX7HxYKLR92qvgZUAd7vGS1k4hQvAFcPATFdEQ",
|
|
22
|
+
networkId: types_1.NetworkId.solana,
|
|
23
|
+
};
|
|
24
|
+
exports.mxeService = {
|
|
25
|
+
id: `${exports.platform.id}-mxe`,
|
|
26
|
+
name: "MXE",
|
|
27
|
+
platformId: exports.platform.id,
|
|
28
|
+
contractsRaw: [mxeContract],
|
|
29
|
+
};
|
|
30
|
+
exports.services = [exports.mxeService];
|
|
31
|
+
exports.default = exports.services;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.cleanupService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "burnandclaim",
|
|
7
|
+
name: "Burn and Claim",
|
|
8
|
+
description: "The All-In-One Solana Incinerator. Burn Tokens & NFTs. Close Accounts. Claim Back SOL.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://www.burnandclaim.com",
|
|
11
|
+
twitter: "https://x.com/burnandclaim",
|
|
12
|
+
},
|
|
13
|
+
tags: ["tool"],
|
|
14
|
+
};
|
|
15
|
+
const burnAndClaimContract = {
|
|
16
|
+
name: "Incinerator",
|
|
17
|
+
address: "abrn446KXzKZxSowJdHN9XumbGfQi4DdAfWHBT7X81r",
|
|
18
|
+
networkId: types_1.NetworkId.solana,
|
|
19
|
+
};
|
|
20
|
+
exports.cleanupService = {
|
|
21
|
+
id: `${exports.platform.id}-cleanup`,
|
|
22
|
+
name: "Cleanup",
|
|
23
|
+
platformId: exports.platform.id,
|
|
24
|
+
contractsRaw: [burnAndClaimContract],
|
|
25
|
+
};
|
|
26
|
+
exports.services = [exports.cleanupService];
|
|
27
|
+
exports.default = exports.services;
|
|
@@ -12,7 +12,7 @@ exports.platform = {
|
|
|
12
12
|
telegram: "https://t.me/CollectorChat",
|
|
13
13
|
},
|
|
14
14
|
defiLlamaId: "collector-crypt",
|
|
15
|
-
tags: ["rwa", "nft-marketplace"],
|
|
15
|
+
tags: ["rwa", "nft-marketplace", "dapp"],
|
|
16
16
|
platformToken: "CARDSccUMFKoPRZxt5vt3ksUbxEFEcnZ3H2pd3dKxYjp",
|
|
17
17
|
};
|
|
18
18
|
exports.services = [];
|
|
@@ -8,7 +8,7 @@ exports.platform = {
|
|
|
8
8
|
description: "Hadeswap was an NFT AMM marketplace enabling instant NFT trading with liquidity pools.",
|
|
9
9
|
links: {
|
|
10
10
|
website: "https://www.hadeswap.com/",
|
|
11
|
-
twitter: "https://x.com/
|
|
11
|
+
twitter: "https://x.com/SwapHades",
|
|
12
12
|
github: "https://github.com/hadeswap-solana",
|
|
13
13
|
},
|
|
14
14
|
tags: ["dapp", "nft-marketplace"],
|
package/dist/platforms/index.js
CHANGED
|
@@ -52,6 +52,7 @@ const amppay = __importStar(require("./amppay"));
|
|
|
52
52
|
const amulet = __importStar(require("./amulet"));
|
|
53
53
|
const antfun = __importStar(require("./antfun"));
|
|
54
54
|
const archer = __importStar(require("./archer"));
|
|
55
|
+
const arcium = __importStar(require("./arcium"));
|
|
55
56
|
const armada = __importStar(require("./armada"));
|
|
56
57
|
const artrade = __importStar(require("./artrade"));
|
|
57
58
|
const asgardfi = __importStar(require("./asgardfi"));
|
|
@@ -82,6 +83,7 @@ const brawl = __importStar(require("./brawl"));
|
|
|
82
83
|
const bskt = __importStar(require("./bskt"));
|
|
83
84
|
const btcsol = __importStar(require("./btcsol"));
|
|
84
85
|
const bulktrade = __importStar(require("./bulktrade"));
|
|
86
|
+
const burnandclaim = __importStar(require("./burnandclaim"));
|
|
85
87
|
const byreal = __importStar(require("./byreal"));
|
|
86
88
|
const canary = __importStar(require("./canary"));
|
|
87
89
|
const candle = __importStar(require("./candle"));
|
|
@@ -249,6 +251,7 @@ const nxfinance = __importStar(require("./nxfinance"));
|
|
|
249
251
|
const okaybears = __importStar(require("./okaybears"));
|
|
250
252
|
const okx = __importStar(require("./okx"));
|
|
251
253
|
const omni = __importStar(require("./omni"));
|
|
254
|
+
const omnipair = __importStar(require("./omnipair"));
|
|
252
255
|
const ondoFinance = __importStar(require("./ondo-finance"));
|
|
253
256
|
const onre = __importStar(require("./onre"));
|
|
254
257
|
const oobit = __importStar(require("./oobit"));
|
|
@@ -381,6 +384,7 @@ const whalesmarket = __importStar(require("./whalesmarket"));
|
|
|
381
384
|
const wink = __importStar(require("./wink"));
|
|
382
385
|
const wintermute = __importStar(require("./wintermute"));
|
|
383
386
|
const wormhole = __importStar(require("./wormhole"));
|
|
387
|
+
const wzrd = __importStar(require("./wzrd"));
|
|
384
388
|
const xstocks = __importStar(require("./xstocks"));
|
|
385
389
|
const y00ts = __importStar(require("./y00ts"));
|
|
386
390
|
const yaku = __importStar(require("./yaku"));
|
|
@@ -389,6 +393,7 @@ const zelo = __importStar(require("./zelo"));
|
|
|
389
393
|
const zenrock = __importStar(require("./zenrock"));
|
|
390
394
|
const zeta = __importStar(require("./zeta"));
|
|
391
395
|
const zeus = __importStar(require("./zeus"));
|
|
396
|
+
const zora = __importStar(require("./zora"));
|
|
392
397
|
exports.platforms = [
|
|
393
398
|
_01.platform,
|
|
394
399
|
_1inch.platform,
|
|
@@ -407,6 +412,7 @@ exports.platforms = [
|
|
|
407
412
|
amulet.platform,
|
|
408
413
|
antfun.platform,
|
|
409
414
|
archer.platform,
|
|
415
|
+
arcium.platform,
|
|
410
416
|
armada.platform,
|
|
411
417
|
artrade.platform,
|
|
412
418
|
asgardfi.platform,
|
|
@@ -437,6 +443,7 @@ exports.platforms = [
|
|
|
437
443
|
bskt.platform,
|
|
438
444
|
btcsol.platform,
|
|
439
445
|
bulktrade.platform,
|
|
446
|
+
burnandclaim.platform,
|
|
440
447
|
byreal.platform,
|
|
441
448
|
canary.platform,
|
|
442
449
|
candle.platform,
|
|
@@ -604,6 +611,7 @@ exports.platforms = [
|
|
|
604
611
|
okaybears.platform,
|
|
605
612
|
okx.platform,
|
|
606
613
|
omni.platform,
|
|
614
|
+
omnipair.platform,
|
|
607
615
|
ondoFinance.platform,
|
|
608
616
|
onre.platform,
|
|
609
617
|
oobit.platform,
|
|
@@ -736,6 +744,7 @@ exports.platforms = [
|
|
|
736
744
|
wink.platform,
|
|
737
745
|
wintermute.platform,
|
|
738
746
|
wormhole.platform,
|
|
747
|
+
wzrd.platform,
|
|
739
748
|
xstocks.platform,
|
|
740
749
|
y00ts.platform,
|
|
741
750
|
yaku.platform,
|
|
@@ -744,6 +753,7 @@ exports.platforms = [
|
|
|
744
753
|
zenrock.platform,
|
|
745
754
|
zeta.platform,
|
|
746
755
|
zeus.platform,
|
|
756
|
+
zora.platform,
|
|
747
757
|
];
|
|
748
758
|
exports.services = [
|
|
749
759
|
..._01.services,
|
|
@@ -763,6 +773,7 @@ exports.services = [
|
|
|
763
773
|
...amulet.services,
|
|
764
774
|
...antfun.services,
|
|
765
775
|
...archer.services,
|
|
776
|
+
...arcium.services,
|
|
766
777
|
...armada.services,
|
|
767
778
|
...artrade.services,
|
|
768
779
|
...asgardfi.services,
|
|
@@ -793,6 +804,7 @@ exports.services = [
|
|
|
793
804
|
...bskt.services,
|
|
794
805
|
...btcsol.services,
|
|
795
806
|
...bulktrade.services,
|
|
807
|
+
...burnandclaim.services,
|
|
796
808
|
...byreal.services,
|
|
797
809
|
...canary.services,
|
|
798
810
|
...candle.services,
|
|
@@ -960,6 +972,7 @@ exports.services = [
|
|
|
960
972
|
...okaybears.services,
|
|
961
973
|
...okx.services,
|
|
962
974
|
...omni.services,
|
|
975
|
+
...omnipair.services,
|
|
963
976
|
...ondoFinance.services,
|
|
964
977
|
...onre.services,
|
|
965
978
|
...oobit.services,
|
|
@@ -1092,6 +1105,7 @@ exports.services = [
|
|
|
1092
1105
|
...wink.services,
|
|
1093
1106
|
...wintermute.services,
|
|
1094
1107
|
...wormhole.services,
|
|
1108
|
+
...wzrd.services,
|
|
1095
1109
|
...xstocks.services,
|
|
1096
1110
|
...y00ts.services,
|
|
1097
1111
|
...yaku.services,
|
|
@@ -1100,4 +1114,5 @@ exports.services = [
|
|
|
1100
1114
|
...zenrock.services,
|
|
1101
1115
|
...zeta.services,
|
|
1102
1116
|
...zeus.services,
|
|
1117
|
+
...zora.services,
|
|
1103
1118
|
];
|
|
@@ -0,0 +1,31 @@
|
|
|
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: "omnipair",
|
|
7
|
+
name: "Omnipair",
|
|
8
|
+
description: "Omnipair is a decentralized hyperstructure protocol for spot and margin trading, designed for permissionless, oracle-less, and isolated-collateral markets on Solana.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://omnipair.fi/",
|
|
11
|
+
discord: "https://discord.gg/omnipair",
|
|
12
|
+
twitter: "https://x.com/omnipair",
|
|
13
|
+
github: "https://github.com/omnipair",
|
|
14
|
+
documentation: "https://docs.omnipair.fi/",
|
|
15
|
+
},
|
|
16
|
+
platformToken: "omfgRBnxHsNJh6YeGbGAmWenNkenzsXyBXm3WDhmeta",
|
|
17
|
+
tags: ["dapp", "dex", "amm", "defi"],
|
|
18
|
+
addedAt: 1771499370000,
|
|
19
|
+
};
|
|
20
|
+
const contract = {
|
|
21
|
+
name: `Borrow`,
|
|
22
|
+
address: "omnixgS8fnqHfCcTGKWj6JtKjzpJZ1Y5y9pyFkQDkYE",
|
|
23
|
+
networkId: types_1.NetworkId.solana,
|
|
24
|
+
};
|
|
25
|
+
exports.service = {
|
|
26
|
+
id: `${exports.platform.id}-borrow`,
|
|
27
|
+
name: "Borrow",
|
|
28
|
+
platformId: exports.platform.id,
|
|
29
|
+
contractsRaw: [contract],
|
|
30
|
+
};
|
|
31
|
+
exports.services = [exports.service];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.services = exports.platform = void 0;
|
|
3
|
+
exports.services = exports.burnCloseService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
4
5
|
exports.platform = {
|
|
5
6
|
id: "unclaimedsol",
|
|
6
7
|
name: "Unclaimed SOL",
|
|
@@ -13,7 +14,18 @@ exports.platform = {
|
|
|
13
14
|
github: "https://github.com/unclaimed-sol/spl-burn-close-sdk",
|
|
14
15
|
documentation: "https://docs.unclaimedsol.com/",
|
|
15
16
|
},
|
|
16
|
-
tags: ["
|
|
17
|
+
tags: ["tool"],
|
|
17
18
|
};
|
|
18
|
-
|
|
19
|
+
const burnCloseContract = {
|
|
20
|
+
name: "Burn & Close",
|
|
21
|
+
address: "UNCaXzXkR3vp8mbCJyxWUvwuRk5uHgzrwe6jcWPfiUR",
|
|
22
|
+
networkId: types_1.NetworkId.solana,
|
|
23
|
+
};
|
|
24
|
+
exports.burnCloseService = {
|
|
25
|
+
id: `${exports.platform.id}-burn-close`,
|
|
26
|
+
name: "Burn & Close",
|
|
27
|
+
platformId: exports.platform.id,
|
|
28
|
+
contractsRaw: [burnCloseContract],
|
|
29
|
+
};
|
|
30
|
+
exports.services = [exports.burnCloseService];
|
|
19
31
|
exports.default = exports.services;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PlatformRaw, ServiceRaw } from "../types";
|
|
2
|
+
export declare const platform: PlatformRaw;
|
|
3
|
+
export declare const vaultService: ServiceRaw;
|
|
4
|
+
export declare const claimsService: ServiceRaw;
|
|
5
|
+
export declare const services: ServiceRaw[];
|
|
6
|
+
export default services;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.claimsService = exports.vaultService = exports.platform = void 0;
|
|
4
|
+
const types_1 = require("../types");
|
|
5
|
+
exports.platform = {
|
|
6
|
+
id: "wzrd",
|
|
7
|
+
name: "WZRD",
|
|
8
|
+
description: "WZRD is a Solana DeFi protocol that converts stream engagement into on-chain rewards. Participants earn CCM tokens through live stream activity, then claim, swap, stake, and compound rewards through a single interface.",
|
|
9
|
+
links: {
|
|
10
|
+
website: "https://app.twzrd.xyz/",
|
|
11
|
+
twitter: "https://x.com/twaboreum",
|
|
12
|
+
github: "https://github.com/twzrd",
|
|
13
|
+
documentation: "https://docs.twzrd.xyz/",
|
|
14
|
+
},
|
|
15
|
+
platformToken: "Dxk8mAb3C7AM8JN6tAJfVuSja5yidhZM5sEKW3SRX2BM",
|
|
16
|
+
tokens: ["E9Kt33axpCy3ve2PCY9BSrbPhcR9wdDsWQECAahzw2dS"],
|
|
17
|
+
tags: ["dapp", "vault", "defi"],
|
|
18
|
+
addedAt: 1740009600000,
|
|
19
|
+
};
|
|
20
|
+
const channelVaultContract = {
|
|
21
|
+
name: "Channel Vault",
|
|
22
|
+
address: "5WH4UiSZ7fbPQbLrRCJyWxnTAoNyTZ3ZjcdgTuinCXmQ",
|
|
23
|
+
networkId: types_1.NetworkId.solana,
|
|
24
|
+
};
|
|
25
|
+
exports.vaultService = {
|
|
26
|
+
id: `${exports.platform.id}-vault`,
|
|
27
|
+
name: "Vault",
|
|
28
|
+
platformId: exports.platform.id,
|
|
29
|
+
contractsRaw: [channelVaultContract],
|
|
30
|
+
link: "https://app.twzrd.xyz/",
|
|
31
|
+
description: "Staking vault that accepts CCM deposits and mints vLOFI receipt tokens. Includes auto-compounding, an on-chain exchange rate oracle, and queued or instant redemption.",
|
|
32
|
+
};
|
|
33
|
+
exports.claimsService = {
|
|
34
|
+
id: `${exports.platform.id}-claims`,
|
|
35
|
+
name: "Claims",
|
|
36
|
+
platformId: exports.platform.id,
|
|
37
|
+
contractsRaw: [],
|
|
38
|
+
description: "Gasless merkle-proof reward distribution. Stream engagement scores are settled into merkle trees and claimed via sponsored relay transactions.",
|
|
39
|
+
};
|
|
40
|
+
exports.services = [exports.vaultService, exports.claimsService];
|
|
41
|
+
exports.default = exports.services;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "zora",
|
|
6
|
+
name: "Zora",
|
|
7
|
+
description: "Zora is a decentralized protocol for creating, trading, and collecting onchain media. It features attention markets on Solana for trading tokens tied to internet trends.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://zora.co/",
|
|
10
|
+
twitter: "https://x.com/zora",
|
|
11
|
+
github: "https://github.com/ourzora",
|
|
12
|
+
documentation: "https://docs.zora.co/",
|
|
13
|
+
},
|
|
14
|
+
platformToken: "soKqZS9pASwBNS46G388nhK7XVtPaTyReffXEd3zora",
|
|
15
|
+
tags: ["dapp", "social", "nft"],
|
|
16
|
+
addedAt: 1740441600000,
|
|
17
|
+
};
|
|
18
|
+
exports.services = [];
|