@exodus/solana-api 3.11.3 → 3.11.4

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,15 @@
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.11.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.11.3...@exodus/solana-api@3.11.4) (2024-10-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * solana monitor tokenAssetType ([#4349](https://github.com/ExodusMovement/assets/issues/4349)) ([e69b4f8](https://github.com/ExodusMovement/assets/commit/e69b4f81e0e6950f512de93effce7da6974bd94a))
12
+
13
+
14
+
6
15
  ## [3.11.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.11.2...@exodus/solana-api@3.11.3) (2024-10-23)
7
16
 
8
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "3.11.3",
3
+ "version": "3.11.4",
4
4
  "description": "Exodus internal Solana asset API wrapper",
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": "f40ca3367fd84bc4c899c2dfea76004547fb111d",
50
+ "gitHead": "55c9603915258ecf69934fcb3a4dcd910c7f4758",
51
51
  "bugs": {
52
52
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Asolana-api"
53
53
  },
package/src/api.js CHANGED
@@ -34,10 +34,10 @@ const FORCE_HTTP = true // use https over ws
34
34
  // Tokens + SOL api support
35
35
  export class Api {
36
36
  constructor({ rpcUrl, wsUrl, assets, txsLimit, tokenAssetType = 'SOLANA_TOKEN' }) {
37
+ this.tokenAssetType = tokenAssetType
37
38
  this.setServer(rpcUrl)
38
39
  this.setWsEndpoint(wsUrl)
39
40
  this.setTokens(assets)
40
- this.tokenAssetType = tokenAssetType
41
41
  this.tokensToSkip = {}
42
42
  this.txsLimit = txsLimit
43
43
  this.connections = {}