@metamask-previews/keyring-internal-api 1.0.0-fb72e65 → 2.0.0-3847d8e
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/CHANGELOG.md +17 -1
- package/dist/types.d.cts +10 -0
- package/dist/types.d.cts.map +1 -1
- package/dist/types.d.mts +10 -0
- package/dist/types.d.mts.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.0]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **BREAKING:** Bump `@metamask/keyring-api` from `^12.0.0` to `^13.0.0` ([#101](https://github.com/MetaMask/accounts/pull/101))
|
|
15
|
+
- This change was not properly reported as breaking on the `1.1.0`.
|
|
16
|
+
- `InternalAccount` extends `KeyringAccount` which has a new required field (`scopes`) and is part of the public API.
|
|
17
|
+
|
|
18
|
+
## [1.1.0]
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Bump `@metamask/keyring-api` from `^12.0.0` to `^13.0.0` ([#101](https://github.com/MetaMask/accounts/pull/101))
|
|
23
|
+
|
|
10
24
|
## [1.0.0]
|
|
11
25
|
|
|
12
26
|
### Added
|
|
@@ -15,5 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
15
29
|
- This new version fixes a bug with CJS re-exports.
|
|
16
30
|
- Initial release ([#24](https://github.com/MetaMask/accounts/pull/24))
|
|
17
31
|
|
|
18
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@
|
|
32
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@2.0.0...HEAD
|
|
33
|
+
[2.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@1.1.0...@metamask/keyring-internal-api@2.0.0
|
|
34
|
+
[1.1.0]: https://github.com/MetaMask/accounts/compare/@metamask/keyring-internal-api@1.0.0...@metamask/keyring-internal-api@1.1.0
|
|
19
35
|
[1.0.0]: https://github.com/MetaMask/accounts/releases/tag/@metamask/keyring-internal-api@1.0.0
|
package/dist/types.d.cts
CHANGED
|
@@ -70,6 +70,7 @@ export declare const InternalEthEoaAccountStruct: Struct<{
|
|
|
70
70
|
lastSelected?: number;
|
|
71
71
|
};
|
|
72
72
|
address: string;
|
|
73
|
+
scopes: import("@metamask/keyring-api").EthScopes.Namespace[];
|
|
73
74
|
methods: ("personal_sign" | "eth_sign" | "eth_signTransaction" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4")[];
|
|
74
75
|
}, {
|
|
75
76
|
metadata: Struct<{
|
|
@@ -107,6 +108,7 @@ export declare const InternalEthEoaAccountStruct: Struct<{
|
|
|
107
108
|
}>;
|
|
108
109
|
address: import("@metamask/superstruct").Struct<string, null>;
|
|
109
110
|
type: import("@metamask/superstruct").Struct<"eip155:eoa", "eip155:eoa">;
|
|
111
|
+
scopes: import("@metamask/superstruct").Struct<import("@metamask/keyring-api").EthScopes.Namespace[], import("@metamask/superstruct").Struct<import("@metamask/keyring-api").EthScopes.Namespace, import("@metamask/keyring-api").EthScopes.Namespace>>;
|
|
110
112
|
methods: import("@metamask/superstruct").Struct<("personal_sign" | "eth_sign" | "eth_signTransaction" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4")[], import("@metamask/superstruct").Struct<"personal_sign" | "eth_sign" | "eth_signTransaction" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4", {
|
|
111
113
|
personal_sign: "personal_sign";
|
|
112
114
|
eth_sign: "eth_sign";
|
|
@@ -137,6 +139,7 @@ export declare const InternalEthErc4337AccountStruct: Struct<{
|
|
|
137
139
|
lastSelected?: number;
|
|
138
140
|
};
|
|
139
141
|
address: string;
|
|
142
|
+
scopes: string[];
|
|
140
143
|
methods: ("personal_sign" | "eth_sign" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4" | "eth_prepareUserOperation" | "eth_patchUserOperation" | "eth_signUserOperation")[];
|
|
141
144
|
}, {
|
|
142
145
|
metadata: Struct<{
|
|
@@ -185,6 +188,7 @@ export declare const InternalEthErc4337AccountStruct: Struct<{
|
|
|
185
188
|
eth_signUserOperation: "eth_signUserOperation";
|
|
186
189
|
}>>;
|
|
187
190
|
id: import("@metamask/superstruct").Struct<string, null>;
|
|
191
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
188
192
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
189
193
|
}>;
|
|
190
194
|
export declare const InternalBtcP2wpkhAccountStruct: Struct<{
|
|
@@ -206,6 +210,7 @@ export declare const InternalBtcP2wpkhAccountStruct: Struct<{
|
|
|
206
210
|
lastSelected?: number;
|
|
207
211
|
};
|
|
208
212
|
address: string;
|
|
213
|
+
scopes: string[];
|
|
209
214
|
methods: "sendBitcoin"[];
|
|
210
215
|
}, {
|
|
211
216
|
metadata: Struct<{
|
|
@@ -247,6 +252,7 @@ export declare const InternalBtcP2wpkhAccountStruct: Struct<{
|
|
|
247
252
|
sendBitcoin: "sendBitcoin";
|
|
248
253
|
}>>;
|
|
249
254
|
id: import("@metamask/superstruct").Struct<string, null>;
|
|
255
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
250
256
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
251
257
|
}>;
|
|
252
258
|
export declare const InternalSolDataAccountStruct: Struct<{
|
|
@@ -268,6 +274,7 @@ export declare const InternalSolDataAccountStruct: Struct<{
|
|
|
268
274
|
lastSelected?: number;
|
|
269
275
|
};
|
|
270
276
|
address: string;
|
|
277
|
+
scopes: string[];
|
|
271
278
|
methods: "sendAndConfirmTransaction"[];
|
|
272
279
|
}, {
|
|
273
280
|
metadata: Struct<{
|
|
@@ -309,6 +316,7 @@ export declare const InternalSolDataAccountStruct: Struct<{
|
|
|
309
316
|
sendAndConfirmTransaction: "sendAndConfirmTransaction";
|
|
310
317
|
}>>;
|
|
311
318
|
id: import("@metamask/superstruct").Struct<string, null>;
|
|
319
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
312
320
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
313
321
|
}>;
|
|
314
322
|
export type InternalEthEoaAccount = Infer<typeof InternalEthEoaAccountStruct>;
|
|
@@ -336,6 +344,7 @@ export declare const InternalAccountStruct: Struct<{
|
|
|
336
344
|
lastSelected?: number;
|
|
337
345
|
};
|
|
338
346
|
address: string;
|
|
347
|
+
scopes: string[];
|
|
339
348
|
methods: string[];
|
|
340
349
|
}, {
|
|
341
350
|
metadata: Struct<{
|
|
@@ -379,6 +388,7 @@ export declare const InternalAccountStruct: Struct<{
|
|
|
379
388
|
"solana:data-account": "solana:data-account";
|
|
380
389
|
}>;
|
|
381
390
|
address: import("@metamask/superstruct").Struct<string, null>;
|
|
391
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
382
392
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
383
393
|
methods: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
384
394
|
}>;
|
package/dist/types.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.cts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAKA,OAAO,EACL,cAAc,EACd,cAAc,EAEd,cAAc,EAKf,8BAA8B;AAE/B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,8BAA8B;AAG3D,MAAM,MAAM,mBAAmB,GAC3B,cAAc,GACd,cAAc,GACd,cAAc,CAAC;AAEnB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBxC,CAAC;AAEH,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"types.d.cts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAKA,OAAO,EACL,cAAc,EACd,cAAc,EAEd,cAAc,EAKf,8BAA8B;AAE/B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,8BAA8B;AAG3D,MAAM,MAAM,mBAAmB,GAC3B,cAAc,GACd,cAAc,GACd,cAAc,CAAC;AAEnB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBxC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGtC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG1C,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGzC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAE9E,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAC3C,OAAO,+BAA+B,CACvC,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,KAAK,CAC1C,OAAO,8BAA8B,CACtC,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAEhF,eAAO,MAAM,sBAAsB,EAAE,MAAM,CACzC,MAAM,EACJ,MAAM,CAAC,qBAAqB,CAAC,GAC7B,MAAM,CAAC,yBAAyB,CAAC,GACjC,MAAM,CAAC,wBAAwB,CAAC,GAChC,MAAM,CAAC,sBAAsB,CAAC,CAMjC,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAC5B,qBAAqB,GACrB,yBAAyB,GACzB,wBAAwB,GACxB,sBAAsB,CAAC;AAE3B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGhC,CAAC;AAEH;;;;;GAKG;AACH,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
package/dist/types.d.mts
CHANGED
|
@@ -70,6 +70,7 @@ export declare const InternalEthEoaAccountStruct: Struct<{
|
|
|
70
70
|
lastSelected?: number;
|
|
71
71
|
};
|
|
72
72
|
address: string;
|
|
73
|
+
scopes: import("@metamask/keyring-api").EthScopes.Namespace[];
|
|
73
74
|
methods: ("personal_sign" | "eth_sign" | "eth_signTransaction" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4")[];
|
|
74
75
|
}, {
|
|
75
76
|
metadata: Struct<{
|
|
@@ -107,6 +108,7 @@ export declare const InternalEthEoaAccountStruct: Struct<{
|
|
|
107
108
|
}>;
|
|
108
109
|
address: import("@metamask/superstruct").Struct<string, null>;
|
|
109
110
|
type: import("@metamask/superstruct").Struct<"eip155:eoa", "eip155:eoa">;
|
|
111
|
+
scopes: import("@metamask/superstruct").Struct<import("@metamask/keyring-api").EthScopes.Namespace[], import("@metamask/superstruct").Struct<import("@metamask/keyring-api").EthScopes.Namespace, import("@metamask/keyring-api").EthScopes.Namespace>>;
|
|
110
112
|
methods: import("@metamask/superstruct").Struct<("personal_sign" | "eth_sign" | "eth_signTransaction" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4")[], import("@metamask/superstruct").Struct<"personal_sign" | "eth_sign" | "eth_signTransaction" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4", {
|
|
111
113
|
personal_sign: "personal_sign";
|
|
112
114
|
eth_sign: "eth_sign";
|
|
@@ -137,6 +139,7 @@ export declare const InternalEthErc4337AccountStruct: Struct<{
|
|
|
137
139
|
lastSelected?: number;
|
|
138
140
|
};
|
|
139
141
|
address: string;
|
|
142
|
+
scopes: string[];
|
|
140
143
|
methods: ("personal_sign" | "eth_sign" | "eth_signTypedData_v1" | "eth_signTypedData_v3" | "eth_signTypedData_v4" | "eth_prepareUserOperation" | "eth_patchUserOperation" | "eth_signUserOperation")[];
|
|
141
144
|
}, {
|
|
142
145
|
metadata: Struct<{
|
|
@@ -185,6 +188,7 @@ export declare const InternalEthErc4337AccountStruct: Struct<{
|
|
|
185
188
|
eth_signUserOperation: "eth_signUserOperation";
|
|
186
189
|
}>>;
|
|
187
190
|
id: import("@metamask/superstruct").Struct<string, null>;
|
|
191
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
188
192
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
189
193
|
}>;
|
|
190
194
|
export declare const InternalBtcP2wpkhAccountStruct: Struct<{
|
|
@@ -206,6 +210,7 @@ export declare const InternalBtcP2wpkhAccountStruct: Struct<{
|
|
|
206
210
|
lastSelected?: number;
|
|
207
211
|
};
|
|
208
212
|
address: string;
|
|
213
|
+
scopes: string[];
|
|
209
214
|
methods: "sendBitcoin"[];
|
|
210
215
|
}, {
|
|
211
216
|
metadata: Struct<{
|
|
@@ -247,6 +252,7 @@ export declare const InternalBtcP2wpkhAccountStruct: Struct<{
|
|
|
247
252
|
sendBitcoin: "sendBitcoin";
|
|
248
253
|
}>>;
|
|
249
254
|
id: import("@metamask/superstruct").Struct<string, null>;
|
|
255
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
250
256
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
251
257
|
}>;
|
|
252
258
|
export declare const InternalSolDataAccountStruct: Struct<{
|
|
@@ -268,6 +274,7 @@ export declare const InternalSolDataAccountStruct: Struct<{
|
|
|
268
274
|
lastSelected?: number;
|
|
269
275
|
};
|
|
270
276
|
address: string;
|
|
277
|
+
scopes: string[];
|
|
271
278
|
methods: "sendAndConfirmTransaction"[];
|
|
272
279
|
}, {
|
|
273
280
|
metadata: Struct<{
|
|
@@ -309,6 +316,7 @@ export declare const InternalSolDataAccountStruct: Struct<{
|
|
|
309
316
|
sendAndConfirmTransaction: "sendAndConfirmTransaction";
|
|
310
317
|
}>>;
|
|
311
318
|
id: import("@metamask/superstruct").Struct<string, null>;
|
|
319
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
312
320
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
313
321
|
}>;
|
|
314
322
|
export type InternalEthEoaAccount = Infer<typeof InternalEthEoaAccountStruct>;
|
|
@@ -336,6 +344,7 @@ export declare const InternalAccountStruct: Struct<{
|
|
|
336
344
|
lastSelected?: number;
|
|
337
345
|
};
|
|
338
346
|
address: string;
|
|
347
|
+
scopes: string[];
|
|
339
348
|
methods: string[];
|
|
340
349
|
}, {
|
|
341
350
|
metadata: Struct<{
|
|
@@ -379,6 +388,7 @@ export declare const InternalAccountStruct: Struct<{
|
|
|
379
388
|
"solana:data-account": "solana:data-account";
|
|
380
389
|
}>;
|
|
381
390
|
address: import("@metamask/superstruct").Struct<string, null>;
|
|
391
|
+
scopes: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
382
392
|
options: import("@metamask/superstruct").Struct<Record<string, import("@metamask/utils").Json>, null>;
|
|
383
393
|
methods: import("@metamask/superstruct").Struct<string[], import("@metamask/superstruct").Struct<string, null>>;
|
|
384
394
|
}>;
|
package/dist/types.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.mts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAKA,OAAO,EACL,cAAc,EACd,cAAc,EAEd,cAAc,EAKf,8BAA8B;AAE/B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,8BAA8B;AAG3D,MAAM,MAAM,mBAAmB,GAC3B,cAAc,GACd,cAAc,GACd,cAAc,CAAC;AAEnB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBxC,CAAC;AAEH,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"types.d.mts","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"AAKA,OAAO,EACL,cAAc,EACd,cAAc,EAEd,cAAc,EAKf,8BAA8B;AAE/B,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,8BAA8B;AAG3D,MAAM,MAAM,mBAAmB,GAC3B,cAAc,GACd,cAAc,GACd,cAAc,CAAC;AAEnB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiBxC,CAAC;AAEH,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGtC,CAAC;AAEH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG1C,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGzC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGvC,CAAC;AAEH,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAE9E,MAAM,MAAM,yBAAyB,GAAG,KAAK,CAC3C,OAAO,+BAA+B,CACvC,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,KAAK,CAC1C,OAAO,8BAA8B,CACtC,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAEhF,eAAO,MAAM,sBAAsB,EAAE,MAAM,CACzC,MAAM,EACJ,MAAM,CAAC,qBAAqB,CAAC,GAC7B,MAAM,CAAC,yBAAyB,CAAC,GACjC,MAAM,CAAC,wBAAwB,CAAC,GAChC,MAAM,CAAC,sBAAsB,CAAC,CAMjC,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAC5B,qBAAqB,GACrB,yBAAyB,GACzB,wBAAwB,GACxB,sBAAsB,CAAC;AAE3B,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGhC,CAAC;AAEH;;;;;GAKG;AACH,MAAM,MAAM,eAAe,GAAG,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/keyring-internal-api",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-3847d8e",
|
|
4
4
|
"description": "MetaMask Keyring Internal API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"metamask",
|
|
@@ -45,16 +45,15 @@
|
|
|
45
45
|
"test:watch": "jest --watch"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@metamask/keyring-api": "
|
|
48
|
+
"@metamask/keyring-api": "13.0.0",
|
|
49
49
|
"@metamask/keyring-utils": "1.0.0",
|
|
50
50
|
"@metamask/superstruct": "^3.1.0",
|
|
51
|
-
"@metamask/utils": "^
|
|
51
|
+
"@metamask/utils": "^11.0.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@lavamoat/allow-scripts": "^3.2.1",
|
|
55
55
|
"@lavamoat/preinstall-always-fail": "^2.1.0",
|
|
56
56
|
"@metamask/auto-changelog": "^3.4.4",
|
|
57
|
-
"@metamask/keyring-api": "12.0.0",
|
|
58
57
|
"@ts-bridge/cli": "^0.6.1",
|
|
59
58
|
"@types/jest": "^29.5.12",
|
|
60
59
|
"@types/node": "^20.12.12",
|