@metamask-previews/account-api 1.0.0-cd75414 → 1.0.1-8ff7ba2
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 +8 -1
- package/dist/mocks/accounts.d.cts +14 -14
- package/dist/mocks/accounts.d.cts.map +1 -1
- package/dist/mocks/accounts.d.mts +14 -14
- package/dist/mocks/accounts.d.mts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.0.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/keyring-api` from `^21.6.0` to `^22.0.0` ([#482](https://github.com/MetaMask/accounts/pull/482))
|
|
15
|
+
|
|
10
16
|
## [1.0.0]
|
|
11
17
|
|
|
12
18
|
### Changed
|
|
@@ -139,7 +145,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
139
145
|
|
|
140
146
|
- Add `AccountGroup` and `AccountWallet` ([#307](https://github.com/MetaMask/accounts/pull/307))
|
|
141
147
|
|
|
142
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@1.0.
|
|
148
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@1.0.1...HEAD
|
|
149
|
+
[1.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@1.0.0...@metamask/account-api@1.0.1
|
|
143
150
|
[1.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@0.12.0...@metamask/account-api@1.0.0
|
|
144
151
|
[0.12.0]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@0.11.0...@metamask/account-api@0.12.0
|
|
145
152
|
[0.11.0]: https://github.com/MetaMask/accounts/compare/@metamask/account-api@0.10.0...@metamask/account-api@0.11.0
|
|
@@ -8,8 +8,6 @@ export declare const MOCK_BTC_P2TR_ACCOUNT_1: Bip44Account<KeyringAccount>;
|
|
|
8
8
|
export declare const MOCK_SNAP_ACCOUNT_1: Bip44Account<{
|
|
9
9
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
10
10
|
id: string;
|
|
11
|
-
address: string;
|
|
12
|
-
scopes: `${string}:${string}`[];
|
|
13
11
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
14
12
|
entropy?: {
|
|
15
13
|
type: "mnemonic";
|
|
@@ -23,14 +21,14 @@ export declare const MOCK_SNAP_ACCOUNT_1: Bip44Account<{
|
|
|
23
21
|
};
|
|
24
22
|
exportable?: boolean;
|
|
25
23
|
};
|
|
24
|
+
address: string;
|
|
25
|
+
scopes: `${string}:${string}`[];
|
|
26
26
|
methods: string[];
|
|
27
27
|
}>;
|
|
28
28
|
export declare const MOCK_SNAP_ACCOUNT_2: KeyringAccount;
|
|
29
29
|
export declare const MOCK_SNAP_ACCOUNT_3: Bip44Account<{
|
|
30
30
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
31
31
|
id: string;
|
|
32
|
-
address: string;
|
|
33
|
-
scopes: `${string}:${string}`[];
|
|
34
32
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
35
33
|
entropy?: {
|
|
36
34
|
type: "mnemonic";
|
|
@@ -44,13 +42,13 @@ export declare const MOCK_SNAP_ACCOUNT_3: Bip44Account<{
|
|
|
44
42
|
};
|
|
45
43
|
exportable?: boolean;
|
|
46
44
|
};
|
|
45
|
+
address: string;
|
|
46
|
+
scopes: `${string}:${string}`[];
|
|
47
47
|
methods: string[];
|
|
48
48
|
}>;
|
|
49
49
|
export declare const MOCK_SNAP_ACCOUNT_4: Bip44Account<{
|
|
50
50
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
51
51
|
id: string;
|
|
52
|
-
address: string;
|
|
53
|
-
scopes: `${string}:${string}`[];
|
|
54
52
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
55
53
|
entropy?: {
|
|
56
54
|
type: "mnemonic";
|
|
@@ -64,6 +62,8 @@ export declare const MOCK_SNAP_ACCOUNT_4: Bip44Account<{
|
|
|
64
62
|
};
|
|
65
63
|
exportable?: boolean;
|
|
66
64
|
};
|
|
65
|
+
address: string;
|
|
66
|
+
scopes: `${string}:${string}`[];
|
|
67
67
|
methods: string[];
|
|
68
68
|
}>;
|
|
69
69
|
export declare const MOCK_HARDWARE_ACCOUNT_1: KeyringAccount;
|
|
@@ -82,8 +82,6 @@ export declare const MOCK_WALLET_1_ENTROPY_SOURCE = "mock-keyring-id-1";
|
|
|
82
82
|
export declare const MOCK_WALLET_1_EVM_ACCOUNT: Bip44Account<{
|
|
83
83
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
84
84
|
id: string;
|
|
85
|
-
address: string;
|
|
86
|
-
scopes: `${string}:${string}`[];
|
|
87
85
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
88
86
|
entropy?: {
|
|
89
87
|
type: "mnemonic";
|
|
@@ -97,13 +95,13 @@ export declare const MOCK_WALLET_1_EVM_ACCOUNT: Bip44Account<{
|
|
|
97
95
|
};
|
|
98
96
|
exportable?: boolean;
|
|
99
97
|
};
|
|
98
|
+
address: string;
|
|
99
|
+
scopes: `${string}:${string}`[];
|
|
100
100
|
methods: string[];
|
|
101
101
|
}>;
|
|
102
102
|
export declare const MOCK_WALLET_1_SOL_ACCOUNT: Bip44Account<{
|
|
103
103
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
104
104
|
id: string;
|
|
105
|
-
address: string;
|
|
106
|
-
scopes: `${string}:${string}`[];
|
|
107
105
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
108
106
|
entropy?: {
|
|
109
107
|
type: "mnemonic";
|
|
@@ -117,13 +115,13 @@ export declare const MOCK_WALLET_1_SOL_ACCOUNT: Bip44Account<{
|
|
|
117
115
|
};
|
|
118
116
|
exportable?: boolean;
|
|
119
117
|
};
|
|
118
|
+
address: string;
|
|
119
|
+
scopes: `${string}:${string}`[];
|
|
120
120
|
methods: string[];
|
|
121
121
|
}>;
|
|
122
122
|
export declare const MOCK_WALLET_1_BTC_P2WPKH_ACCOUNT: Bip44Account<{
|
|
123
123
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
124
124
|
id: string;
|
|
125
|
-
address: string;
|
|
126
|
-
scopes: `${string}:${string}`[];
|
|
127
125
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
128
126
|
entropy?: {
|
|
129
127
|
type: "mnemonic";
|
|
@@ -137,13 +135,13 @@ export declare const MOCK_WALLET_1_BTC_P2WPKH_ACCOUNT: Bip44Account<{
|
|
|
137
135
|
};
|
|
138
136
|
exportable?: boolean;
|
|
139
137
|
};
|
|
138
|
+
address: string;
|
|
139
|
+
scopes: `${string}:${string}`[];
|
|
140
140
|
methods: string[];
|
|
141
141
|
}>;
|
|
142
142
|
export declare const MOCK_WALLET_1_BTC_P2TR_ACCOUNT: Bip44Account<{
|
|
143
143
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
144
144
|
id: string;
|
|
145
|
-
address: string;
|
|
146
|
-
scopes: `${string}:${string}`[];
|
|
147
145
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
148
146
|
entropy?: {
|
|
149
147
|
type: "mnemonic";
|
|
@@ -157,6 +155,8 @@ export declare const MOCK_WALLET_1_BTC_P2TR_ACCOUNT: Bip44Account<{
|
|
|
157
155
|
};
|
|
158
156
|
exportable?: boolean;
|
|
159
157
|
};
|
|
158
|
+
address: string;
|
|
159
|
+
scopes: `${string}:${string}`[];
|
|
160
160
|
methods: string[];
|
|
161
161
|
}>;
|
|
162
162
|
//# sourceMappingURL=accounts.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accounts.d.cts","sourceRoot":"","sources":["../../src/mocks/accounts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,8BAA8B;AAgB7E,OAAO,EAAkB,KAAK,YAAY,EAAE,yBAAe;AAa3D,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,YAAY,CAAC,cAAc,CAe3D,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,YAAY,CAAC,cAAc,CAelE,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,YAAY,CAAC,cAAc,CAehE,CAAC;AAEF,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"accounts.d.cts","sourceRoot":"","sources":["../../src/mocks/accounts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,8BAA8B;AAgB7E,OAAO,EAAkB,KAAK,YAAY,EAAE,yBAAe;AAa3D,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,YAAY,CAAC,cAAc,CAe3D,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,YAAY,CAAC,cAAc,CAelE,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,YAAY,CAAC,cAAc,CAehE,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;eAxB1B,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAc8C,CAAC;AAEtD,eAAO,MAAM,mBAAmB,EAAE,cAOjC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;eAnC1B,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAyBqD,CAAC;AAC7D,eAAO,MAAM,mBAAmB;;;;eApC1B,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EA0BmD,CAAC;AAE3D,eAAO,MAAM,uBAAuB,EAAE,cAOrC,CAAC;AAEF,qBAAa,kBAAkB,CAAC,OAAO,SAAS,cAAc;;gBAGhD,OAAO,EAAE,OAAO;IAK5B,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,cAAc,EACxC,OAAO,EAAE,OAAO,GACf,kBAAkB,CAAC,OAAO,CAAC;IAI9B,MAAM,CAAC,EAAE,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,OAAO,CAAC;IAK7D,QAAQ,IAAI,kBAAkB,CAAC,OAAO,CAAC;IAKvC,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,kBAAkB,CAAC,OAAO,CAAC;IAK9D,iBAAiB,CACf,aAAa,EAAE,eAAe,GAC7B,kBAAkB,CAAC,OAAO,CAAC;IAO9B,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,kBAAkB,CAAC,OAAO,CAAC;IAO/D,GAAG,IAAI,OAAO;CAGf;AAED,eAAO,MAAM,4BAA4B,sBAAwB,CAAC;AAElE,eAAO,MAAM,yBAAyB;;;;eAnGhC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EA8FC,CAAC;AACT,eAAO,MAAM,yBAAyB;;;;eAzGhC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAoGC,CAAC;AACT,eAAO,MAAM,gCAAgC;;;;eA/GvC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EA0GC,CAAC;AACT,eAAO,MAAM,8BAA8B;;;;eArHrC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAgHC,CAAC"}
|
|
@@ -8,8 +8,6 @@ export declare const MOCK_BTC_P2TR_ACCOUNT_1: Bip44Account<KeyringAccount>;
|
|
|
8
8
|
export declare const MOCK_SNAP_ACCOUNT_1: Bip44Account<{
|
|
9
9
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
10
10
|
id: string;
|
|
11
|
-
address: string;
|
|
12
|
-
scopes: `${string}:${string}`[];
|
|
13
11
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
14
12
|
entropy?: {
|
|
15
13
|
type: "mnemonic";
|
|
@@ -23,14 +21,14 @@ export declare const MOCK_SNAP_ACCOUNT_1: Bip44Account<{
|
|
|
23
21
|
};
|
|
24
22
|
exportable?: boolean;
|
|
25
23
|
};
|
|
24
|
+
address: string;
|
|
25
|
+
scopes: `${string}:${string}`[];
|
|
26
26
|
methods: string[];
|
|
27
27
|
}>;
|
|
28
28
|
export declare const MOCK_SNAP_ACCOUNT_2: KeyringAccount;
|
|
29
29
|
export declare const MOCK_SNAP_ACCOUNT_3: Bip44Account<{
|
|
30
30
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
31
31
|
id: string;
|
|
32
|
-
address: string;
|
|
33
|
-
scopes: `${string}:${string}`[];
|
|
34
32
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
35
33
|
entropy?: {
|
|
36
34
|
type: "mnemonic";
|
|
@@ -44,13 +42,13 @@ export declare const MOCK_SNAP_ACCOUNT_3: Bip44Account<{
|
|
|
44
42
|
};
|
|
45
43
|
exportable?: boolean;
|
|
46
44
|
};
|
|
45
|
+
address: string;
|
|
46
|
+
scopes: `${string}:${string}`[];
|
|
47
47
|
methods: string[];
|
|
48
48
|
}>;
|
|
49
49
|
export declare const MOCK_SNAP_ACCOUNT_4: Bip44Account<{
|
|
50
50
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
51
51
|
id: string;
|
|
52
|
-
address: string;
|
|
53
|
-
scopes: `${string}:${string}`[];
|
|
54
52
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
55
53
|
entropy?: {
|
|
56
54
|
type: "mnemonic";
|
|
@@ -64,6 +62,8 @@ export declare const MOCK_SNAP_ACCOUNT_4: Bip44Account<{
|
|
|
64
62
|
};
|
|
65
63
|
exportable?: boolean;
|
|
66
64
|
};
|
|
65
|
+
address: string;
|
|
66
|
+
scopes: `${string}:${string}`[];
|
|
67
67
|
methods: string[];
|
|
68
68
|
}>;
|
|
69
69
|
export declare const MOCK_HARDWARE_ACCOUNT_1: KeyringAccount;
|
|
@@ -82,8 +82,6 @@ export declare const MOCK_WALLET_1_ENTROPY_SOURCE = "mock-keyring-id-1";
|
|
|
82
82
|
export declare const MOCK_WALLET_1_EVM_ACCOUNT: Bip44Account<{
|
|
83
83
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
84
84
|
id: string;
|
|
85
|
-
address: string;
|
|
86
|
-
scopes: `${string}:${string}`[];
|
|
87
85
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
88
86
|
entropy?: {
|
|
89
87
|
type: "mnemonic";
|
|
@@ -97,13 +95,13 @@ export declare const MOCK_WALLET_1_EVM_ACCOUNT: Bip44Account<{
|
|
|
97
95
|
};
|
|
98
96
|
exportable?: boolean;
|
|
99
97
|
};
|
|
98
|
+
address: string;
|
|
99
|
+
scopes: `${string}:${string}`[];
|
|
100
100
|
methods: string[];
|
|
101
101
|
}>;
|
|
102
102
|
export declare const MOCK_WALLET_1_SOL_ACCOUNT: Bip44Account<{
|
|
103
103
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
104
104
|
id: string;
|
|
105
|
-
address: string;
|
|
106
|
-
scopes: `${string}:${string}`[];
|
|
107
105
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
108
106
|
entropy?: {
|
|
109
107
|
type: "mnemonic";
|
|
@@ -117,13 +115,13 @@ export declare const MOCK_WALLET_1_SOL_ACCOUNT: Bip44Account<{
|
|
|
117
115
|
};
|
|
118
116
|
exportable?: boolean;
|
|
119
117
|
};
|
|
118
|
+
address: string;
|
|
119
|
+
scopes: `${string}:${string}`[];
|
|
120
120
|
methods: string[];
|
|
121
121
|
}>;
|
|
122
122
|
export declare const MOCK_WALLET_1_BTC_P2WPKH_ACCOUNT: Bip44Account<{
|
|
123
123
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
124
124
|
id: string;
|
|
125
|
-
address: string;
|
|
126
|
-
scopes: `${string}:${string}`[];
|
|
127
125
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
128
126
|
entropy?: {
|
|
129
127
|
type: "mnemonic";
|
|
@@ -137,13 +135,13 @@ export declare const MOCK_WALLET_1_BTC_P2WPKH_ACCOUNT: Bip44Account<{
|
|
|
137
135
|
};
|
|
138
136
|
exportable?: boolean;
|
|
139
137
|
};
|
|
138
|
+
address: string;
|
|
139
|
+
scopes: `${string}:${string}`[];
|
|
140
140
|
methods: string[];
|
|
141
141
|
}>;
|
|
142
142
|
export declare const MOCK_WALLET_1_BTC_P2TR_ACCOUNT: Bip44Account<{
|
|
143
143
|
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "any:account";
|
|
144
144
|
id: string;
|
|
145
|
-
address: string;
|
|
146
|
-
scopes: `${string}:${string}`[];
|
|
147
145
|
options: Record<string, import("@metamask/utils").Json> & {
|
|
148
146
|
entropy?: {
|
|
149
147
|
type: "mnemonic";
|
|
@@ -157,6 +155,8 @@ export declare const MOCK_WALLET_1_BTC_P2TR_ACCOUNT: Bip44Account<{
|
|
|
157
155
|
};
|
|
158
156
|
exportable?: boolean;
|
|
159
157
|
};
|
|
158
|
+
address: string;
|
|
159
|
+
scopes: `${string}:${string}`[];
|
|
160
160
|
methods: string[];
|
|
161
161
|
}>;
|
|
162
162
|
//# sourceMappingURL=accounts.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accounts.d.mts","sourceRoot":"","sources":["../../src/mocks/accounts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,8BAA8B;AAgB7E,OAAO,EAAkB,KAAK,YAAY,EAAE,yBAAe;AAa3D,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,YAAY,CAAC,cAAc,CAe3D,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,YAAY,CAAC,cAAc,CAelE,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,YAAY,CAAC,cAAc,CAehE,CAAC;AAEF,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"accounts.d.mts","sourceRoot":"","sources":["../../src/mocks/accounts.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,8BAA8B;AAgB7E,OAAO,EAAkB,KAAK,YAAY,EAAE,yBAAe;AAa3D,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,YAAY,CAAC,cAAc,CAc1D,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,YAAY,CAAC,cAAc,CAe3D,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,YAAY,CAAC,cAAc,CAelE,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,YAAY,CAAC,cAAc,CAehE,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;eAxB1B,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAc8C,CAAC;AAEtD,eAAO,MAAM,mBAAmB,EAAE,cAOjC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;eAnC1B,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAyBqD,CAAC;AAC7D,eAAO,MAAM,mBAAmB;;;;eApC1B,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EA0BmD,CAAC;AAE3D,eAAO,MAAM,uBAAuB,EAAE,cAOrC,CAAC;AAEF,qBAAa,kBAAkB,CAAC,OAAO,SAAS,cAAc;;gBAGhD,OAAO,EAAE,OAAO;IAK5B,MAAM,CAAC,IAAI,CAAC,OAAO,SAAS,cAAc,EACxC,OAAO,EAAE,OAAO,GACf,kBAAkB,CAAC,OAAO,CAAC;IAI9B,MAAM,CAAC,EAAE,EAAE,cAAc,CAAC,IAAI,CAAC,GAAG,kBAAkB,CAAC,OAAO,CAAC;IAK7D,QAAQ,IAAI,kBAAkB,CAAC,OAAO,CAAC;IAKvC,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,kBAAkB,CAAC,OAAO,CAAC;IAK9D,iBAAiB,CACf,aAAa,EAAE,eAAe,GAC7B,kBAAkB,CAAC,OAAO,CAAC;IAO9B,cAAc,CAAC,UAAU,EAAE,MAAM,GAAG,kBAAkB,CAAC,OAAO,CAAC;IAO/D,GAAG,IAAI,OAAO;CAGf;AAED,eAAO,MAAM,4BAA4B,sBAAwB,CAAC;AAElE,eAAO,MAAM,yBAAyB;;;;eAnGhC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EA8FC,CAAC;AACT,eAAO,MAAM,yBAAyB;;;;eAzGhC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAoGC,CAAC;AACT,eAAO,MAAM,gCAAgC;;;;eA/GvC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EA0GC,CAAC;AACT,eAAO,MAAM,8BAA8B;;;;eArHrC,CAAL;;;;;;;;;;kBAUK,CAAC;;;;;EAgHC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/account-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1-8ff7ba2",
|
|
4
4
|
"description": "MetaMask Account API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"metamask",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"test:watch": "jest --watch"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@metamask/keyring-api": "
|
|
59
|
+
"@metamask/keyring-api": "22.0.0",
|
|
60
60
|
"@metamask/keyring-utils": "3.2.0",
|
|
61
61
|
"uuid": "^9.0.1"
|
|
62
62
|
},
|