@subwallet/extension-inject 1.2.32-0 → 1.3.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/cjs/packageInfo.js +1 -1
- package/package.json +2 -1
- package/packageInfo.js +1 -1
- package/types.d.ts +1 -1
package/cjs/packageInfo.js
CHANGED
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"sideEffects": true,
|
|
16
16
|
"type": "module",
|
|
17
|
-
"version": "1.
|
|
17
|
+
"version": "1.3.1",
|
|
18
18
|
"main": "./cjs/index.js",
|
|
19
19
|
"module": "./index.js",
|
|
20
20
|
"types": "./index.d.ts",
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
"@polkadot/util": "^12.6.2",
|
|
76
76
|
"@polkadot/util-crypto": "^12.6.2",
|
|
77
77
|
"@polkadot/x-global": "^12.2.1",
|
|
78
|
+
"@subwallet/keyring": "^0.1.8-beta.0",
|
|
78
79
|
"web3-core": "^1.10.0"
|
|
79
80
|
},
|
|
80
81
|
"peerDependencies": {
|
package/packageInfo.js
CHANGED
|
@@ -7,5 +7,5 @@ export const packageInfo = {
|
|
|
7
7
|
name: '@subwallet/extension-inject',
|
|
8
8
|
path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
|
|
9
9
|
type: 'esm',
|
|
10
|
-
version: '1.
|
|
10
|
+
version: '1.3.1'
|
|
11
11
|
};
|
package/types.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
import type { KeypairType } from '@subwallet/keyring/types';
|
|
1
2
|
import type { Signer as InjectedSigner } from '@polkadot/api/types';
|
|
2
3
|
import type { ProviderInterface } from '@polkadot/rpc-provider/types';
|
|
3
4
|
import type { ExtDef } from '@polkadot/types/extrinsic/signedExtensions/types';
|
|
4
|
-
import type { KeypairType } from '@polkadot/util-crypto/types';
|
|
5
5
|
declare type This = typeof globalThis;
|
|
6
6
|
export declare type Unsubcall = () => void;
|
|
7
7
|
export interface InjectedAccount {
|