@metamask-previews/keyring-api 23.2.0-c42f34c → 23.2.0-e5bc458

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/dist/api/account.d.cts +2 -2
  3. package/dist/api/account.d.mts +2 -2
  4. package/dist/api/asset.d.cts +2 -2
  5. package/dist/api/asset.d.mts +2 -2
  6. package/dist/api/request.d.cts +3 -3
  7. package/dist/api/request.d.mts +3 -3
  8. package/dist/api/response.d.cts +1 -1
  9. package/dist/api/response.d.mts +1 -1
  10. package/dist/api/transaction.cjs +19 -3
  11. package/dist/api/transaction.cjs.map +1 -1
  12. package/dist/api/transaction.d.cts +109 -77
  13. package/dist/api/transaction.d.cts.map +1 -1
  14. package/dist/api/transaction.d.mts +109 -77
  15. package/dist/api/transaction.d.mts.map +1 -1
  16. package/dist/api/transaction.mjs +19 -3
  17. package/dist/api/transaction.mjs.map +1 -1
  18. package/dist/btc/types.d.cts +8 -8
  19. package/dist/btc/types.d.mts +8 -8
  20. package/dist/eth/erc4337/types.d.cts +3 -3
  21. package/dist/eth/erc4337/types.d.mts +3 -3
  22. package/dist/eth/rpc/params.d.cts +29 -29
  23. package/dist/eth/rpc/params.d.mts +29 -29
  24. package/dist/eth/types.d.cts +4 -4
  25. package/dist/eth/types.d.mts +4 -4
  26. package/dist/events.d.cts +59 -56
  27. package/dist/events.d.cts.map +1 -1
  28. package/dist/events.d.mts +59 -56
  29. package/dist/events.d.mts.map +1 -1
  30. package/dist/rpc.d.cts +137 -131
  31. package/dist/rpc.d.cts.map +1 -1
  32. package/dist/rpc.d.mts +137 -131
  33. package/dist/rpc.d.mts.map +1 -1
  34. package/dist/sol/types.d.cts +2 -2
  35. package/dist/sol/types.d.mts +2 -2
  36. package/dist/trx/types.d.cts +2 -2
  37. package/dist/trx/types.d.mts +2 -2
  38. package/dist/v2/api/create-account/bip44.d.cts +1 -1
  39. package/dist/v2/api/create-account/bip44.d.mts +1 -1
  40. package/dist/v2/api/create-account/index.d.cts +1 -1
  41. package/dist/v2/api/create-account/index.d.mts +1 -1
  42. package/dist/v2/api/keyring-rpc.d.cts +28 -28
  43. package/dist/v2/api/keyring-rpc.d.mts +28 -28
  44. package/dist/xlm/types.d.cts +2 -2
  45. package/dist/xlm/types.d.mts +2 -2
  46. package/package.json +1 -1
package/dist/events.d.mts CHANGED
@@ -18,8 +18,6 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
18
18
  account: {
19
19
  type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "stellar:account" | "any:account";
20
20
  id: string;
21
- address: string;
22
- scopes: `${string}:${string}`[];
23
21
  options: Record<string, import("@metamask/utils").Json> & {
24
22
  entropy?: {
25
23
  type: "mnemonic";
@@ -33,6 +31,8 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
33
31
  };
34
32
  exportable?: boolean;
35
33
  };
34
+ address: string;
35
+ scopes: `${string}:${string}`[];
36
36
  methods: string[];
37
37
  };
