@jup-ag/platform-list 1.2.41 → 1.2.43
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/README.md +2 -2
- package/dist/platforms/chopcorp.js +1 -1
- package/dist/platforms/coinmarketcap.js +1 -0
- package/dist/platforms/hadeswap.js +1 -1
- package/dist/platforms/jupiter-exchange.js +15 -1
- package/dist/platforms/kamino.js +1 -1
- package/dist/platforms/mooncake.js +1 -0
- package/dist/platforms/okx.js +1 -0
- package/dist/platforms/omni.js +1 -0
- package/dist/platforms/port.js +1 -0
- package/dist/platforms/puffcoin.js +1 -0
- package/dist/platforms/pumpswap.js +1 -0
- package/dist/platforms/raydium.js +1 -0
- package/dist/platforms/realms.js +1 -0
- package/dist/platforms/saber.js +1 -0
- package/dist/platforms/serum.js +1 -0
- package/dist/platforms/yieldfan.js +1 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -42,10 +42,10 @@ We welcome contributions from the community! If you want to add a new platform,
|
|
|
42
42
|
|
|
43
43
|
1. Fork the repository
|
|
44
44
|
2. Create a platform file in `src/platforms/yourplatform.ts`
|
|
45
|
-
3. Add a
|
|
45
|
+
3. Add a 400x400 `.webp` image in `img/yourplatform.webp`
|
|
46
46
|
4. Follow the rules:
|
|
47
47
|
- Platform IDs must be lowercase
|
|
48
|
-
- Images must be `.webp` format,
|
|
48
|
+
- Images must be `.webp` format, 400x400 pixels
|
|
49
49
|
5. Submit a Pull Request
|
|
50
50
|
|
|
51
51
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed instructions and examples.
|
|
@@ -13,7 +13,7 @@ exports.platform = {
|
|
|
13
13
|
twitter: "https://x.com/Chopcorpsol",
|
|
14
14
|
documentation: "https://chopcorp.io/about",
|
|
15
15
|
},
|
|
16
|
-
tokens: ["
|
|
16
|
+
tokens: ["1ogCsoK7ZqZwiYam9i7xq2j6Bf2LizT6iQtGSp6vCoT"],
|
|
17
17
|
};
|
|
18
18
|
const v3Contract = {
|
|
19
19
|
name: "V3",
|
|
@@ -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/hadeswap
|
|
11
|
+
twitter: "https://x.com/hadeswap",
|
|
12
12
|
github: "https://github.com/hadeswap-solana",
|
|
13
13
|
},
|
|
14
14
|
tags: ["dapp", "nft-marketplace"],
|
|
@@ -5,7 +5,7 @@ const types_1 = require("../types");
|
|
|
5
5
|
exports.platform = {
|
|
6
6
|
id: "jupiter-exchange",
|
|
7
7
|
name: "Jupiter",
|
|
8
|
-
description: "Jupiter is a
|
|
8
|
+
description: "Jupiter is building the infrastructure for an open financial future. With over $1 trillion in annual volume, Jupiter delivers a unified superapp experience that is simple to use, built to last, and proven at scale by operating a full-stack onchain product suite spanning self-custody, spot, perpetuals, lend, stake, stablecoin, token creation, prediction markets, developer APIs",
|
|
9
9
|
defiLlamaId: "parent#jupiter",
|
|
10
10
|
links: {
|
|
11
11
|
website: "https://jup.ag/",
|
|
@@ -17,6 +17,7 @@ exports.platform = {
|
|
|
17
17
|
tokens: [
|
|
18
18
|
"27G8MtK7VtTcCHkpASjSDdkWWYfoqT6ggEuKidVJidD4",
|
|
19
19
|
"jupSoLaHXQiZZTSfEWMTRRgpnyFm8f6sZdosWBjx93v",
|
|
20
|
+
"JuprjznTrTSp2UFa3ZBUFgwdAmtZCq4MQCwysN55USD",
|
|
20
21
|
],
|
|
21
22
|
tags: ["dapp"],
|
|
22
23
|
};
|
|
@@ -120,6 +121,11 @@ exports.rewardsHubContract = {
|
|
|
120
121
|
address: "GenieRGuCtgfDGThwjp2GLreQMFtJoG1fqFE8MF1gAzG",
|
|
121
122
|
networkId: types_1.NetworkId.solana,
|
|
122
123
|
};
|
|
124
|
+
const deltaNeutralVaultContract = {
|
|
125
|
+
name: "Delta Neutral Vault",
|
|
126
|
+
address: "BUNDeH5A4c47bcEoAjBhN3sCjLgYnRsmt9ibMztqVkC9",
|
|
127
|
+
networkId: types_1.NetworkId.solana,
|
|
128
|
+
};
|
|
123
129
|
exports.swapV7Service = {
|
|
124
130
|
id: `${exports.platform.id}-swap-v7`,
|
|
125
131
|
name: "Swap v7",
|
|
@@ -284,6 +290,13 @@ exports.rewardsHubService = {
|
|
|
284
290
|
platformId: exports.platform.id,
|
|
285
291
|
contractsRaw: [exports.rewardsHubContract],
|
|
286
292
|
};
|
|
293
|
+
const deltaNeutralVaultService = {
|
|
294
|
+
id: `${exports.platform.id}-delta-neutral-vault`,
|
|
295
|
+
name: "Delta Neutral Vault",
|
|
296
|
+
platformId: exports.platform.id,
|
|
297
|
+
contractsRaw: [deltaNeutralVaultContract],
|
|
298
|
+
description: "Delta Neutral Vaults providing hedged investment strategies to minimize market risk.",
|
|
299
|
+
};
|
|
287
300
|
exports.services = [
|
|
288
301
|
exports.swapV7Service,
|
|
289
302
|
exports.swapV6Service,
|
|
@@ -309,4 +322,5 @@ exports.services = [
|
|
|
309
322
|
exports.inviteService,
|
|
310
323
|
exports.lendService,
|
|
311
324
|
exports.rewardsHubService,
|
|
325
|
+
deltaNeutralVaultService,
|
|
312
326
|
];
|
package/dist/platforms/kamino.js
CHANGED
|
@@ -10,7 +10,7 @@ exports.platform = {
|
|
|
10
10
|
links: {
|
|
11
11
|
website: "https://kamino.finance/",
|
|
12
12
|
discord: "https://discord.com/invite/kaminofinance",
|
|
13
|
-
twitter: "https://x.com/
|
|
13
|
+
twitter: "https://x.com/kamino",
|
|
14
14
|
github: "https://github.com/Kamino-Finance",
|
|
15
15
|
documentation: "https://docs.kamino.finance/",
|
|
16
16
|
},
|
package/dist/platforms/okx.js
CHANGED
|
@@ -8,6 +8,7 @@ exports.platform = {
|
|
|
8
8
|
description: "OKX DEX is a multi-chain aggregator finding optimal trading routes across 400+ DEXs and 30+ networks including Solana.",
|
|
9
9
|
links: {
|
|
10
10
|
website: "https://web3.okx.com/dex-swap/bridge",
|
|
11
|
+
twitter: "https://x.com/wallet",
|
|
11
12
|
},
|
|
12
13
|
tags: ["bridge", "dapp"],
|
|
13
14
|
};
|
package/dist/platforms/omni.js
CHANGED
|
@@ -9,6 +9,7 @@ exports.platform = {
|
|
|
9
9
|
links: {
|
|
10
10
|
documentation: "https://docs.near.org/chain-abstraction/omnibridge/overview",
|
|
11
11
|
website: "https://docs.near.org/chain-abstraction/omnibridge/overview",
|
|
12
|
+
twitter: "https://x.com/nearprotocol",
|
|
12
13
|
},
|
|
13
14
|
tags: ["bridge", "dapp"],
|
|
14
15
|
};
|
package/dist/platforms/port.js
CHANGED
|
@@ -13,6 +13,7 @@ exports.platform = {
|
|
|
13
13
|
telegram: "https://t.me/raydiumprotocol",
|
|
14
14
|
github: "https://github.com/raydium-io",
|
|
15
15
|
documentation: "https://docs.raydium.io/raydium/",
|
|
16
|
+
twitter: "https://x.com/Raydium",
|
|
16
17
|
},
|
|
17
18
|
tokens: ["4k3Dyjzvzp8eMZWUXbBCjEvwSkkk59S5iCNLY3QrkX6R"],
|
|
18
19
|
tags: ["dapp"],
|
package/dist/platforms/realms.js
CHANGED
package/dist/platforms/saber.js
CHANGED
package/dist/platforms/serum.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jup-ag/platform-list",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.43",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"globals": "^16.0.0",
|
|
55
55
|
"jest": "^29.7.0",
|
|
56
56
|
"prettier": "3.5.3",
|
|
57
|
+
"sharp": "^0.34.5",
|
|
57
58
|
"ts-jest": "^29.2.6",
|
|
58
59
|
"ts-node": "^10.9.2",
|
|
59
60
|
"typescript": "^5.8.2",
|