@pioneer-platform/blockbook 8.18.0 → 8.20.1
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 +39 -0
- package/build +22 -0
- package/docs/nodes.md +4075 -0
- package/lib/BlockbookWebSocket.d.ts +43 -0
- package/lib/BlockbookWebSocket.js +407 -0
- package/lib/index.d.ts +10 -0
- package/lib/index.js +199 -55
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @pioneer-platform/blockbook
|
|
2
2
|
|
|
3
|
+
## 8.20.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(pioneer-server): Fix Blockbook WebSocket event system initialization
|
|
8
|
+
|
|
9
|
+
## 8.20.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- chore: Merge pull request #10 from coinmastersguild/feature/fix-blockbook-websocket-subscriptions
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @pioneer-platform/pioneer-caip@9.19.0
|
|
19
|
+
- @pioneer-platform/nodes@8.19.0
|
|
20
|
+
|
|
21
|
+
## 8.19.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- Merge pull request #10 from coinmastersguild/feature/fix-blockbook-websocket-subscriptions
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @pioneer-platform/pioneer-caip@9.18.0
|
|
31
|
+
- @pioneer-platform/nodes@8.18.0
|
|
32
|
+
|
|
33
|
+
## 8.18.1
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- fix: Filter xpubs from Blockbook WebSocket subscriptions
|
|
38
|
+
- Updated dependencies
|
|
39
|
+
- @pioneer-platform/pioneer-caip@9.17.1
|
|
40
|
+
- @pioneer-platform/nodes@8.17.1
|
|
41
|
+
|
|
3
42
|
## 8.18.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
package/build
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Fast Bun build (replaces slow tsc)
|
|
3
|
+
|
|
4
|
+
OUTDIR="${1:-lib}"
|
|
5
|
+
ENTRY="${2:-src/index.ts}"
|
|
6
|
+
|
|
7
|
+
# Clean output
|
|
8
|
+
rm -rf "$OUTDIR"
|
|
9
|
+
mkdir -p "$OUTDIR"
|
|
10
|
+
|
|
11
|
+
# Build with Bun (10x faster than tsc)
|
|
12
|
+
bun build "$ENTRY" \
|
|
13
|
+
--outdir "$OUTDIR" \
|
|
14
|
+
--target node \
|
|
15
|
+
--format cjs \
|
|
16
|
+
--sourcemap \
|
|
17
|
+
--minify
|
|
18
|
+
|
|
19
|
+
# Generate TypeScript declarations
|
|
20
|
+
bunx tsc --emitDeclarationOnly --outDir "$OUTDIR" --project .
|
|
21
|
+
|
|
22
|
+
echo "✅ Built $OUTDIR"
|