@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
@@ -12,6 +12,7 @@ export interface BalanceData {
12
12
  symbol?: string;
13
13
  name?: string;
14
14
  networkId?: string;
15
+ icon?: string;
15
16
  type?: string;
16
17
  isNative?: boolean;
17
18
  decimals?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer-cache",
3
- "version": "1.17.2",
3
+ "version": "1.19.0",
4
4
  "description": "Unified caching system for Pioneer platform with Redis backend",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -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)