@subwallet/extension-base 0.5.10-0 → 0.6.3-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/background/KoniTypes.d.ts +2 -0
- package/cjs/packageInfo.js +1 -1
- package/package.json +4 -4
- package/packageInfo.js +1 -1
|
@@ -140,6 +140,7 @@ export interface NftItem {
|
|
|
140
140
|
properties?: Record<any, any> | null;
|
|
141
141
|
chain?: string;
|
|
142
142
|
rmrk_ver?: RMRK_VER;
|
|
143
|
+
owner?: string;
|
|
143
144
|
}
|
|
144
145
|
export interface NftCollection {
|
|
145
146
|
collectionId: string;
|
|
@@ -1093,6 +1094,7 @@ export interface KoniRequestSignatures {
|
|
|
1093
1094
|
'pri(networkMap.resetDefault)': [null, boolean];
|
|
1094
1095
|
'pri(apiMap.validate)': [ValidateNetworkRequest, ValidateNetworkResponse];
|
|
1095
1096
|
'pri(networkMap.enableMany)': [string[], boolean];
|
|
1097
|
+
'pri(networkMap.disableMany)': [string[], boolean];
|
|
1096
1098
|
'pri(networkMap.enableOne)': [string, boolean];
|
|
1097
1099
|
'pri(networkMap.disableOne)': [string, DisableNetworkResponse];
|
|
1098
1100
|
'pri(networkMap.removeOne)': [string, boolean];
|
package/cjs/packageInfo.js
CHANGED
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"./cjs/detectPackage.js"
|
|
18
18
|
],
|
|
19
19
|
"type": "module",
|
|
20
|
-
"version": "0.
|
|
20
|
+
"version": "0.6.3-0",
|
|
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.7.2",
|
|
225
225
|
"@polkadot/util": "^9.7.2",
|
|
226
226
|
"@polkadot/util-crypto": "^9.7.2",
|
|
227
|
-
"@subwallet/extension-chains": "^0.
|
|
228
|
-
"@subwallet/extension-dapp": "^0.
|
|
229
|
-
"@subwallet/extension-inject": "^0.
|
|
227
|
+
"@subwallet/extension-chains": "^0.6.3-0",
|
|
228
|
+
"@subwallet/extension-dapp": "^0.6.3-0",
|
|
229
|
+
"@subwallet/extension-inject": "^0.6.3-0",
|
|
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.
|
|
8
|
+
version: '0.6.3-0'
|
|
9
9
|
};
|