@pioneer-platform/pioneer-balance 8.5.0 → 8.7.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/.turbo/turbo-build.log +1 -0
- package/CHANGELOG.md +44 -0
- package/build.sh +22 -0
- package/package.json +13 -13
@@ -0,0 +1 @@
|
|
1
|
+
$ tsc -p .
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,49 @@
|
|
1
1
|
# @pioneer-platform/pioneer-balance
|
2
2
|
|
3
|
+
## 8.7.0
|
4
|
+
|
5
|
+
### Minor Changes
|
6
|
+
|
7
|
+
- Automated minor version bump for all packages
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- Updated dependencies
|
12
|
+
- @pioneer-platform/thor-network@8.7.0
|
13
|
+
- @pioneer-platform/midgard-client@8.7.0
|
14
|
+
- @pioneer-platform/cosmos-network@8.7.0
|
15
|
+
- @pioneer-platform/ripple-network@8.7.0
|
16
|
+
- @pioneer-platform/osmosis-network@8.7.0
|
17
|
+
- @pioneer-platform/utxo-network@8.7.0
|
18
|
+
- @pioneer-platform/maya-network@8.7.0
|
19
|
+
- @pioneer-platform/eth-network@8.9.0
|
20
|
+
- @pioneer-platform/binance-network@8.7.0
|
21
|
+
- @pioneer-platform/loggerdog@8.7.0
|
22
|
+
- @pioneer-platform/pioneer-network@8.7.0
|
23
|
+
- @pioneer-platform/pioneer-caip@9.6.0
|
24
|
+
|
25
|
+
## 8.6.0
|
26
|
+
|
27
|
+
### Minor Changes
|
28
|
+
|
29
|
+
- Automated minor version bump for all packages
|
30
|
+
|
31
|
+
### Patch Changes
|
32
|
+
|
33
|
+
- Updated dependencies
|
34
|
+
- @pioneer-platform/thor-network@8.6.0
|
35
|
+
- @pioneer-platform/midgard-client@8.6.0
|
36
|
+
- @pioneer-platform/cosmos-network@8.6.0
|
37
|
+
- @pioneer-platform/ripple-network@8.6.0
|
38
|
+
- @pioneer-platform/osmosis-network@8.6.0
|
39
|
+
- @pioneer-platform/utxo-network@8.6.0
|
40
|
+
- @pioneer-platform/maya-network@8.6.0
|
41
|
+
- @pioneer-platform/eth-network@8.8.0
|
42
|
+
- @pioneer-platform/binance-network@8.6.0
|
43
|
+
- @pioneer-platform/loggerdog@8.6.0
|
44
|
+
- @pioneer-platform/pioneer-network@8.6.0
|
45
|
+
- @pioneer-platform/pioneer-caip@9.5.0
|
46
|
+
|
3
47
|
## 8.5.0
|
4
48
|
|
5
49
|
### Minor Changes
|
package/build.sh
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"
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@pioneer-platform/pioneer-balance",
|
3
|
-
"version": "8.
|
3
|
+
"version": "8.7.0",
|
4
4
|
"main": "./lib/index.js",
|
5
5
|
"types": "./lib/main.d.ts",
|
6
6
|
"scripts": {
|
@@ -14,18 +14,18 @@
|
|
14
14
|
"refresh": "rm -rf ./node_modules ./package-lock.json && pnpm install"
|
15
15
|
},
|
16
16
|
"dependencies": {
|
17
|
-
"@pioneer-platform/binance-network": "^8.
|
18
|
-
"@pioneer-platform/cosmos-network": "^8.
|
19
|
-
"@pioneer-platform/eth-network": "^8.
|
20
|
-
"@pioneer-platform/loggerdog": "^8.
|
21
|
-
"@pioneer-platform/maya-network": "^8.
|
22
|
-
"@pioneer-platform/midgard-client": "^8.
|
23
|
-
"@pioneer-platform/osmosis-network": "^8.
|
24
|
-
"@pioneer-platform/pioneer-caip": "^9.
|
25
|
-
"@pioneer-platform/pioneer-network": "^8.
|
26
|
-
"@pioneer-platform/ripple-network": "^8.
|
27
|
-
"@pioneer-platform/thor-network": "^8.
|
28
|
-
"@pioneer-platform/utxo-network": "^8.
|
17
|
+
"@pioneer-platform/binance-network": "^8.7.0",
|
18
|
+
"@pioneer-platform/cosmos-network": "^8.7.0",
|
19
|
+
"@pioneer-platform/eth-network": "^8.9.0",
|
20
|
+
"@pioneer-platform/loggerdog": "^8.7.0",
|
21
|
+
"@pioneer-platform/maya-network": "^8.7.0",
|
22
|
+
"@pioneer-platform/midgard-client": "^8.7.0",
|
23
|
+
"@pioneer-platform/osmosis-network": "^8.7.0",
|
24
|
+
"@pioneer-platform/pioneer-caip": "^9.6.0",
|
25
|
+
"@pioneer-platform/pioneer-network": "^8.7.0",
|
26
|
+
"@pioneer-platform/ripple-network": "^8.7.0",
|
27
|
+
"@pioneer-platform/thor-network": "^8.7.0",
|
28
|
+
"@pioneer-platform/utxo-network": "^8.7.0",
|
29
29
|
"@types/node": "^18.15.11",
|
30
30
|
"ethers": "5.7.2",
|
31
31
|
"events": "^3.3.0",
|