@subwallet/extension-base 0.6.6-0 → 0.6.7-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.
@@ -367,6 +367,10 @@ export interface TransactionHistoryItemType {
367
367
  origin?: 'app' | 'network';
368
368
  eventIdx?: number | null;
369
369
  }
370
+ export interface TransactionHistoryItemJson {
371
+ items: TransactionHistoryItemType[];
372
+ total: number;
373
+ }
370
374
  export interface RequestTransactionHistoryGet {
371
375
  address: string;
372
376
  networkKey: string;
@@ -1160,7 +1164,7 @@ export interface KoniRequestSignatures {
1160
1164
  'pri(nft.getNft)': [null, NftJson];
1161
1165
  'pri(nft.getSubscription)': [RequestSubscribeNft, NftJson, NftJson];
1162
1166
  'pri(nftCollection.getNftCollection)': [null, NftCollectionJson];
1163
- 'pri(nftCollection.getSubscription)': [null, NftCollectionJson, NftCollectionJson];
1167
+ 'pri(nftCollection.getSubscription)': [null, NftCollection[], NftCollection[]];
1164
1168
  'pri(price.getPrice)': [RequestPrice, PriceJson];
1165
1169
  'pri(price.getSubscription)': [RequestSubscribePrice, PriceJson, PriceJson];
1166
1170
  'pri(balance.getBalance)': [RequestBalance, BalanceJson];
@@ -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.6-0'
14
+ version: '0.6.7-0'
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.6-0",
20
+ "version": "0.6.7-0",
21
21
  "main": "./cjs/index.js",
22
22
  "module": "./index.js",
23
23
  "types": "./index.d.ts",
@@ -212,27 +212,27 @@
212
212
  }
213
213
  },
214
214
  "dependencies": {
215
- "@babel/runtime": "^7.18.6",
215
+ "@babel/runtime": "^7.19.0",
216
216
  "@ethereumjs/common": "^2.6.5",
217
- "@polkadot/api": "^8.11.3",
218
- "@polkadot/keyring": "^9.7.2",
219
- "@polkadot/networks": "^9.7.2",
220
- "@polkadot/phishing": "^0.18.5",
221
- "@polkadot/rpc-provider": "^8.11.3",
222
- "@polkadot/types": "^8.11.3",
223
- "@polkadot/ui-keyring": "^2.7.2",
224
- "@polkadot/ui-settings": "^2.7.2",
225
- "@polkadot/util": "^9.7.2",
226
- "@polkadot/util-crypto": "^9.7.2",
227
- "@subwallet/extension-chains": "^0.6.6-0",
228
- "@subwallet/extension-dapp": "^0.6.6-0",
229
- "@subwallet/extension-inject": "^0.6.6-0",
217
+ "@polkadot/api": "^9.4.3",
218
+ "@polkadot/keyring": "^10.1.9",
219
+ "@polkadot/networks": "^10.1.9",
220
+ "@polkadot/phishing": "^0.18.9",
221
+ "@polkadot/rpc-provider": "^9.4.3",
222
+ "@polkadot/types": "^9.4.3",
223
+ "@polkadot/ui-keyring": "^2.9.10",
224
+ "@polkadot/ui-settings": "^2.9.10",
225
+ "@polkadot/util": "^10.1.9",
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",
230
230
  "ethereumjs-tx": "^2.1.2",
231
231
  "eventemitter3": "^4.0.7",
232
232
  "rlp": "^3.0.0",
233
- "rxjs": "^7.5.5",
234
- "web3": "^1.7.4",
235
- "web3-core": "^1.7.4",
236
- "web3-core-helpers": "^1.7.4"
233
+ "rxjs": "^7.5.7",
234
+ "web3": "^1.8.0",
235
+ "web3-core": "^1.8.0",
236
+ "web3-core-helpers": "^1.8.0"
237
237
  }
238
238
  }
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.6-0'
8
+ version: '0.6.7-0'
9
9
  };