@jup-ag/platform-list 1.2.76 → 1.2.81

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.
Files changed (80) hide show
  1. package/dist/platforms/anchorage.d.ts +3 -0
  2. package/dist/platforms/anchorage.js +14 -0
  3. package/dist/platforms/apollo.d.ts +3 -0
  4. package/dist/platforms/apollo.js +14 -0
  5. package/dist/platforms/arcium.d.ts +5 -0
  6. package/dist/platforms/arcium.js +31 -0
  7. package/dist/platforms/blackrock.d.ts +3 -0
  8. package/dist/platforms/blackrock.js +14 -0
  9. package/dist/platforms/brale.d.ts +3 -0
  10. package/dist/platforms/brale.js +15 -0
  11. package/dist/platforms/bridge.d.ts +3 -0
  12. package/dist/platforms/bridge.js +14 -0
  13. package/dist/platforms/burnandclaim.d.ts +5 -0
  14. package/dist/platforms/burnandclaim.js +27 -0
  15. package/dist/platforms/cashcity.js +1 -0
  16. package/dist/platforms/coinflow.d.ts +3 -0
  17. package/dist/platforms/coinflow.js +14 -0
  18. package/dist/platforms/collectorcrypt.js +1 -1
  19. package/dist/platforms/crossmint.d.ts +3 -0
  20. package/dist/platforms/crossmint.js +16 -0
  21. package/dist/platforms/dynamic.d.ts +3 -0
  22. package/dist/platforms/dynamic.js +16 -0
  23. package/dist/platforms/fireblocks.d.ts +3 -0
  24. package/dist/platforms/fireblocks.js +14 -0
  25. package/dist/platforms/fiserv.d.ts +3 -0
  26. package/dist/platforms/fiserv.js +14 -0
  27. package/dist/platforms/gemini.d.ts +3 -0
  28. package/dist/platforms/gemini.js +14 -0
  29. package/dist/platforms/glow-wallet.d.ts +3 -0
  30. package/dist/platforms/glow-wallet.js +16 -0
  31. package/dist/platforms/hadeswap.js +1 -1
  32. package/dist/platforms/hamiltonlane.d.ts +3 -0
  33. package/dist/platforms/hamiltonlane.js +14 -0
  34. package/dist/platforms/index.js +108 -0
  35. package/dist/platforms/m0.d.ts +4 -0
  36. package/dist/platforms/m0.js +38 -0
  37. package/dist/platforms/magiceden-wallet.d.ts +3 -0
  38. package/dist/platforms/magiceden-wallet.js +19 -0
  39. package/dist/platforms/moonpay.d.ts +3 -0
  40. package/dist/platforms/moonpay.js +15 -0
  41. package/dist/platforms/noah.d.ts +3 -0
  42. package/dist/platforms/noah.js +14 -0
  43. package/dist/platforms/omnipair.d.ts +4 -0
  44. package/dist/platforms/omnipair.js +31 -0
  45. package/dist/platforms/paypal.d.ts +3 -0
  46. package/dist/platforms/paypal.js +15 -0
  47. package/dist/platforms/privy.d.ts +3 -0
  48. package/dist/platforms/privy.js +16 -0
  49. package/dist/platforms/reap.d.ts +3 -0
  50. package/dist/platforms/reap.js +14 -0
  51. package/dist/platforms/reflex.d.ts +4 -0
  52. package/dist/platforms/reflex.js +31 -0
  53. package/dist/platforms/slope.d.ts +3 -0
  54. package/dist/platforms/slope.js +16 -0
  55. package/dist/platforms/smithii.js +1 -0
  56. package/dist/platforms/sofi.d.ts +3 -0
  57. package/dist/platforms/sofi.js +14 -0
  58. package/dist/platforms/sollet.d.ts +3 -0
  59. package/dist/platforms/sollet.js +15 -0
  60. package/dist/platforms/sphere.d.ts +3 -0
  61. package/dist/platforms/sphere.js +14 -0
  62. package/dist/platforms/stripe.d.ts +3 -0
  63. package/dist/platforms/stripe.js +14 -0
  64. package/dist/platforms/tala.d.ts +3 -0
  65. package/dist/platforms/tala.js +14 -0
  66. package/dist/platforms/unclaimedsol.d.ts +1 -0
  67. package/dist/platforms/unclaimedsol.js +15 -3
  68. package/dist/platforms/visa.d.ts +3 -0
  69. package/dist/platforms/visa.js +14 -0
  70. package/dist/platforms/westernunion.d.ts +3 -0
  71. package/dist/platforms/westernunion.js +14 -0
  72. package/dist/platforms/worldpay.d.ts +3 -0
  73. package/dist/platforms/worldpay.js +14 -0
  74. package/dist/platforms/wzrd.d.ts +6 -0
  75. package/dist/platforms/wzrd.js +41 -0
  76. package/dist/platforms/zepz.d.ts +3 -0
  77. package/dist/platforms/zepz.js +13 -0
  78. package/dist/platforms/zora.d.ts +3 -0
  79. package/dist/platforms/zora.js +18 -0
  80. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "anchorage",
