@exodus/solana-api 2.5.15 → 2.5.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "2.5.15",
3
+ "version": "2.5.16",
4
4
  "description": "Exodus internal Solana asset API wrapper",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -31,5 +31,5 @@
31
31
  "url-join": "4.0.0",
32
32
  "wretch": "^1.5.2"
33
33
  },
34
- "gitHead": "c876b2cf6ced1c0f477bd14a0953a79aafc02e09"
34
+ "gitHead": "9ec7084bcdfe14f1c6f11df393351885773046a6"
35
35
  }
@@ -17,6 +17,7 @@ export class SolanaMonitor extends BaseMonitor {
17
17
  this.api = api
18
18
  this.cursors = {}
19
19
  this.assets = {}
20
+ this.staking = DEFAULT_REMOTE_CONFIG.staking
20
21
  this.includeUnparsed = includeUnparsed
21
22
  this.addHook('before-stop', (...args) => this.beforeStop(...args))
22
23
  }