@exodus/solana-api 3.20.9 → 3.20.10

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/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.20.10](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.20.8...@exodus/solana-api@3.20.10) (2025-10-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: point SOL clarity to prod (#6672)
13
+
14
+
15
+
6
16
  ## [3.20.9](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.20.8...@exodus/solana-api@3.20.9) (2025-10-09)
7
17
 
8
18
  **Note:** Version bump only for package @exodus/solana-api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "3.20.9",
3
+ "version": "3.20.10",
4
4
  "description": "Transaction monitors, fee monitors, RPC with the blockchain node, and other networking code for Solana",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -47,7 +47,7 @@
47
47
  "@exodus/assets-testing": "^1.0.0",
48
48
  "@exodus/solana-web3.js": "^1.63.1-exodus.9-rc3"
49
49
  },
50
- "gitHead": "6237b0d98791ed9e6290260947068d2600bf8270",
50
+ "gitHead": "b0f1b6b69b7a6f7e70eee7e03db7bf71ba6be92a",
51
51
  "bugs": {
52
52
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Asolana-api"
53
53
  },
@@ -7,7 +7,7 @@ import urljoin from 'url-join'
7
7
 
8
8
  import { RpcApi } from './rpc-api.js'
9
9
 
10
- const CLARITY_URL = 'https://solana-clarity-d.a.exodus.io/api/v2/solana'
10
+ const CLARITY_URL = 'https://solana-clarity.a.exodus.io/api/v2/solana'
11
11
 
12
12
  const cleanQuery = (obj) => omitBy(obj, (v) => v === undefined)
13
13
 
package/src/rpc-api.js CHANGED
@@ -25,7 +25,7 @@ const [SYSTEM_PROGRAM_ID, TOKEN_PROGRAM_ID, TOKEN_2022_PROGRAM_ID] = [
25
25
  ]
26
26
  const createApi = createApiCJS.default || createApiCJS
27
27
 
28
- const RPC_URL = 'https://solana-clarity-d.a.exodus.io/api/v2/solana/rpc' // Clarity proxied
28
+ const RPC_URL = 'https://solana-clarity.a.exodus.io/api/v2/solana/rpc' // Clarity proxied
29
29
 
30
30
  // Doc: https://docs.solana.com/apps/jsonrpc-api
31
31