@metamask/keyring-api 17.4.0 → 17.6.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/CHANGELOG.md +17 -1
- package/dist/api/account.cjs +6 -0
- package/dist/api/account.cjs.map +1 -1
- package/dist/api/account.d.cts +10 -4
- package/dist/api/account.d.cts.map +1 -1
- package/dist/api/account.d.mts +10 -4
- package/dist/api/account.d.mts.map +1 -1
- package/dist/api/account.mjs +6 -0
- package/dist/api/account.mjs.map +1 -1
- package/dist/api/transaction.cjs +18 -0
- package/dist/api/transaction.cjs.map +1 -1
- package/dist/api/transaction.d.cts +28 -7
- package/dist/api/transaction.d.cts.map +1 -1
- package/dist/api/transaction.d.mts +28 -7
- package/dist/api/transaction.d.mts.map +1 -1
- package/dist/api/transaction.mjs +18 -0
- package/dist/api/transaction.mjs.map +1 -1
- package/dist/btc/types.cjs +63 -14
- package/dist/btc/types.cjs.map +1 -1
- package/dist/btc/types.d.cts +95 -4
- package/dist/btc/types.d.cts.map +1 -1
- package/dist/btc/types.d.mts +95 -4
- package/dist/btc/types.d.mts.map +1 -1
- package/dist/btc/types.mjs +64 -15
- package/dist/btc/types.mjs.map +1 -1
- package/dist/events.d.cts +17 -11
- package/dist/events.d.cts.map +1 -1
- package/dist/events.d.mts +17 -11
- package/dist/events.d.mts.map +1 -1
- package/dist/rpc.d.cts +30 -15
- package/dist/rpc.d.cts.map +1 -1
- package/dist/rpc.d.mts +30 -15
- package/dist/rpc.d.mts.map +1 -1
- package/package.json +2 -2
package/dist/events.d.cts
CHANGED
@@ -16,7 +16,7 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
16
16
|
method: "notify:accountCreated";
|
17
17
|
params: {
|
18
18
|
account: {
|
19
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
19
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
20
20
|
id: string;
|
21
21
|
options: Record<string, import("@metamask/utils").Json>;
|
22
22
|
address: string;
|
@@ -34,7 +34,7 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
34
34
|
method: import("@metamask/superstruct").Struct<"notify:accountCreated", "notify:accountCreated">;
|
35
35
|
params: import("@metamask/superstruct").Struct<{
|
36
36
|
account: {
|
37
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
37
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
38
38
|
id: string;
|
39
39
|
options: Record<string, import("@metamask/utils").Json>;
|
40
40
|
address: string;
|
@@ -57,7 +57,7 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
57
57
|
* New account object.
|
58
58
|
*/
|
59
59
|
account: import("@metamask/superstruct").Struct<{
|
60
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
60
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
61
61
|
id: string;
|
62
62
|
options: Record<string, import("@metamask/utils").Json>;
|
63
63
|
address: string;
|
@@ -65,10 +65,13 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
65
65
|
methods: string[];
|
66
66
|
}, {
|
67
67
|
id: import("@metamask/superstruct").Struct<string, null>;
|
68
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
68
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
69
69
|
"eip155:eoa": "eip155:eoa";
|
70
70
|
"eip155:erc4337": "eip155:erc4337";
|
71
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
72
|
+
"bip122:p2sh": "bip122:p2sh";
|
71
73
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
74
|
+
"bip122:p2tr": "bip122:p2tr";
|
72
75
|
"solana:data-account": "solana:data-account";
|
73
76
|
}>;
|
74
77
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -107,7 +110,7 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
107
110
|
method: "notify:accountUpdated";
|
108
111
|
params: {
|
109
112
|
account: {
|
110
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
113
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
111
114
|
id: string;
|
112
115
|
options: Record<string, import("@metamask/utils").Json>;
|
113
116
|
address: string;
|
@@ -119,7 +122,7 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
119
122
|
method: import("@metamask/superstruct").Struct<"notify:accountUpdated", "notify:accountUpdated">;
|
120
123
|
params: import("@metamask/superstruct").Struct<{
|
121
124
|
account: {
|
122
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
125
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
123
126
|
id: string;
|
124
127
|
options: Record<string, import("@metamask/utils").Json>;
|
125
128
|
address: string;
|
@@ -131,7 +134,7 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
131
134
|
* Updated account object.
|
132
135
|
*/
|
133
136
|
account: import("@metamask/superstruct").Struct<{
|
134
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
137
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
135
138
|
id: string;
|
136
139
|
options: Record<string, import("@metamask/utils").Json>;
|
137
140
|
address: string;
|
@@ -139,10 +142,13 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
139
142
|
methods: string[];
|
140
143
|
}, {
|
141
144
|
id: import("@metamask/superstruct").Struct<string, null>;
|
142
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
145
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
143
146
|
"eip155:eoa": "eip155:eoa";
|
144
147
|
"eip155:erc4337": "eip155:erc4337";
|
148
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
149
|
+
"bip122:p2sh": "bip122:p2sh";
|
145
150
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
151
|
+
"bip122:p2tr": "bip122:p2tr";
|
146
152
|
"solana:data-account": "solana:data-account";
|
147
153
|
}>;
|
148
154
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -260,7 +266,7 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
|
|
260
266
|
method: "notify:accountTransactionsUpdated";
|
261
267
|
params: {
|
262
268
|
transactions: Record<string, {
|
263
|
-
type: "send" | "receive" | "swap";
|
269
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
264
270
|
id: string;
|
265
271
|
from: {
|
266
272
|
address: string;
|
@@ -312,7 +318,7 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
|
|
312
318
|
method: import("@metamask/superstruct").Struct<"notify:accountTransactionsUpdated", "notify:accountTransactionsUpdated">;
|
313
319
|
params: import("@metamask/superstruct").Struct<{
|
314
320
|
transactions: Record<string, {
|
315
|
-
type: "send" | "receive" | "swap";
|
321
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
316
322
|
id: string;
|
317
323
|
from: {
|
318
324
|
address: string;
|
@@ -364,7 +370,7 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
|
|
364
370
|
* Transactions updates of accounts owned by the Snap.
|
365
371
|
*/
|
366
372
|
transactions: import("@metamask/superstruct").Struct<Record<string, {
|
367
|
-
type: "send" | "receive" | "swap";
|
373
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
368
374
|
id: string;
|
369
375
|
from: {
|
370
376
|
address: string;
|
package/dist/events.d.cts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"events.d.cts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,KAAK,EAAE,8BAA8B;AAenD;;GAEG;AACH,oBAAY,YAAY;IAEtB,cAAc,0BAA0B;IACxC,cAAc,0BAA0B;IACxC,cAAc,0BAA0B;IAGxC,eAAe,2BAA2B;IAC1C,eAAe,2BAA2B;IAG1C,sBAAsB,kCAAkC;IACxD,uBAAuB,mCAAmC;IAC1D,0BAA0B,sCAAsC;CACjE;AAED,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAGlC;;WAEG
|
1
|
+
{"version":3,"file":"events.d.cts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"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"}
|
package/dist/events.d.mts
CHANGED
@@ -16,7 +16,7 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
16
16
|
method: "notify:accountCreated";
|
17
17
|
params: {
|
18
18
|
account: {
|
19
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
19
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
20
20
|
id: string;
|
21
21
|
options: Record<string, import("@metamask/utils").Json>;
|
22
22
|
address: string;
|
@@ -34,7 +34,7 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
34
34
|
method: import("@metamask/superstruct").Struct<"notify:accountCreated", "notify:accountCreated">;
|
35
35
|
params: import("@metamask/superstruct").Struct<{
|
36
36
|
account: {
|
37
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
37
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
38
38
|
id: string;
|
39
39
|
options: Record<string, import("@metamask/utils").Json>;
|
40
40
|
address: string;
|
@@ -57,7 +57,7 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
57
57
|
* New account object.
|
58
58
|
*/
|
59
59
|
account: import("@metamask/superstruct").Struct<{
|
60
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
60
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
61
61
|
id: string;
|
62
62
|
options: Record<string, import("@metamask/utils").Json>;
|
63
63
|
address: string;
|
@@ -65,10 +65,13 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
|
|
65
65
|
methods: string[];
|
66
66
|
}, {
|
67
67
|
id: import("@metamask/superstruct").Struct<string, null>;
|
68
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
68
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
69
69
|
"eip155:eoa": "eip155:eoa";
|
70
70
|
"eip155:erc4337": "eip155:erc4337";
|
71
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
72
|
+
"bip122:p2sh": "bip122:p2sh";
|
71
73
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
74
|
+
"bip122:p2tr": "bip122:p2tr";
|
72
75
|
"solana:data-account": "solana:data-account";
|
73
76
|
}>;
|
74
77
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -107,7 +110,7 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
107
110
|
method: "notify:accountUpdated";
|
108
111
|
params: {
|
109
112
|
account: {
|
110
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
113
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
111
114
|
id: string;
|
112
115
|
options: Record<string, import("@metamask/utils").Json>;
|
113
116
|
address: string;
|
@@ -119,7 +122,7 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
119
122
|
method: import("@metamask/superstruct").Struct<"notify:accountUpdated", "notify:accountUpdated">;
|
120
123
|
params: import("@metamask/superstruct").Struct<{
|
121
124
|
account: {
|
122
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
125
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
123
126
|
id: string;
|
124
127
|
options: Record<string, import("@metamask/utils").Json>;
|
125
128
|
address: string;
|
@@ -131,7 +134,7 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
131
134
|
* Updated account object.
|
132
135
|
*/
|
133
136
|
account: import("@metamask/superstruct").Struct<{
|
134
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
137
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
135
138
|
id: string;
|
136
139
|
options: Record<string, import("@metamask/utils").Json>;
|
137
140
|
address: string;
|
@@ -139,10 +142,13 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
|
|
139
142
|
methods: string[];
|
140
143
|
}, {
|
141
144
|
id: import("@metamask/superstruct").Struct<string, null>;
|
142
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
145
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
143
146
|
"eip155:eoa": "eip155:eoa";
|
144
147
|
"eip155:erc4337": "eip155:erc4337";
|
148
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
149
|
+
"bip122:p2sh": "bip122:p2sh";
|
145
150
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
151
|
+
"bip122:p2tr": "bip122:p2tr";
|
146
152
|
"solana:data-account": "solana:data-account";
|
147
153
|
}>;
|
148
154
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -260,7 +266,7 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
|
|
260
266
|
method: "notify:accountTransactionsUpdated";
|
261
267
|
params: {
|
262
268
|
transactions: Record<string, {
|
263
|
-
type: "send" | "receive" | "swap";
|
269
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
264
270
|
id: string;
|
265
271
|
from: {
|
266
272
|
address: string;
|
@@ -312,7 +318,7 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
|
|
312
318
|
method: import("@metamask/superstruct").Struct<"notify:accountTransactionsUpdated", "notify:accountTransactionsUpdated">;
|
313
319
|
params: import("@metamask/superstruct").Struct<{
|
314
320
|
transactions: Record<string, {
|
315
|
-
type: "send" | "receive" | "swap";
|
321
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
316
322
|
id: string;
|
317
323
|
from: {
|
318
324
|
address: string;
|
@@ -364,7 +370,7 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
|
|
364
370
|
* Transactions updates of accounts owned by the Snap.
|
365
371
|
*/
|
366
372
|
transactions: import("@metamask/superstruct").Struct<Record<string, {
|
367
|
-
type: "send" | "receive" | "swap";
|
373
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
368
374
|
id: string;
|
369
375
|
from: {
|
370
376
|
address: string;
|
package/dist/events.d.mts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"events.d.mts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,KAAK,EAAE,8BAA8B;AAenD;;GAEG;AACH,oBAAY,YAAY;IAEtB,cAAc,0BAA0B;IACxC,cAAc,0BAA0B;IACxC,cAAc,0BAA0B;IAGxC,eAAe,2BAA2B;IAC1C,eAAe,2BAA2B;IAG1C,sBAAsB,kCAAkC;IACxD,uBAAuB,mCAAmC;IAC1D,0BAA0B,sCAAsC;CACjE;AAED,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAGlC;;WAEG
|
1
|
+
{"version":3,"file":"events.d.mts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"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"}
|
package/dist/rpc.d.cts
CHANGED
@@ -39,14 +39,14 @@ export declare const ListAccountsRequestStruct: import("@metamask/superstruct").
|
|
39
39
|
}>;
|
40
40
|
export type ListAccountsRequest = Infer<typeof ListAccountsRequestStruct>;
|
41
41
|
export declare const ListAccountsResponseStruct: import("@metamask/superstruct").Struct<{
|
42
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
42
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
43
43
|
id: string;
|
44
44
|
options: Record<string, import("@metamask/utils").Json>;
|
45
45
|
address: string;
|
46
46
|
scopes: `${string}:${string}`[];
|
47
47
|
methods: string[];
|
48
48
|
}[], import("@metamask/superstruct").Struct<{
|
49
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
49
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
50
50
|
id: string;
|
51
51
|
options: Record<string, import("@metamask/utils").Json>;
|
52
52
|
address: string;
|
@@ -54,10 +54,13 @@ export declare const ListAccountsResponseStruct: import("@metamask/superstruct")
|
|
54
54
|
methods: string[];
|
55
55
|
}, {
|
56
56
|
id: import("@metamask/superstruct").Struct<string, null>;
|
57
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
57
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
58
58
|
"eip155:eoa": "eip155:eoa";
|
59
59
|
"eip155:erc4337": "eip155:erc4337";
|
60
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
61
|
+
"bip122:p2sh": "bip122:p2sh";
|
60
62
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
63
|
+
"bip122:p2tr": "bip122:p2tr";
|
61
64
|
"solana:data-account": "solana:data-account";
|
62
65
|
}>;
|
63
66
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -85,7 +88,7 @@ export declare const GetAccountRequestStruct: import("@metamask/superstruct").St
|
|
85
88
|
}>;
|
86
89
|
export type GetAccountRequest = Infer<typeof GetAccountRequestStruct>;
|
87
90
|
export declare const GetAccountResponseStruct: import("@metamask/superstruct").Struct<{
|
88
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
91
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
89
92
|
id: string;
|
90
93
|
options: Record<string, import("@metamask/utils").Json>;
|
91
94
|
address: string;
|
@@ -93,10 +96,13 @@ export declare const GetAccountResponseStruct: import("@metamask/superstruct").S
|
|
93
96
|
methods: string[];
|
94
97
|
}, {
|
95
98
|
id: import("@metamask/superstruct").Struct<string, null>;
|
96
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
99
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
97
100
|
"eip155:eoa": "eip155:eoa";
|
98
101
|
"eip155:erc4337": "eip155:erc4337";
|
102
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
103
|
+
"bip122:p2sh": "bip122:p2sh";
|
99
104
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
105
|
+
"bip122:p2tr": "bip122:p2tr";
|
100
106
|
"solana:data-account": "solana:data-account";
|
101
107
|
}>;
|
102
108
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -124,7 +130,7 @@ export declare const CreateAccountRequestStruct: import("@metamask/superstruct")
|
|
124
130
|
}>;
|
125
131
|
export type CreateAccountRequest = Infer<typeof CreateAccountRequestStruct>;
|
126
132
|
export declare const CreateAccountResponseStruct: import("@metamask/superstruct").Struct<{
|
127
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
133
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
128
134
|
id: string;
|
129
135
|
options: Record<string, import("@metamask/utils").Json>;
|
130
136
|
address: string;
|
@@ -132,10 +138,13 @@ export declare const CreateAccountResponseStruct: import("@metamask/superstruct"
|
|
132
138
|
methods: string[];
|
133
139
|
}, {
|
134
140
|
id: import("@metamask/superstruct").Struct<string, null>;
|
135
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
141
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
136
142
|
"eip155:eoa": "eip155:eoa";
|
137
143
|
"eip155:erc4337": "eip155:erc4337";
|
144
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
145
|
+
"bip122:p2sh": "bip122:p2sh";
|
138
146
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
147
|
+
"bip122:p2tr": "bip122:p2tr";
|
139
148
|
"solana:data-account": "solana:data-account";
|
140
149
|
}>;
|
141
150
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -217,7 +226,7 @@ export declare const ListAccountTransactionsRequestStruct: import("@metamask/sup
|
|
217
226
|
export type ListAccountTransactionsRequest = Infer<typeof ListAccountTransactionsRequestStruct>;
|
218
227
|
export declare const ListAccountTransactionsResponseStruct: import("@metamask/superstruct").Struct<{
|
219
228
|
data: {
|
220
|
-
type: "send" | "receive" | "swap";
|
229
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
221
230
|
id: string;
|
222
231
|
from: {
|
223
232
|
address: string;
|
@@ -267,7 +276,7 @@ export declare const ListAccountTransactionsResponseStruct: import("@metamask/su
|
|
267
276
|
next: string | null;
|
268
277
|
}, {
|
269
278
|
data: import("@metamask/superstruct").Struct<{
|
270
|
-
type: "send" | "receive" | "swap";
|
279
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
271
280
|
id: string;
|
272
281
|
from: {
|
273
282
|
address: string;
|
@@ -314,7 +323,7 @@ export declare const ListAccountTransactionsResponseStruct: import("@metamask/su
|
|
314
323
|
};
|
315
324
|
}[];
|
316
325
|
}[], import("@metamask/superstruct").Struct<{
|
317
|
-
type: "send" | "receive" | "swap";
|
326
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
318
327
|
id: string;
|
319
328
|
from: {
|
320
329
|
address: string;
|
@@ -371,10 +380,13 @@ export declare const ListAccountTransactionsResponseStruct: import("@metamask/su
|
|
371
380
|
failed: "failed";
|
372
381
|
}>;
|
373
382
|
timestamp: import("@metamask/superstruct").Struct<number | null, null>;
|
374
|
-
type: import("@metamask/superstruct").Struct<"send" | "receive" | "swap", {
|
383
|
+
type: import("@metamask/superstruct").Struct<"unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive", {
|
384
|
+
unknown: "unknown";
|
375
385
|
send: "send";
|
376
386
|
receive: "receive";
|
377
387
|
swap: "swap";
|
388
|
+
"bridge:send": "bridge:send";
|
389
|
+
"bridge:receive": "bridge:receive";
|
378
390
|
}>;
|
379
391
|
from: import("@metamask/superstruct").Struct<{
|
380
392
|
address: string;
|
@@ -622,7 +634,7 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
622
634
|
jsonrpc: "2.0";
|
623
635
|
params: {
|
624
636
|
account: {
|
625
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
637
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
626
638
|
id: string;
|
627
639
|
options: Record<string, import("@metamask/utils").Json>;
|
628
640
|
address: string;
|
@@ -634,7 +646,7 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
634
646
|
method: import("@metamask/superstruct").Struct<"keyring_updateAccount", "keyring_updateAccount">;
|
635
647
|
params: import("@metamask/superstruct").Struct<{
|
636
648
|
account: {
|
637
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
649
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
638
650
|
id: string;
|
639
651
|
options: Record<string, import("@metamask/utils").Json>;
|
640
652
|
address: string;
|
@@ -643,7 +655,7 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
643
655
|
};
|
644
656
|
}, {
|
645
657
|
account: import("@metamask/superstruct").Struct<{
|
646
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
658
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
647
659
|
id: string;
|
648
660
|
options: Record<string, import("@metamask/utils").Json>;
|
649
661
|
address: string;
|
@@ -651,10 +663,13 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
651
663
|
methods: string[];
|
652
664
|
}, {
|
653
665
|
id: import("@metamask/superstruct").Struct<string, null>;
|
654
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
666
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
655
667
|
"eip155:eoa": "eip155:eoa";
|
656
668
|
"eip155:erc4337": "eip155:erc4337";
|
669
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
670
|
+
"bip122:p2sh": "bip122:p2sh";
|
657
671
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
672
|
+
"bip122:p2tr": "bip122:p2tr";
|
658
673
|
"solana:data-account": "solana:data-account";
|
659
674
|
}>;
|
660
675
|
address: import("@metamask/superstruct").Struct<string, null>;
|
package/dist/rpc.d.cts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"rpc.d.cts","sourceRoot":"","sources":["../src/rpc.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,KAAK,EAAE,8BAA8B;AA2BnD;;GAEG;AACH,oBAAY,gBAAgB;IAC1B,YAAY,yBAAyB;IACrC,UAAU,uBAAuB;IACjC,aAAa,0BAA0B;IACvC,gBAAgB,6BAA6B;IAC7C,iBAAiB,8BAA8B;IAC/C,uBAAuB,oCAAoC;IAC3D,kBAAkB,+BAA+B;IACjD,qBAAqB,kCAAkC;IACvD,mBAAmB,gCAAgC;IACnD,aAAa,0BAA0B;IACvC,aAAa,0BAA0B;IACvC,aAAa,0BAA0B;IACvC,YAAY,yBAAyB;IACrC,UAAU,uBAAuB;IACjC,aAAa,0BAA0B;IACvC,cAAc,2BAA2B;IACzC,aAAa,0BAA0B;CACxC;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAE1D;AAYD,eAAO,MAAM,yBAAyB;;;;;;;;EAGpC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE1E,eAAO,MAAM,0BAA0B
|
1
|
+
{"version":3,"file":"rpc.d.cts","sourceRoot":"","sources":["../src/rpc.ts"],"names":[],"mappings":"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"}
|
package/dist/rpc.d.mts
CHANGED
@@ -39,14 +39,14 @@ export declare const ListAccountsRequestStruct: import("@metamask/superstruct").
|
|
39
39
|
}>;
|
40
40
|
export type ListAccountsRequest = Infer<typeof ListAccountsRequestStruct>;
|
41
41
|
export declare const ListAccountsResponseStruct: import("@metamask/superstruct").Struct<{
|
42
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
42
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
43
43
|
id: string;
|
44
44
|
options: Record<string, import("@metamask/utils").Json>;
|
45
45
|
address: string;
|
46
46
|
scopes: `${string}:${string}`[];
|
47
47
|
methods: string[];
|
48
48
|
}[], import("@metamask/superstruct").Struct<{
|
49
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
49
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
50
50
|
id: string;
|
51
51
|
options: Record<string, import("@metamask/utils").Json>;
|
52
52
|
address: string;
|
@@ -54,10 +54,13 @@ export declare const ListAccountsResponseStruct: import("@metamask/superstruct")
|
|
54
54
|
methods: string[];
|
55
55
|
}, {
|
56
56
|
id: import("@metamask/superstruct").Struct<string, null>;
|
57
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
57
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
58
58
|
"eip155:eoa": "eip155:eoa";
|
59
59
|
"eip155:erc4337": "eip155:erc4337";
|
60
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
61
|
+
"bip122:p2sh": "bip122:p2sh";
|
60
62
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
63
|
+
"bip122:p2tr": "bip122:p2tr";
|
61
64
|
"solana:data-account": "solana:data-account";
|
62
65
|
}>;
|
63
66
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -85,7 +88,7 @@ export declare const GetAccountRequestStruct: import("@metamask/superstruct").St
|
|
85
88
|
}>;
|
86
89
|
export type GetAccountRequest = Infer<typeof GetAccountRequestStruct>;
|
87
90
|
export declare const GetAccountResponseStruct: import("@metamask/superstruct").Struct<{
|
88
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
91
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
89
92
|
id: string;
|
90
93
|
options: Record<string, import("@metamask/utils").Json>;
|
91
94
|
address: string;
|
@@ -93,10 +96,13 @@ export declare const GetAccountResponseStruct: import("@metamask/superstruct").S
|
|
93
96
|
methods: string[];
|
94
97
|
}, {
|
95
98
|
id: import("@metamask/superstruct").Struct<string, null>;
|
96
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
99
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
97
100
|
"eip155:eoa": "eip155:eoa";
|
98
101
|
"eip155:erc4337": "eip155:erc4337";
|
102
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
103
|
+
"bip122:p2sh": "bip122:p2sh";
|
99
104
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
105
|
+
"bip122:p2tr": "bip122:p2tr";
|
100
106
|
"solana:data-account": "solana:data-account";
|
101
107
|
}>;
|
102
108
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -124,7 +130,7 @@ export declare const CreateAccountRequestStruct: import("@metamask/superstruct")
|
|
124
130
|
}>;
|
125
131
|
export type CreateAccountRequest = Infer<typeof CreateAccountRequestStruct>;
|
126
132
|
export declare const CreateAccountResponseStruct: import("@metamask/superstruct").Struct<{
|
127
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
133
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
128
134
|
id: string;
|
129
135
|
options: Record<string, import("@metamask/utils").Json>;
|
130
136
|
address: string;
|
@@ -132,10 +138,13 @@ export declare const CreateAccountResponseStruct: import("@metamask/superstruct"
|
|
132
138
|
methods: string[];
|
133
139
|
}, {
|
134
140
|
id: import("@metamask/superstruct").Struct<string, null>;
|
135
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
141
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
136
142
|
"eip155:eoa": "eip155:eoa";
|
137
143
|
"eip155:erc4337": "eip155:erc4337";
|
144
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
145
|
+
"bip122:p2sh": "bip122:p2sh";
|
138
146
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
147
|
+
"bip122:p2tr": "bip122:p2tr";
|
139
148
|
"solana:data-account": "solana:data-account";
|
140
149
|
}>;
|
141
150
|
address: import("@metamask/superstruct").Struct<string, null>;
|
@@ -217,7 +226,7 @@ export declare const ListAccountTransactionsRequestStruct: import("@metamask/sup
|
|
217
226
|
export type ListAccountTransactionsRequest = Infer<typeof ListAccountTransactionsRequestStruct>;
|
218
227
|
export declare const ListAccountTransactionsResponseStruct: import("@metamask/superstruct").Struct<{
|
219
228
|
data: {
|
220
|
-
type: "send" | "receive" | "swap";
|
229
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
221
230
|
id: string;
|
222
231
|
from: {
|
223
232
|
address: string;
|
@@ -267,7 +276,7 @@ export declare const ListAccountTransactionsResponseStruct: import("@metamask/su
|
|
267
276
|
next: string | null;
|
268
277
|
}, {
|
269
278
|
data: import("@metamask/superstruct").Struct<{
|
270
|
-
type: "send" | "receive" | "swap";
|
279
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
271
280
|
id: string;
|
272
281
|
from: {
|
273
282
|
address: string;
|
@@ -314,7 +323,7 @@ export declare const ListAccountTransactionsResponseStruct: import("@metamask/su
|
|
314
323
|
};
|
315
324
|
}[];
|
316
325
|
}[], import("@metamask/superstruct").Struct<{
|
317
|
-
type: "send" | "receive" | "swap";
|
326
|
+
type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive";
|
318
327
|
id: string;
|
319
328
|
from: {
|
320
329
|
address: string;
|
@@ -371,10 +380,13 @@ export declare const ListAccountTransactionsResponseStruct: import("@metamask/su
|
|
371
380
|
failed: "failed";
|
372
381
|
}>;
|
373
382
|
timestamp: import("@metamask/superstruct").Struct<number | null, null>;
|
374
|
-
type: import("@metamask/superstruct").Struct<"send" | "receive" | "swap", {
|
383
|
+
type: import("@metamask/superstruct").Struct<"unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive", {
|
384
|
+
unknown: "unknown";
|
375
385
|
send: "send";
|
376
386
|
receive: "receive";
|
377
387
|
swap: "swap";
|
388
|
+
"bridge:send": "bridge:send";
|
389
|
+
"bridge:receive": "bridge:receive";
|
378
390
|
}>;
|
379
391
|
from: import("@metamask/superstruct").Struct<{
|
380
392
|
address: string;
|
@@ -622,7 +634,7 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
622
634
|
jsonrpc: "2.0";
|
623
635
|
params: {
|
624
636
|
account: {
|
625
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
637
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
626
638
|
id: string;
|
627
639
|
options: Record<string, import("@metamask/utils").Json>;
|
628
640
|
address: string;
|
@@ -634,7 +646,7 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
634
646
|
method: import("@metamask/superstruct").Struct<"keyring_updateAccount", "keyring_updateAccount">;
|
635
647
|
params: import("@metamask/superstruct").Struct<{
|
636
648
|
account: {
|
637
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
649
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
638
650
|
id: string;
|
639
651
|
options: Record<string, import("@metamask/utils").Json>;
|
640
652
|
address: string;
|
@@ -643,7 +655,7 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
643
655
|
};
|
644
656
|
}, {
|
645
657
|
account: import("@metamask/superstruct").Struct<{
|
646
|
-
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account";
|
658
|
+
type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account";
|
647
659
|
id: string;
|
648
660
|
options: Record<string, import("@metamask/utils").Json>;
|
649
661
|
address: string;
|
@@ -651,10 +663,13 @@ export declare const UpdateAccountRequestStruct: import("@metamask/superstruct")
|
|
651
663
|
methods: string[];
|
652
664
|
}, {
|
653
665
|
id: import("@metamask/superstruct").Struct<string, null>;
|
654
|
-
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2wpkh" | "solana:data-account", {
|
666
|
+
type: import("@metamask/superstruct").Struct<"eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account", {
|
655
667
|
"eip155:eoa": "eip155:eoa";
|
656
668
|
"eip155:erc4337": "eip155:erc4337";
|
669
|
+
"bip122:p2pkh": "bip122:p2pkh";
|
670
|
+
"bip122:p2sh": "bip122:p2sh";
|
657
671
|
"bip122:p2wpkh": "bip122:p2wpkh";
|
672
|
+
"bip122:p2tr": "bip122:p2tr";
|
658
673
|
"solana:data-account": "solana:data-account";
|
659
674
|
}>;
|
660
675
|
address: import("@metamask/superstruct").Struct<string, null>;
|
package/dist/rpc.d.mts.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"rpc.d.mts","sourceRoot":"","sources":["../src/rpc.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,KAAK,EAAE,8BAA8B;AA2BnD;;GAEG;AACH,oBAAY,gBAAgB;IAC1B,YAAY,yBAAyB;IACrC,UAAU,uBAAuB;IACjC,aAAa,0BAA0B;IACvC,gBAAgB,6BAA6B;IAC7C,iBAAiB,8BAA8B;IAC/C,uBAAuB,oCAAoC;IAC3D,kBAAkB,+BAA+B;IACjD,qBAAqB,kCAAkC;IACvD,mBAAmB,gCAAgC;IACnD,aAAa,0BAA0B;IACvC,aAAa,0BAA0B;IACvC,aAAa,0BAA0B;IACvC,YAAY,yBAAyB;IACrC,UAAU,uBAAuB;IACjC,aAAa,0BAA0B;IACvC,cAAc,2BAA2B;IACzC,aAAa,0BAA0B;CACxC;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAE1D;AAYD,eAAO,MAAM,yBAAyB;;;;;;;;EAGpC,CAAC;AAEH,MAAM,MAAM,mBAAmB,GAAG,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAE1E,eAAO,MAAM,0BAA0B
|
1
|
+
{"version":3,"file":"rpc.d.mts","sourceRoot":"","sources":["../src/rpc.ts"],"names":[],"mappings":"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"}
|