@subwallet/extension-base 0.5.7-0 → 0.5.9-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 +4 -0
- package/cjs/packageInfo.js +1 -1
- package/package.json +4 -4
- package/packageInfo.js +1 -1
|
@@ -1068,6 +1068,10 @@ export interface LedgerNetwork {
|
|
|
1068
1068
|
icon: 'substrate' | 'ethereum';
|
|
1069
1069
|
isDevMode: boolean;
|
|
1070
1070
|
}
|
|
1071
|
+
export interface TransakNetwork {
|
|
1072
|
+
networks: string[];
|
|
1073
|
+
tokens: string[];
|
|
1074
|
+
}
|
|
1071
1075
|
export interface KoniRequestSignatures {
|
|
1072
1076
|
'pri(staking.delegationInfo)': [StakeDelegationRequest, DelegationItem[]];
|
|
1073
1077
|
'pri(staking.submitClaimReward)': [StakeClaimRewardParams, BasicTxResponse, BasicTxResponse];
|
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.5.
|
|
20
|
+
"version": "0.5.9-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.5.
|
|
228
|
-
"@subwallet/extension-dapp": "^0.5.
|
|
229
|
-
"@subwallet/extension-inject": "^0.5.
|
|
227
|
+
"@subwallet/extension-chains": "^0.5.9-0",
|
|
228
|
+
"@subwallet/extension-dapp": "^0.5.9-0",
|
|
229
|
+
"@subwallet/extension-inject": "^0.5.9-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.5.
|
|
8
|
+
version: '0.5.9-0'
|
|
9
9
|
};
|