@subwallet/extension-base 0.6.7-0 → 0.6.7-1
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 +3 -0
- package/cjs/packageInfo.js +1 -1
- package/package.json +4 -4
- package/packageInfo.js +1 -1
|
@@ -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[];
|
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.6.7-
|
|
20
|
+
"version": "0.6.7-1",
|
|
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-
|
|
228
|
-
"@subwallet/extension-dapp": "^0.6.7-
|
|
229
|
-
"@subwallet/extension-inject": "^0.6.7-
|
|
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-
|
|
8
|
+
version: '0.6.7-1'
|
|
9
9
|
};
|