6
+ name: "Anchorage Digital",
7
+ description: "Federally chartered digital asset bank providing institutional custody, staking, and lending services on Solana.",
8
+ links: {
9
+ website: "https://www.anchorage.com",
10
+ twitter: "https://x.com/Anchorage",
11
+ },
12
+ tags: ["institutional", "infrastructure"],
13
+ };
14
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "apollo",
6
+ name: "Apollo",
7
+ description: "Global alternative investment manager offering the ACRED tokenized credit fund on Solana.",
8
+ links: {
9
+ website: "https://www.apollo.com",
10
+ twitter: "https://x.com/apolloglobal",
11
+ },
12
+ tags: ["institutional", "rwa"],
13
+ };
14
+ exports.services = [];
@@ -0,0 +1,5 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const mxeService: ServiceRaw;
4
+ export declare const services: ServiceRaw[];
5
+ export default services;
@@ -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,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "blackrock",
6
+ name: "BlackRock",
7
+ description: "Global asset management firm offering the BUIDL tokenized money market fund on Solana.",
8
+ links: {
9
+ website: "https://www.blackrock.com",
10
+ twitter: "https://x.com/BlackRock",
11
+ },
12
+ tags: ["institutional", "rwa"],
13
+ };
14
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -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: "brale",
6
+ name: "Brale",
7
+ description: "Regulated stablecoin-as-a-service platform enabling businesses to issue and manage fiat-backed stablecoins on Solana.",
8
+ links: {
9
+ website: "https://brale.xyz",
10
+ twitter: "https://x.com/brale_xyz",
11
+ documentation: "https://docs.brale.xyz",
12
+ },
13
+ tags: ["infrastructure", "stablecoin"],
14
+ };
15
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "bridge",
6
+ name: "Bridge",
7
+ description: "Stablecoin infrastructure platform providing APIs for businesses to orchestrate stablecoin payments on Solana.",
8
+ links: {
9
+ website: "https://www.bridge.xyz",
10
+ twitter: "https://x.com/Stablecoin",
11
+ },
12
+ tags: ["infrastructure", "payments", "stablecoin"],
13
+ };
14
+ exports.services = [];
@@ -0,0 +1,5 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const cleanupService: ServiceRaw;
4
+ export declare const services: ServiceRaw[];
5
+ export default 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;
@@ -13,6 +13,7 @@ exports.platform = {
13
13
  },
14
14
  tags: ["gaming"],
15
15
  tokens: ["9QYybdHqCWB53h3bpJ6DY2ojgXavQKKe2yZR66xzDAKh"],
16
+ addedAt: 1771499370000,
16
17
  };
