@subwallet/extension-base 0.6.7-0wr → 0.6.7-1wr

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.
@@ -924,6 +924,7 @@ export interface ChainBondingBasics {
924
924
  export interface BasicTxInfo {
925
925
  fee: string;
926
926
  balanceError: boolean;
927
+ rawFee?: number;
927
928
  }
928
929
  export interface BondingSubmitParams {
929
930
  networkKey: string;
@@ -972,6 +973,7 @@ export interface DelegationItem {
972
973
  identity?: string;
973
974
  minBond: string;
974
975
  hasScheduledRequest: boolean;
976
+ icon?: string;
975
977
  }
976
978
  export interface UnlockingStakeInfo {
977
979
  nextWithdrawal: number;
@@ -1091,6 +1093,7 @@ export interface TuringStakeCompoundResp {
1091
1093
  optimalFrequency: string;
1092
1094
  initTime: number;
1093
1095
  compoundFee: string;
1096
+ rawCompoundFee?: number;
1094
1097
  }
1095
1098
  export interface TransakNetwork {
1096
1099
  networks: string[];
@@ -1125,6 +1128,10 @@ export interface RequestInitCronAndSubscription {
1125
1128
  activeServices: CronServiceType[];
1126
1129
  };
1127
1130
  }
1131
+ export interface RequestCronAndSubscriptionAction {
1132
+ subscriptionServices: SubscriptionServiceType[];
1133
+ cronServices: CronServiceType[];
1134
+ }
1128
1135
  export interface ActiveCronAndSubscriptionMap {
1129
1136
  subscription: Record<SubscriptionServiceType, boolean>;
1130
1137
  cron: Record<CronServiceType, boolean>;
@@ -1263,6 +1270,9 @@ export interface KoniRequestSignatures {
1263
1270
  'pri(authorize.subscribe)': [null, AuthUrls, AuthUrls];
1264
1271
  'mobile(cronAndSubscription.init)': [RequestInitCronAndSubscription, ActiveCronAndSubscriptionMap];
1265
1272
  'mobile(cronAndSubscription.activeService.subscribe)': [null, ActiveCronAndSubscriptionMap, ActiveCronAndSubscriptionMap];
1273
+ 'mobile(cronAndSubscription.start)': [RequestCronAndSubscriptionAction[], void];
1274
+ 'mobile(cronAndSubscription.stop)': [RequestCronAndSubscriptionAction[], void];
1275
+ 'mobile(cronAndSubscription.restart)': [RequestCronAndSubscriptionAction[], void];
1266
1276
  'mobile(cron.start)': [CronServiceType[], void];
1267
1277
  'mobile(cron.stop)': [CronServiceType[], void];
1268
1278
  'mobile(cron.restart)': [CronServiceType[], void];
@@ -11,6 +11,6 @@ const packageInfo = {
11
11
  name: '@subwallet/extension-base',
12
12
  path: typeof __dirname === 'string' ? __dirname : 'auto',
13
13
  type: 'cjs',
14
- version: '0.6.7-0'
14
+ version: '0.6.7-1'
15
15
  };
16
16
  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.6.7-0wr",
20
+ "version": "0.6.7-1wr",
21
21
  "main": "./cjs/index.js",
22
22
  "module": "./index.js",
23
23
  "types": "./index.d.ts",
@@ -224,9 +224,9 @@
224
224
  "@polkadot/ui-settings": "^2.9.10",
225
225
  "@polkadot/util": "^10.1.9",
226
226
  "@polkadot/util-crypto": "^10.1.9",
227
- "@subwallet/extension-chains": "^0.6.7-0",
228
- "@subwallet/extension-dapp": "^0.6.7-0",
229
- "@subwallet/extension-inject": "^0.6.7-0",
227
+ "@subwallet/extension-chains": "^0.6.7-1",
228
+ "@subwallet/extension-dapp": "^0.6.7-1",
229
+ "@subwallet/extension-inject": "^0.6.7-1",
230
230
  "ethereumjs-tx": "^2.1.2",
231
231
  "eventemitter3": "^4.0.7",
232
232
  "rlp": "^3.0.0",
package/packageInfo.js CHANGED
@@ -5,5 +5,5 @@ export const packageInfo = {
5
5
  name: '@subwallet/extension-base',
6
6
  path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
7
7
  type: 'esm',
8
- version: '0.6.7-0'
8
+ version: '0.6.7-1'
9
9
  };