@jup-ag/platform-list 1.2.65 → 1.2.66
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/coinbase.d.ts +3 -0
- package/dist/platforms/coinbase.js +15 -0
- package/dist/platforms/index.js +15 -0
- package/dist/platforms/okx.js +1 -0
- package/dist/platforms/threshold.d.ts +3 -0
- package/dist/platforms/threshold.js +18 -0
- package/dist/platforms/unclaimedsol.d.ts +4 -0
- package/dist/platforms/unclaimedsol.js +19 -0
- package/dist/platforms/wbtc.d.ts +3 -0
- package/dist/platforms/wbtc.js +15 -0
- package/dist/platforms/wormhole.js +4 -0
- package/dist/platforms/zenrock.d.ts +3 -0
- package/dist/platforms/zenrock.js +18 -0
- package/package.json +1 -1
|
@@ -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: "coinbase",
|
|
6
|
+
name: "Coinbase",
|
|
7
|
+
description: "Coinbase is a publicly traded cryptocurrency exchange platform providing trading, custody, and staking services for digital assets.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://www.coinbase.com/",
|
|
10
|
+
twitter: "https://x.com/coinbase",
|
|
11
|
+
},
|
|
12
|
+
tags: ["cex"],
|
|
13
|
+
tokens: ["cbbtcf3aa214zXHbiAZQwf4122FBYbraNdFqgw4iMij"],
|
|
14
|
+
};
|
|
15
|
+
exports.services = [];
|
package/dist/platforms/index.js
CHANGED
|
@@ -95,6 +95,7 @@ const citrus = __importStar(require("./citrus"));
|
|
|
95
95
|
const claimyoursols = __importStar(require("./claimyoursols"));
|
|
96
96
|
const claynosaurz = __importStar(require("./claynosaurz"));
|
|
97
97
|
const clone = __importStar(require("./clone"));
|
|
98
|
+
const coinbase = __importStar(require("./coinbase"));
|
|
98
99
|
const coinmarketcap = __importStar(require("./coinmarketcap"));
|
|
99
100
|
const coinshares = __importStar(require("./coinshares"));
|
|
100
101
|
const collectorcrypt = __importStar(require("./collectorcrypt"));
|
|
@@ -332,6 +333,7 @@ const symmetry = __importStar(require("./symmetry"));
|
|
|
332
333
|
const tensor = __importStar(require("./tensor"));
|
|
333
334
|
const texture = __importStar(require("./texture"));
|
|
334
335
|
const thevault = __importStar(require("./thevault"));
|
|
336
|
+
const threshold = __importStar(require("./threshold"));
|
|
335
337
|
const tiplink = __importStar(require("./tiplink"));
|
|
336
338
|
const titan = __importStar(require("./titan"));
|
|
337
339
|
const trepa = __importStar(require("./trepa"));
|
|
@@ -343,6 +345,7 @@ const trustfun = __importStar(require("./trustfun"));
|
|
|
343
345
|
const tuktuk = __importStar(require("./tuktuk"));
|
|
344
346
|
const tulip = __importStar(require("./tulip"));
|
|
345
347
|
const tuyo = __importStar(require("./tuyo"));
|
|
348
|
+
const unclaimedsol = __importStar(require("./unclaimedsol"));
|
|
346
349
|
const underdog = __importStar(require("./underdog"));
|
|
347
350
|
const uprock = __importStar(require("./uprock"));
|
|
348
351
|
const uxd = __importStar(require("./uxd"));
|
|
@@ -352,6 +355,7 @@ const vectis = __importStar(require("./vectis"));
|
|
|
352
355
|
const vidar = __importStar(require("./vidar"));
|
|
353
356
|
const voltr = __importStar(require("./voltr"));
|
|
354
357
|
const wasabi = __importStar(require("./wasabi"));
|
|
358
|
+
const wbtc = __importStar(require("./wbtc"));
|
|
355
359
|
const whalesmarket = __importStar(require("./whalesmarket"));
|
|
356
360
|
const wink = __importStar(require("./wink"));
|
|
357
361
|
const wintermute = __importStar(require("./wintermute"));
|
|
@@ -361,6 +365,7 @@ const y00ts = __importStar(require("./y00ts"));
|
|
|
361
365
|
const yaku = __importStar(require("./yaku"));
|
|
362
366
|
const yieldfan = __importStar(require("./yieldfan"));
|
|
363
367
|
const zelo = __importStar(require("./zelo"));
|
|
368
|
+
const zenrock = __importStar(require("./zenrock"));
|
|
364
369
|
const zeta = __importStar(require("./zeta"));
|
|
365
370
|
const zeus = __importStar(require("./zeus"));
|
|
366
371
|
exports.platforms = [
|
|
@@ -424,6 +429,7 @@ exports.platforms = [
|
|
|
424
429
|
claimyoursols.platform,
|
|
425
430
|
claynosaurz.platform,
|
|
426
431
|
clone.platform,
|
|
432
|
+
coinbase.platform,
|
|
427
433
|
coinmarketcap.platform,
|
|
428
434
|
coinshares.platform,
|
|
429
435
|
collectorcrypt.platform,
|
|
@@ -661,6 +667,7 @@ exports.platforms = [
|
|
|
661
667
|
tensor.platform,
|
|
662
668
|
texture.platform,
|
|
663
669
|
thevault.platform,
|
|
670
|
+
threshold.platform,
|
|
664
671
|
tiplink.platform,
|
|
665
672
|
titan.platform,
|
|
666
673
|
trepa.platform,
|
|
@@ -672,6 +679,7 @@ exports.platforms = [
|
|
|
672
679
|
tuktuk.platform,
|
|
673
680
|
tulip.platform,
|
|
674
681
|
tuyo.platform,
|
|
682
|
+
unclaimedsol.platform,
|
|
675
683
|
underdog.platform,
|
|
676
684
|
uprock.platform,
|
|
677
685
|
uxd.platform,
|
|
@@ -681,6 +689,7 @@ exports.platforms = [
|
|
|
681
689
|
vidar.platform,
|
|
682
690
|
voltr.platform,
|
|
683
691
|
wasabi.platform,
|
|
692
|
+
wbtc.platform,
|
|
684
693
|
whalesmarket.platform,
|
|
685
694
|
wink.platform,
|
|
686
695
|
wintermute.platform,
|
|
@@ -690,6 +699,7 @@ exports.platforms = [
|
|
|
690
699
|
yaku.platform,
|
|
691
700
|
yieldfan.platform,
|
|
692
701
|
zelo.platform,
|
|
702
|
+
zenrock.platform,
|
|
693
703
|
zeta.platform,
|
|
694
704
|
zeus.platform,
|
|
695
705
|
];
|
|
@@ -754,6 +764,7 @@ exports.services = [
|
|
|
754
764
|
...claimyoursols.services,
|
|
755
765
|
...claynosaurz.services,
|
|
756
766
|
...clone.services,
|
|
767
|
+
...coinbase.services,
|
|
757
768
|
...coinmarketcap.services,
|
|
758
769
|
...coinshares.services,
|
|
759
770
|
...collectorcrypt.services,
|
|
@@ -991,6 +1002,7 @@ exports.services = [
|
|
|
991
1002
|
...tensor.services,
|
|
992
1003
|
...texture.services,
|
|
993
1004
|
...thevault.services,
|
|
1005
|
+
...threshold.services,
|
|
994
1006
|
...tiplink.services,
|
|
995
1007
|
...titan.services,
|
|
996
1008
|
...trepa.services,
|
|
@@ -1002,6 +1014,7 @@ exports.services = [
|
|
|
1002
1014
|
...tuktuk.services,
|
|
1003
1015
|
...tulip.services,
|
|
1004
1016
|
...tuyo.services,
|
|
1017
|
+
...unclaimedsol.services,
|
|
1005
1018
|
...underdog.services,
|
|
1006
1019
|
...uprock.services,
|
|
1007
1020
|
...uxd.services,
|
|
@@ -1011,6 +1024,7 @@ exports.services = [
|
|
|
1011
1024
|
...vidar.services,
|
|
1012
1025
|
...voltr.services,
|
|
1013
1026
|
...wasabi.services,
|
|
1027
|
+
...wbtc.services,
|
|
1014
1028
|
...whalesmarket.services,
|
|
1015
1029
|
...wink.services,
|
|
1016
1030
|
...wintermute.services,
|
|
@@ -1020,6 +1034,7 @@ exports.services = [
|
|
|
1020
1034
|
...yaku.services,
|
|
1021
1035
|
...yieldfan.services,
|
|
1022
1036
|
...zelo.services,
|
|
1037
|
+
...zenrock.services,
|
|
1023
1038
|
...zeta.services,
|
|
1024
1039
|
...zeus.services,
|
|
1025
1040
|
];
|
package/dist/platforms/okx.js
CHANGED
|
@@ -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: "threshold",
|
|
6
|
+
name: "Threshold Network",
|
|
7
|
+
description: "Threshold Network is a decentralized threshold cryptography protocol powering tBTC, a trustless tokenized Bitcoin bridge.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://www.threshold.network/",
|
|
10
|
+
twitter: "https://x.com/TheTNetwork",
|
|
11
|
+
},
|
|
12
|
+
tags: ["bridge"],
|
|
13
|
+
tokens: [
|
|
14
|
+
"6DNSN2BJsaPFdFFc1zP37kkeNe4Usc1Sqkzr9C9vPWcU",
|
|
15
|
+
"tSATdGGSLYBVCrm3pXiib8NmzKcB1iUdjRRseNGssxu",
|
|
16
|
+
],
|
|
17
|
+
};
|
|
18
|
+
exports.services = [];
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.services = exports.platform = void 0;
|
|
4
|
+
exports.platform = {
|
|
5
|
+
id: "unclaimedsol",
|
|
6
|
+
name: "Unclaimed SOL",
|
|
7
|
+
description: "Unclaimed SOL is a Solana recovery/cleanup tool that deep-scans your wallet history to close what’s safe and return the locked reclaimable balances back to your wallet.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://unclaimedsol.com/",
|
|
10
|
+
twitter: "https://x.com/unclaimed_sol",
|
|
11
|
+
discord: "https://discord.gg/SG8hdqfPPt",
|
|
12
|
+
telegram: "https://t.me/unclaimedsol",
|
|
13
|
+
github: "https://github.com/unclaimed-sol/spl-burn-close-sdk",
|
|
14
|
+
documentation: "https://docs.unclaimedsol.com/",
|
|
15
|
+
},
|
|
16
|
+
tags: ["dapp", "tool"],
|
|
17
|
+
};
|
|
18
|
+
exports.services = [];
|
|
19
|
+
exports.default = exports.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: "wbtc",
|
|
6
|
+
name: "WBTC",
|
|
7
|
+
description: "WBTC (Wrapped Bitcoin) is a tokenized representation of Bitcoin, backed 1:1 and enabling BTC to be used across decentralized finance ecosystems.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://wbtc.network/",
|
|
10
|
+
twitter: "https://x.com/WrappedBTC",
|
|
11
|
+
},
|
|
12
|
+
tags: ["institutional"],
|
|
13
|
+
tokens: ["5XZw2LKTyrfvfiskJ78AMpackRjPcyCif1WhUsPDuVqQ"],
|
|
14
|
+
};
|
|
15
|
+
exports.services = [];
|
|
@@ -16,6 +16,10 @@ exports.platform = {
|
|
|
16
16
|
},
|
|
17
17
|
platformToken: "85VBFQZC9TZkfaptBWjvUw7YbZjy52A6mjtPGjstQAmQ",
|
|
18
18
|
tags: ["tool", "bridge", "dapp"],
|
|
19
|
+
tokens: [
|
|
20
|
+
"3NZ9JMVBmGAqocybic2c7LQCJScmgsAZ6vQqTDzcqmJh",
|
|
21
|
+
"7vfCXTUXx5WJV5JADk17DUJ4ksgau7utNKj4b963voxs",
|
|
22
|
+
],
|
|
19
23
|
};
|
|
20
24
|
const mainContract = {
|
|
21
25
|
name: "Main",
|
|
@@ -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: "zenrock",
|
|
6
|
+
name: "Zenrock",
|
|
7
|
+
description: "Zenrock is a decentralized custody protocol integrating MPC with blockchain technology, bringing Bitcoin to Solana with zenBTC.",
|
|
8
|
+
links: {
|
|
9
|
+
website: "https://zenrocklabs.io/",
|
|
10
|
+
twitter: "https://x.com/zenrock",
|
|
11
|
+
},
|
|
12
|
+
tags: ["institutional", "bridge"],
|
|
13
|
+
tokens: [
|
|
14
|
+
"9hX59xHHnaZXLU6quvm5uGY2iDiT3jczaReHy6A6TYKw",
|
|
15
|
+
"JDt9rRGaieF6aN1cJkXFeUmsy7ZE4yY3CZb8tVMXVroS",
|
|
16
|
+
],
|
|
17
|
+
};
|
|
18
|
+
exports.services = [];
|