17
18
  const contract = {
18
19
  name: "Game",
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "coinflow",
6
+ name: "Coinflow",
7
+ description: "Payment infrastructure enabling businesses to accept fiat and crypto payments with instant USDC settlement on Solana.",
8
+ links: {
9
+ website: "https://coinflow.cash/",
10
+ twitter: "https://x.com/CoinflowLabs",
11
+ },
12
+ tags: ["dapp", "payments", "infrastructure"],
13
+ };
14
+ 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 = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "crossmint",
6
+ name: "Crossmint",
7
+ description: "Web3 infrastructure platform providing wallet-as-a-service, NFT minting APIs, and stablecoin payment tools on Solana.",
8
+ links: {
9
+ website: "https://www.crossmint.com",
10
+ twitter: "https://x.com/crossmint",
11
+ github: "https://github.com/Crossmint",
12
+ documentation: "https://docs.crossmint.com",
13
+ },
14
+ tags: ["tool", "infrastructure", "nft"],
15
+ };
16
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "dynamic",
6
+ name: "Dynamic",
7
+ description: "Wallet infrastructure and authentication platform supporting multi-chain login and embedded Solana wallets.",
8
+ links: {
9
+ website: "https://www.dynamic.xyz",
10
+ twitter: "https://x.com/dynamic_xyz",
11
+ github: "https://github.com/dynamic-labs",
12
+ documentation: "https://www.dynamic.xyz/docs",
13
+ },
14
+ tags: ["tool", "infrastructure"],
15
+ };
16
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "fireblocks",
6
+ name: "Fireblocks",
7
+ description: "Institutional digital asset custody and operations platform with deep Solana integration for treasury management and tokenization.",
8
+ links: {
9
+ website: "https://www.fireblocks.com",
10
+ twitter: "https://x.com/FireblocksHQ",
11
+ },
12
+ tags: ["institutional", "infrastructure"],
13
+ };
14
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "fiserv",
6
+ name: "Fiserv",
7
+ description: "Financial technology provider building the FIUSD stablecoin platform on Solana for its network of financial institutions.",
8
+ links: {
9
+ website: "https://www.fiserv.com",
10
+ twitter: "https://x.com/Fiserv",
11
+ },
12
+ tags: ["institutional", "payments", "stablecoin"],
13
+ };
14
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "gemini",
6
+ name: "Gemini",
7
+ description: "Cryptocurrency exchange and custodian operating a Solana validator and providing SOL staking and ETF custody services.",
8
+ links: {
9
+ website: "https://www.gemini.com",
10
+ twitter: "https://x.com/Gemini",
11
+ },
12
+ tags: ["cex", "institutional"],
13
+ };
14
+ exports.services = [];
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "glow-wallet",
6
+ name: "Glow Wallet",
7
+ description: "A non-custodial Solana wallet available as a browser extension and mobile app.",
8
+ links: {
9
+ website: "https://glow.app/",
10
+ twitter: "https://x.com/glowwallet",
11
+ github: "https://github.com/glow-xyz",
12
+ },
13
+ tags: ["wallet"],
14
+ isDeprecated: true,
15
+ };
16
+ 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/hadeswap",
11
+ twitter: "https://x.com/SwapHades",
12
12
  github: "https://github.com/hadeswap-solana",
13
13
  },
14
14
  tags: ["dapp", "nft-marketplace"],
@@ -0,0 +1,3 @@
1
+ import { PlatformRaw, ServiceRaw } from "../types";
2
+ export declare const platform: PlatformRaw;
3
+ export declare const services: ServiceRaw[];
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.services = exports.platform = void 0;
4
+ exports.platform = {
5
+ id: "hamiltonlane",
6
+ name: "Hamilton Lane",
7
+ description: "Private markets investment firm that launched the first institutional-grade tokenized fund on Solana.",
8
+ links: {
9
+ website: "https://www.hamiltonlane.com",
10
+ twitter: "https://x.com/hamilton_lane",
11
+ },
12
+ tags: ["institutional", "rwa"],
13
+ };
14
+ exports.services = [];