@pioneer-platform/nodes 8.26.2 → 8.28.0

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
@@ -1,5 +1,17 @@
1
1
  # @pioneer-platform/nodes
2
2
 
3
+ ## 8.28.0
4
+
5
+ ### Minor Changes
6
+
7
+ - chore: feat(pioneer-sdk): Add ERC-20/BEP-20 token table to portfolio dashboard
8
+
9
+ ## 8.27.0
10
+
11
+ ### Minor Changes
12
+
13
+ - feat(pioneer-sdk): Add ERC-20/BEP-20 token table to portfolio dashboard
14
+
3
15
  ## 8.26.2
4
16
 
5
17
  ### Patch Changes
package/lib/seeds.js CHANGED
@@ -139,6 +139,18 @@ exports.blockbooks = [
139
139
  service: "https://bchbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
140
140
  websocket: "wss://bch.nownodes.io/wss"
141
141
  },
142
+ // ============================================================================
143
+ // EVM CHAINS - Transaction history via Blockbook
144
+ // ============================================================================
145
+ {
146
+ symbol: "BASE",
147
+ blockchain: "base",
148
+ caip: "eip155:8453/slip44:60",
149
+ networkId: "eip155:8453",
150
+ type: "blockbook",
151
+ service: "https://base-blockbook.nownodes.io/{API_KEY}",
152
+ websocket: "wss://base-blockbook.nownodes.io/wss"
153
+ },
142
154
  // DISABLED - Returns HTTP 400
143
155
  // {
144
156
  // symbol:"BSV",
@@ -192,8 +204,8 @@ exports.blockbooks = [
192
204
  caip: "eip155:1/slip44:60",
193
205
  networkId: "eip155:1",
194
206
  type: "blockbook",
195
- service: "https://eth-blockbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
196
- websocket: "wss://eth-blockbook.nownodes.io/wss"
207
+ service: "https://eth-blockbook.nownodes.io/{API_KEY}",
208
+ websocket: "wss://eth-blockbook.nownodes.io/wss/{API_KEY}/websocket"
197
209
  },
198
210
  // ============================================================================
199
211
  // ZELCORE NODES REMOVED - All returning HTTP 403 Forbidden
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/nodes",
3
- "version": "8.26.2",
3
+ "version": "8.28.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {