@subwallet/extension-base 0.7.4-0 → 0.7.6-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.
@@ -114,7 +114,8 @@ export interface StakingJson {
114
114
  }
115
115
  export interface StakingRewardJson {
116
116
  ready: boolean;
117
- details: Array<StakingRewardItem>;
117
+ slowInterval: Array<StakingRewardItem>;
118
+ fastInterval: Array<StakingRewardItem>;
118
119
  }
119
120
  export interface StakeUnlockingJson {
120
121
  timestamp: number;
@@ -279,7 +280,7 @@ export interface NetworkJson {
279
280
  icon?: string;
280
281
  active: boolean;
281
282
  providers: Record<string, string>;
282
- currentProvider: string;
283
+ currentProvider: string | null;
283
284
  currentProviderMode: 'http' | 'ws';
284
285
  customProviders?: Record<string, string>;
285
286
  nftProvider?: string;
@@ -383,7 +384,7 @@ export interface RandomTestRequest {
383
384
  end: number;
384
385
  }
385
386
  export interface TransactionHistoryItemType {
386
- time: number;
387
+ time: number | string;
387
388
  networkKey: string;
388
389
  change: string;
389
390
  changeSymbol?: string;
@@ -13,6 +13,6 @@ const packageInfo = {
13
13
  name: '@subwallet/extension-base',
14
14
  path: typeof __dirname === 'string' ? __dirname : 'auto',
15
15
  type: 'cjs',
16
- version: '0.7.4-0'
16
+ version: '0.7.6-0'
17
17
  };
18
18
  exports.packageInfo = packageInfo;
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "./cjs/detectPackage.js"
18
18
  ],
19
19
  "type": "module",
20
- "version": "0.7.4-0",
20
+ "version": "0.7.6-0",
21
21
  "main": "./cjs/index.js",
22
22
  "module": "./index.js",
23
23
  "types": "./index.d.ts",
@@ -229,9 +229,9 @@
229
229
  "@polkadot/ui-settings": "^2.9.13",
230
230
  "@polkadot/util": "^10.1.13",
231
231
  "@polkadot/util-crypto": "^10.1.13",
232
- "@subwallet/extension-chains": "^0.7.4-0",
233
- "@subwallet/extension-dapp": "^0.7.4-0",
234
- "@subwallet/extension-inject": "^0.7.4-0",
232
+ "@subwallet/extension-chains": "^0.7.6-0",
233
+ "@subwallet/extension-dapp": "^0.7.6-0",
234
+ "@subwallet/extension-inject": "^0.7.6-0",
235
235
  "ethereumjs-tx": "^2.1.2",
236
236
  "eventemitter3": "^4.0.7",
237
237
  "rlp": "^3.0.0",
package/packageInfo.js CHANGED
@@ -7,5 +7,5 @@ export const packageInfo = {
7
7
  name: '@subwallet/extension-base',
8
8
  path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
9
9
  type: 'esm',
10
- version: '0.7.4-0'
10
+ version: '0.7.6-0'
11
11
  };