@pioneer-platform/pioneer-cache 1.1.1 → 1.1.2

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.
@@ -12,6 +12,8 @@ export interface BalanceData {
12
12
  symbol?: string;
13
13
  name?: string;
14
14
  networkId?: string;
15
+ type?: string;
16
+ isNative?: boolean;
15
17
  }
16
18
  /**
17
19
  * BalanceCache - Caches blockchain balance data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer-cache",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
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,8 @@ export interface BalanceData {
55
55
  symbol?: string;
56
56
  name?: string;
57
57
  networkId?: string;
58
+ type?: string; // ✅ PHASE 1: Asset type (native, token, unknown)
59
+ isNative?: boolean; // ✅ PHASE 1: Whether asset is native to chain (backward compat)
58
60
  }
59
61
 
60
62
  /**
@@ -1,2 +0,0 @@
1
-
2
- $ tsc