38
38
  metamask?: {
@@ -48,8 +48,6 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
48
48
  account: {
49
49
  type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "stellar:account" | "any:account";
50
50
  id: string;
51
- address: string;
52
- scopes: `${string}:${string}`[];
53
51
  options: Record<string, import("@metamask/utils").Json> & {
54
52
  entropy?: {
55
53
  type: "mnemonic";
@@ -63,6 +61,8 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
63
61
  };
64
62
  exportable?: boolean;
65
63
  };
64
+ address: string;
65
+ scopes: `${string}:${string}`[];
66
66
  methods: string[];
67
67
  };
68
68
  metamask?: {
@@ -83,8 +83,6 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
83
83
  account: import("@metamask/superstruct").Struct<{
84
84
  type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "stellar:account" | "any:account";
85
85
  id: string;
86
- address: string;
87
- scopes: `${string}:${string}`[];
88
86
  options: Record<string, import("@metamask/utils").Json> & {
89
87
  entropy?: {
90
88
  type: "mnemonic";
@@ -98,6 +96,8 @@ export declare const AccountCreatedEventStruct: import("@metamask/superstruct").
98
96
  };
99
97
  exportable?: boolean;
100
98
  };
99
+ address: string;
100
+ scopes: `${string}:${string}`[];
101
101
  methods: string[];
102
102
  }, {
103
103
  id: import("@metamask/superstruct").Struct<string, null>;
@@ -163,8 +163,6 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
163
163
  account: {
164
164
  type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "stellar:account" | "any:account";
165
165
  id: string;
166
- address: string;
167
- scopes: `${string}:${string}`[];
168
166
  options: Record<string, import("@metamask/utils").Json> & {
169
167
  entropy?: {
170
168
  type: "mnemonic";
@@ -178,6 +176,8 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
178
176
  };
179
177
  exportable?: boolean;
180
178
  };
179
+ address: string;
180
+ scopes: `${string}:${string}`[];
181
181
  methods: string[];
182
182
  };
183
183
  };
@@ -187,8 +187,6 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
187
187
  account: {
188
188
  type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "stellar:account" | "any:account";
189
189
  id: string;
190
- address: string;
191
- scopes: `${string}:${string}`[];
192
190
  options: Record<string, import("@metamask/utils").Json> & {
193
191
  entropy?: {
194
192
  type: "mnemonic";
@@ -202,6 +200,8 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
202
200
  };
203
201
  exportable?: boolean;
204
202
  };
203
+ address: string;
204
+ scopes: `${string}:${string}`[];
205
205
  methods: string[];
206
206
  };
207
207
  }, {
@@ -211,8 +211,6 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
211
211
  account: import("@metamask/superstruct").Struct<{
212
212
  type: "eip155:eoa" | "eip155:erc4337" | "bip122:p2pkh" | "bip122:p2sh" | "bip122:p2wpkh" | "bip122:p2tr" | "solana:data-account" | "tron:eoa" | "stellar:account" | "any:account";
213
213
  id: string;
214
- address: string;
215
- scopes: `${string}:${string}`[];
216
214
  options: Record<string, import("@metamask/utils").Json> & {
217
215
  entropy?: {
218
216
  type: "mnemonic";
@@ -226,6 +224,8 @@ export declare const AccountUpdatedEventStruct: import("@metamask/superstruct").
226
224
  };
227
225
  exportable?: boolean;
228
226
  };
227
+ address: string;
228
+ scopes: `${string}:${string}`[];
229
229
  methods: string[];
230
230
  }, {
231
231
  id: import("@metamask/superstruct").Struct<string, null>;
@@ -283,14 +283,14 @@ export type AccountDeletedEventPayload = AccountDeletedEvent['params'];
283
283
  export declare const RequestApprovedEventStruct: import("@metamask/superstruct").Struct<{
284
284
  method: "notify:requestApproved";
285
285
  params: {
286
- id: string;
287
286
  result: import("@metamask/utils").Json;
287
+ id: string;
288
288
  };
289
289
  }, {
290
290
  method: import("@metamask/superstruct").Struct<"notify:requestApproved", "notify:requestApproved">;
291
291
  params: import("@metamask/superstruct").Struct<{
292
- id: string;
293
292
  result: import("@metamask/utils").Json;
293
+ id: string;
294
294
  }, {
295
295
  /**
296
296
  * Request ID.
@@ -368,17 +368,13 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
368
368
  method: "notify:accountTransactionsUpdated";
369
369
  params: {
370
370
  transactions: Record<string, {
371
- type: "send" | "receive" | "swap" | "bridge:send" | "bridge:receive" | "stake:deposit" | "stake:withdraw" | "token:approve" | "unknown";
371
+ type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive" | "stake:deposit" | "stake:withdraw" | "token:approve" | "token:disapprove";
372
372
  id: string;
373
- account: string;
374
- status: "submitted" | "unconfirmed" | "confirmed" | "failed";
375
- timestamp: number | null;
376
- chain: `${string}:${string}`;
377
373
  from: {
378
374
  address: string;
379
375
  asset: {
380
- type: `${string}:${string}/${string}:${string}`;
381
376
  unit: string;
377
+ type: `${string}:${string}/${string}:${string}`;
382
378
  amount: string;
383
379
  fungible: true;
384
380
  } | {
@@ -386,11 +382,19 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
386
382
  fungible: false;
387
383
  } | null;
388
384
  }[];
385
+ events: {
386
+ status: "submitted" | "unconfirmed" | "confirmed" | "failed";
387
+ timestamp: number | null;
388
+ }[];
389
+ chain: `${string}:${string}`;
390
+ status: "submitted" | "unconfirmed" | "confirmed" | "failed";
391
+ account: string;
392
+ timestamp: number | null;
389
393
  to: {
390
394
  address: string;
391
395
  asset: {
392
- type: `${string}:${string}/${string}:${string}`;
393
396
  unit: string;
397
+ type: `${string}:${string}/${string}:${string}`;
394
398
  amount: string;
395
399
  fungible: true;
396
400
  } | {
@@ -401,8 +405,8 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
401
405
  fees: {
402
406
  type: "base" | "priority";
403
407
  asset: {
404
- type: `${string}:${string}/${string}:${string}`;
405
408
  unit: string;
409
+ type: `${string}:${string}/${string}:${string}`;
406
410
  amount: string;
407
411
  fungible: true;
408
412
  } | {
@@ -410,13 +414,10 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
410
414
  fungible: false;
411
415
  };
412
416
  }[];
413
- events: {
414
- status: "submitted" | "unconfirmed" | "confirmed" | "failed";
415
- timestamp: number | null;
416
- }[];
417
417
  details?: {
418
418
  origin?: string;
419
419
  securityAlertResponse?: "Benign" | "Warning" | "Malicious";
420
+ typeLabel?: string;
420
421
  };
421
422
  }[]>;
422
423
  };
@@ -424,17 +425,13 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
424
425
  method: import("@metamask/superstruct").Struct<"notify:accountTransactionsUpdated", "notify:accountTransactionsUpdated">;
425
426
  params: import("@metamask/superstruct").Struct<{
426
427
  transactions: Record<string, {
427
- type: "send" | "receive" | "swap" | "bridge:send" | "bridge:receive" | "stake:deposit" | "stake:withdraw" | "token:approve" | "unknown";
428
+ type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive" | "stake:deposit" | "stake:withdraw" | "token:approve" | "token:disapprove";
428
429
  id: string;
429
- account: string;
430
- status: "submitted" | "unconfirmed" | "confirmed" | "failed";
431
- timestamp: number | null;
432
- chain: `${string}:${string}`;
433
430
  from: {
434
431
  address: string;
435
432
  asset: {
436
- type: `${string}:${string}/${string}:${string}`;
437
433
  unit: string;
434
+ type: `${string}:${string}/${string}:${string}`;
438
435
  amount: string;
439
436
  fungible: true;
440
437
  } | {
@@ -442,11 +439,19 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
442
439
  fungible: false;
443
440
  } | null;
444
441
  }[];
442
+ events: {
443
+ status: "submitted" | "unconfirmed" | "confirmed" | "failed";
444
+ timestamp: number | null;
445
+ }[];
446
+ chain: `${string}:${string}`;
447
+ status: "submitted" | "unconfirmed" | "confirmed" | "failed";
448
+ account: string;
449
+ timestamp: number | null;
445
450
  to: {
446
451
  address: string;
447
452
  asset: {
448
- type: `${string}:${string}/${string}:${string}`;
449
453
  unit: string;
454
+ type: `${string}:${string}/${string}:${string}`;
450
455
  amount: string;
451
456
  fungible: true;
452
457
  } | {
@@ -457,8 +462,8 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
457
462
  fees: {
458
463
  type: "base" | "priority";
459
464
  asset: {
460
- type: `${string}:${string}/${string}:${string}`;
461
465
  unit: string;
466
+ type: `${string}:${string}/${string}:${string}`;
462
467
  amount: string;
463
468
  fungible: true;
464
469
  } | {
@@ -466,13 +471,10 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
466
471
  fungible: false;
467
472
  };
468
473
  }[];
469
- events: {
470
- status: "submitted" | "unconfirmed" | "confirmed" | "failed";
471
- timestamp: number | null;
472
- }[];
473
474
  details?: {
474
475
  origin?: string;
475
476
  securityAlertResponse?: "Benign" | "Warning" | "Malicious";
477
+ typeLabel?: string;
476
478
  };
477
479
  }[]>;
478
480
  }, {
@@ -480,17 +482,13 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
480
482
  * Transactions updates of accounts owned by the Snap.
481
483
  */
482
484
  transactions: import("@metamask/superstruct").Struct<Record<string, {
483
- type: "send" | "receive" | "swap" | "bridge:send" | "bridge:receive" | "stake:deposit" | "stake:withdraw" | "token:approve" | "unknown";
485
+ type: "unknown" | "send" | "receive" | "swap" | "bridge:send" | "bridge:receive" | "stake:deposit" | "stake:withdraw" | "token:approve" | "token:disapprove";
484
486
  id: string;
485
- account: string;
486
- status: "submitted" | "unconfirmed" | "confirmed" | "failed";
487
- timestamp: number | null;
488
- chain: `${string}:${string}`;
489
487
  from: {
490
488
  address: string;
491
489
  asset: {
492
- type: `${string}:${string}/${string}:${string}`;
493
490
  unit: string;
491
+ type: `${string}:${string}/${string}:${string}`;
494
492
  amount: string;
495
493
  fungible: true;
496
494
  } | {
@@ -498,11 +496,19 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
498
496
  fungible: false;
499
497
  } | null;
500
498
  }[];
499
+ events: {
500
+ status: "submitted" | "unconfirmed" | "confirmed" | "failed";
501
+ timestamp: number | null;
502
+ }[];
503
+ chain: `${string}:${string}`;
504
+ status: "submitted" | "unconfirmed" | "confirmed" | "failed";
505
+ account: string;
506
+ timestamp: number | null;
501
507
  to: {
502
508
  address: string;
503
509
  asset: {
504
- type: `${string}:${string}/${string}:${string}`;
505
510
  unit: string;
511
+ type: `${string}:${string}/${string}:${string}`;
506
512
  amount: string;
507
513
  fungible: true;
508
514
  } | {
@@ -513,8 +519,8 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
513
519
  fees: {
514
520
  type: "base" | "priority";
515
521
  asset: {
516
- type: `${string}:${string}/${string}:${string}`;
517
522
  unit: string;
523
+ type: `${string}:${string}/${string}:${string}`;
518
524
  amount: string;
519
525
  fungible: true;
520
526
  } | {
@@ -522,13 +528,10 @@ export declare const AccountTransactionsUpdatedEventStruct: import("@metamask/su
522
528
  fungible: false;
523
529
  };
524
530
  }[];
525
- events: {
526
- status: "submitted" | "unconfirmed" | "confirmed" | "failed";
527
- timestamp: number | null;
528
- }[];
529
531
  details?: {
530
532
  origin?: string;
531
533
  securityAlertResponse?: "Benign" | "Warning" | "Malicious";
534
+ typeLabel?: string;
532
535
  };
533
536
  }[]>, null>;
534
537
  }>;
@@ -546,24 +549,24 @@ export declare const AccountAssetListUpdatedEventStruct: import("@metamask/super
546
549
  method: "notify:accountAssetListUpdated";
547
550
  params: {
548
551
  assets: Record<string, {
549
- added: (`${string}:${string}/${string}:${string}/${string}` | `${string}:${string}/${string}:${string}`)[];
550
- removed: (`${string}:${string}/${string}:${string}/${string}` | `${string}:${string}/${string}:${string}`)[];
552
+ added: (`${string}:${string}/${string}:${string}` | `${string}:${string}/${string}:${string}/${string}`)[];
553
+ removed: (`${string}:${string}/${string}:${string}` | `${string}:${string}/${string}:${string}/${string}`)[];
551
554
  }>;
552
555
  };
553
556
  }, {
554
557
  method: import("@metamask/superstruct").Struct<"notify:accountAssetListUpdated", "notify:accountAssetListUpdated">;
555
558
  params: import("@metamask/superstruct").Struct<{
556
559
  assets: Record<string, {
557
- added: (`${string}:${string}/${string}:${string}/${string}` | `${string}:${string}/${string}:${string}`)[];
558
- removed: (`${string}:${string}/${string}:${string}/${string}` | `${string}:${string}/${string}:${string}`)[];
560
+ added: (`${string}:${string}/${string}:${string}` | `${string}:${string}/${string}:${string}/${string}`)[];
561
+ removed: (`${string}:${string}/${string}:${string}` | `${string}:${string}/${string}:${string}/${string}`)[];
559
562
  }>;
560
563
  }, {
561
564
  /**
562
565
  * Asset list update of accounts owned by the Snap.
563
566
  */
564
567
  assets: import("@metamask/superstruct").Struct<Record<string, {
565
- added: (`${string}:${string}/${string}:${string}/${string}` | `${string}:${string}/${string}:${string}`)[];
566
- removed: (`${string}:${string}/${string}:${string}/${string}` | `${string}:${string}/${string}:${string}`)[];
568
+ added: (`${string}:${string}/${string}:${string}` | `${string}:${string}/${string}:${string}/${string}`)[];
569
+ removed: (`${string}:${string}/${string}:${string}` | `${string}:${string}/${string}:${string}/${string}`)[];
567
570
  }>, null>;
568
571
  }>;
569
572
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"events.d.mts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"events.d.mts","sourceRoot":"","sources":["../src/events.ts"],"names":[],"mappings":"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"}