@pioneer-platform/pioneer-cache 1.17.2 → 1.19.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,23 @@
|
|
|
1
1
|
# @pioneer-platform/pioneer-cache
|
|
2
2
|
|
|
3
|
+
## 1.19.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- chore: feat(pioneer-sdk): Add transaction history integration
|
|
8
|
+
|
|
9
|
+
## 1.18.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- feat(pioneer-sdk): Add transaction history integration
|
|
14
|
+
|
|
15
|
+
## 1.17.3
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- chore: chore: fix(utxo): calculate change index from used addresses only, not derived addresses
|
|
20
|
+
|
|
3
21
|
## 1.17.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -55,6 +55,7 @@ export interface BalanceData {
|
|
|
55
55
|
symbol?: string;
|
|
56
56
|
name?: string;
|
|
57
57
|
networkId?: string;
|
|
58
|
+
icon?: string; // Asset icon URL
|
|
58
59
|
type?: string; // ✅ PHASE 1: Asset type (native, token, unknown)
|
|
59
60
|
isNative?: boolean; // ✅ PHASE 1: Whether asset is native to chain (backward compat)
|
|
60
61
|
decimals?: number; // Number of decimal places for the asset (e.g., 8 for BTC, 18 for ETH, 6 for ATOM)
|