@sats-connect/core 0.4.0-9147908 → 0.4.0-97f6fb5

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/dist/index.d.mts CHANGED
@@ -623,6 +623,7 @@ declare const getInscriptionsParamsSchema: v.ObjectSchema<{
623
623
  readonly offset: v.NumberSchema<undefined>;
624
624
  readonly limit: v.NumberSchema<undefined>;
625
625
  }, undefined>;
626
+ type GetInscriptionsParams = v.InferOutput<typeof getInscriptionsParamsSchema>;
626
627
  declare const getInscriptionsResultSchema: v.ObjectSchema<{
627
628
  readonly total: v.NumberSchema<undefined>;
628
629
  readonly limit: v.NumberSchema<undefined>;
@@ -641,7 +642,8 @@ declare const getInscriptionsResultSchema: v.ObjectSchema<{
641
642
  readonly output: v.StringSchema<undefined>;
642
643
  }, undefined>, undefined>;
643
644
  }, undefined>;
644
- declare const getInscriptionsSchema: v.ObjectSchema<{
645
+ type GetInscriptionsResult = v.InferOutput<typeof getInscriptionsResultSchema>;
646
+ declare const getInscriptionsRequestMessageSchema: v.ObjectSchema<{
645
647
  readonly method: v.LiteralSchema<"ord_getInscriptions", undefined>;
646
648
  readonly params: v.ObjectSchema<{
647
649
  readonly offset: v.NumberSchema<undefined>;
@@ -650,7 +652,8 @@ declare const getInscriptionsSchema: v.ObjectSchema<{
650
652
  readonly id: v.StringSchema<undefined>;
651
653
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
652
654
  }, undefined>;
653
- type GetInscriptions = MethodParamsAndResult<v.InferOutput<typeof getInscriptionsParamsSchema>, v.InferOutput<typeof getInscriptionsResultSchema>>;
655
+ type GetInscriptionsRequestMessage = v.InferOutput<typeof getInscriptionsRequestMessageSchema>;
656
+ type GetInscriptions = MethodParamsAndResult<GetInscriptionsParams, GetInscriptionsResult>;
654
657
  declare const sendInscriptionsMethodName = "ord_sendInscriptions";
655
658
  declare const sendInscriptionsParamsSchema: v.ObjectSchema<{
656
659
  readonly transfers: v.ArraySchema<v.ObjectSchema<{
@@ -658,10 +661,12 @@ declare const sendInscriptionsParamsSchema: v.ObjectSchema<{
658
661
  readonly inscriptionId: v.StringSchema<undefined>;
659
662
  }, undefined>, undefined>;
660
663
  }, undefined>;
664
+ type SendInscriptionsParams = v.InferOutput<typeof sendInscriptionsParamsSchema>;
661
665
  declare const sendInscriptionsResultSchema: v.ObjectSchema<{
662
666
  readonly txid: v.StringSchema<undefined>;
663
667
  }, undefined>;
664
- declare const sendInscriptionsSchema: v.ObjectSchema<{
668
+ type SendInscriptionsResult = v.InferOutput<typeof sendInscriptionsResultSchema>;
669
+ declare const sendInscriptionsRequestMessageSchema: v.ObjectSchema<{
665
670
  readonly method: v.LiteralSchema<"ord_sendInscriptions", undefined>;
666
671
  readonly params: v.ObjectSchema<{
667
672
  readonly transfers: v.ArraySchema<v.ObjectSchema<{
@@ -672,7 +677,8 @@ declare const sendInscriptionsSchema: v.ObjectSchema<{
672
677
  readonly id: v.StringSchema<undefined>;
673
678
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
674
679
  }, undefined>;
675
- type SendInscriptions = MethodParamsAndResult<v.InferOutput<typeof sendInscriptionsParamsSchema>, v.InferOutput<typeof sendInscriptionsResultSchema>>;
680
+ type SendInscriptionsRequestMessage = v.InferOutput<typeof sendInscriptionsRequestMessageSchema>;
681
+ type SendInscriptions = MethodParamsAndResult<SendInscriptionsParams, SendInscriptionsResult>;
676
682
 
677
683
  type CreateMintOrderRequest = {
678
684
  runeName: string;
@@ -911,7 +917,7 @@ declare const runesTransferResultSchema: v.ObjectSchema<{
911
917
  readonly txid: v.StringSchema<undefined>;
912
918
  }, undefined>;
913
919
  type RunesTransferResult = v.InferOutput<typeof runesTransferResultSchema>;
914
- declare const runesTransferRequestSchema: v.ObjectSchema<{
920
+ declare const runesTransferRequestMessageSchema: v.ObjectSchema<{
915
921
  readonly method: v.LiteralSchema<"runes_transfer", undefined>;
916
922
  readonly params: v.ObjectSchema<{
917
923
  readonly recipients: v.ArraySchema<v.ObjectSchema<{
@@ -923,7 +929,7 @@ declare const runesTransferRequestSchema: v.ObjectSchema<{
923
929
  readonly id: v.StringSchema<undefined>;
924
930
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
925
931
  }, undefined>;
926
- type RunesTransferRequest = v.InferOutput<typeof runesTransferRequestSchema>;
932
+ type RunesTransferRequestMessage = v.InferOutput<typeof runesTransferRequestMessageSchema>;
927
933
  type RunesTransfer = MethodParamsAndResult<TransferRunesParams, RunesTransferResult>;
928
934
 
929
935
  declare const stxCallContractMethodName = "stx_callContract";
@@ -1393,146 +1399,42 @@ type StxTransferStx = MethodParamsAndResult<StxTransferStxParams, StxTransferStx
1393
1399
  * themselves.
1394
1400
  */
1395
1401
  declare const permissionTemplate: v.VariantSchema<"type", [v.ObjectSchema<{
1396
- readonly actions: Omit<v.ObjectSchema<{
1397
- readonly read: v.BooleanSchema<undefined>;
1398
- readonly autoSign: v.BooleanSchema<undefined>;
1399
- readonly rename: v.BooleanSchema<undefined>;
1400
- }, undefined>, "_types" | "_run" | "entries"> & {
1401
- readonly entries: {
1402
- readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1403
- readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1404
- readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1405
- };
1406
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1407
- read?: boolean | undefined;
1408
- autoSign?: boolean | undefined;
1409
- rename?: boolean | undefined;
1410
- }, v.ObjectIssue | v.BooleanIssue>;
1411
- readonly _types?: {
1412
- readonly input: {
1413
- read?: boolean | undefined;
1414
- autoSign?: boolean | undefined;
1415
- rename?: boolean | undefined;
1416
- };
1417
- readonly output: {
1418
- read?: boolean | undefined;
1419
- autoSign?: boolean | undefined;
1420
- rename?: boolean | undefined;
1421
- };
1422
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1423
- } | undefined;
1424
- };
1425
1402
  readonly type: v.LiteralSchema<"account", undefined>;
1426
1403
  readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1404
+ readonly actions: v.ObjectSchema<{
1405
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1406
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1407
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1408
+ }, undefined>;
1427
1409
  }, undefined>, v.ObjectSchema<{
1428
- readonly actions: Omit<v.ObjectSchema<{
1429
- readonly addPrivateKey: v.BooleanSchema<undefined>;
1430
- readonly openPopup: v.BooleanSchema<undefined>;
1431
- readonly openFullPage: v.BooleanSchema<undefined>;
1432
- readonly readAllAccounts: v.BooleanSchema<undefined>;
1433
- }, undefined>, "_types" | "_run" | "entries"> & {
1434
- readonly entries: {
1435
- readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1436
- readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1437
- readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1438
- readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1439
- };
1440
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1441
- addPrivateKey?: boolean | undefined;
1442
- openPopup?: boolean | undefined;
1443
- openFullPage?: boolean | undefined;
1444
- readAllAccounts?: boolean | undefined;
1445
- }, v.ObjectIssue | v.BooleanIssue>;
1446
- readonly _types?: {
1447
- readonly input: {
1448
- addPrivateKey?: boolean | undefined;
1449
- openPopup?: boolean | undefined;
1450
- openFullPage?: boolean | undefined;
1451
- readAllAccounts?: boolean | undefined;
1452
- };
1453
- readonly output: {
1454
- addPrivateKey?: boolean | undefined;
1455
- openPopup?: boolean | undefined;
1456
- openFullPage?: boolean | undefined;
1457
- readAllAccounts?: boolean | undefined;
1458
- };
1459
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1460
- } | undefined;
1461
- };
1462
1410
  readonly type: v.LiteralSchema<"wallet", undefined>;
1463
1411
  readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1412
+ readonly actions: v.ObjectSchema<{
1413
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1414
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1415
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1416
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1417
+ }, undefined>;
1464
1418
  }, undefined>], undefined>;
1465
1419
  type PermissionWithoutClientId = v.InferOutput<typeof permissionTemplate>;
1466
1420
  declare const requestPermissionsMethodName = "wallet_requestPermissions";
1467
1421
  declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1468
- readonly actions: Omit<v.ObjectSchema<{
1469
- readonly read: v.BooleanSchema<undefined>;
1470
- readonly autoSign: v.BooleanSchema<undefined>;
1471
- readonly rename: v.BooleanSchema<undefined>;
1472
- }, undefined>, "_types" | "_run" | "entries"> & {
1473
- readonly entries: {
1474
- readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1475
- readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1476
- readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1477
- };
1478
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1479
- read?: boolean | undefined;
1480
- autoSign?: boolean | undefined;
1481
- rename?: boolean | undefined;
1482
- }, v.ObjectIssue | v.BooleanIssue>;
1483
- readonly _types?: {
1484
- readonly input: {
1485
- read?: boolean | undefined;
1486
- autoSign?: boolean | undefined;
1487
- rename?: boolean | undefined;
1488
- };
1489
- readonly output: {
1490
- read?: boolean | undefined;
1491
- autoSign?: boolean | undefined;
1492
- rename?: boolean | undefined;
1493
- };
1494
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1495
- } | undefined;
1496
- };
1497
1422
  readonly type: v.LiteralSchema<"account", undefined>;
1498
1423
  readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1424
+ readonly actions: v.ObjectSchema<{
1425
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1426
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1427
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1428
+ }, undefined>;
1499
1429
  }, undefined>, v.ObjectSchema<{
1500
- readonly actions: Omit<v.ObjectSchema<{
1501
- readonly addPrivateKey: v.BooleanSchema<undefined>;
1502
- readonly openPopup: v.BooleanSchema<undefined>;
1503
- readonly openFullPage: v.BooleanSchema<undefined>;
1504
- readonly readAllAccounts: v.BooleanSchema<undefined>;
1505
- }, undefined>, "_types" | "_run" | "entries"> & {
1506
- readonly entries: {
1507
- readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1508
- readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1509
- readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1510
- readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1511
- };
1512
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1513
- addPrivateKey?: boolean | undefined;
1514
- openPopup?: boolean | undefined;
1515
- openFullPage?: boolean | undefined;
1516
- readAllAccounts?: boolean | undefined;
1517
- }, v.ObjectIssue | v.BooleanIssue>;
1518
- readonly _types?: {
1519
- readonly input: {
1520
- addPrivateKey?: boolean | undefined;
1521
- openPopup?: boolean | undefined;
1522
- openFullPage?: boolean | undefined;
1523
- readAllAccounts?: boolean | undefined;
1524
- };
1525
- readonly output: {
1526
- addPrivateKey?: boolean | undefined;
1527
- openPopup?: boolean | undefined;
1528
- openFullPage?: boolean | undefined;
1529
- readAllAccounts?: boolean | undefined;
1530
- };
1531
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1532
- } | undefined;
1533
- };
1534
1430
  readonly type: v.LiteralSchema<"wallet", undefined>;
1535
1431
  readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1432
+ readonly actions: v.ObjectSchema<{
1433
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1434
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1435
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1436
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1437
+ }, undefined>;
1536
1438
  }, undefined>], undefined>, undefined>, never>;
1537
1439
  type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
1538
1440
  declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
@@ -1540,74 +1442,22 @@ type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSch
1540
1442
  declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
1541
1443
  readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
1542
1444
  readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1543
- readonly actions: Omit<v.ObjectSchema<{
1544
- readonly read: v.BooleanSchema<undefined>;
1545
- readonly autoSign: v.BooleanSchema<undefined>;
1546
- readonly rename: v.BooleanSchema<undefined>;
1547
- }, undefined>, "_types" | "_run" | "entries"> & {
1548
- readonly entries: {
1549
- readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1550
- readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1551
- readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1552
- };
1553
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1554
- read?: boolean | undefined;
1555
- autoSign?: boolean | undefined;
1556
- rename?: boolean | undefined;
1557
- }, v.ObjectIssue | v.BooleanIssue>;
1558
- readonly _types?: {
1559
- readonly input: {
1560
- read?: boolean | undefined;
1561
- autoSign?: boolean | undefined;
1562
- rename?: boolean | undefined;
1563
- };
1564
- readonly output: {
1565
- read?: boolean | undefined;
1566
- autoSign?: boolean | undefined;
1567
- rename?: boolean | undefined;
1568
- };
1569
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1570
- } | undefined;
1571
- };
1572
1445
  readonly type: v.LiteralSchema<"account", undefined>;
1573
1446
  readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1447
+ readonly actions: v.ObjectSchema<{
1448
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1449
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1450
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1451
+ }, undefined>;
1574
1452
  }, undefined>, v.ObjectSchema<{
1575
- readonly actions: Omit<v.ObjectSchema<{
1576
- readonly addPrivateKey: v.BooleanSchema<undefined>;
1577
- readonly openPopup: v.BooleanSchema<undefined>;
1578
- readonly openFullPage: v.BooleanSchema<undefined>;
1579
- readonly readAllAccounts: v.BooleanSchema<undefined>;
1580
- }, undefined>, "_types" | "_run" | "entries"> & {
1581
- readonly entries: {
1582
- readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1583
- readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1584
- readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1585
- readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1586
- };
1587
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1588
- addPrivateKey?: boolean | undefined;
1589
- openPopup?: boolean | undefined;
1590
- openFullPage?: boolean | undefined;
1591
- readAllAccounts?: boolean | undefined;
1592
- }, v.ObjectIssue | v.BooleanIssue>;
1593
- readonly _types?: {
1594
- readonly input: {
1595
- addPrivateKey?: boolean | undefined;
1596
- openPopup?: boolean | undefined;
1597
- openFullPage?: boolean | undefined;
1598
- readAllAccounts?: boolean | undefined;
1599
- };
1600
- readonly output: {
1601
- addPrivateKey?: boolean | undefined;
1602
- openPopup?: boolean | undefined;
1603
- openFullPage?: boolean | undefined;
1604
- readAllAccounts?: boolean | undefined;
1605
- };
1606
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1607
- } | undefined;
1608
- };
1609
1453
  readonly type: v.LiteralSchema<"wallet", undefined>;
1610
1454
  readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1455
+ readonly actions: v.ObjectSchema<{
1456
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1457
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1458
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1459
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1460
+ }, undefined>;
1611
1461
  }, undefined>], undefined>, undefined>, never>;
1612
1462
  readonly id: v.StringSchema<undefined>;
1613
1463
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
@@ -1661,19 +1511,19 @@ declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSchema<"
1661
1511
  readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1662
1512
  readonly clientId: v.StringSchema<undefined>;
1663
1513
  readonly actions: v.ObjectSchema<{
1664
- readonly read: v.BooleanSchema<undefined>;
1665
- readonly autoSign: v.BooleanSchema<undefined>;
1666
- readonly rename: v.BooleanSchema<undefined>;
1514
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1515
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1516
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1667
1517
  }, undefined>;
1668
1518
  }, undefined>, v.ObjectSchema<{
1669
1519
  readonly type: v.LiteralSchema<"wallet", undefined>;
1670
1520
  readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1671
1521
  readonly clientId: v.StringSchema<undefined>;
1672
1522
  readonly actions: v.ObjectSchema<{
1673
- readonly addPrivateKey: v.BooleanSchema<undefined>;
1674
- readonly openPopup: v.BooleanSchema<undefined>;
1675
- readonly openFullPage: v.BooleanSchema<undefined>;
1676
- readonly readAllAccounts: v.BooleanSchema<undefined>;
1523
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1524
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1525
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1526
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1677
1527
  }, undefined>;
1678
1528
  }, undefined>], undefined>, undefined>;
1679
1529
  type GetCurrentPermissionsResult = v.InferOutput<typeof getCurrentPermissionsResultSchema>;
@@ -1710,74 +1560,22 @@ type GetAccount = MethodParamsAndResult<GetAccountParams, GetAccountResult>;
1710
1560
  declare const connectMethodName = "wallet_connect";
1711
1561
  declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
1712
1562
  readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1713
- readonly actions: Omit<v.ObjectSchema<{
1714
- readonly read: v.BooleanSchema<undefined>;
1715
- readonly autoSign: v.BooleanSchema<undefined>;
1716
- readonly rename: v.BooleanSchema<undefined>;
1717
- }, undefined>, "_types" | "_run" | "entries"> & {
1718
- readonly entries: {
1719
- readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1720
- readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1721
- readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1722
- };
1723
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1724
- read?: boolean | undefined;
1725
- autoSign?: boolean | undefined;
1726
- rename?: boolean | undefined;
1727
- }, v.ObjectIssue | v.BooleanIssue>;
1728
- readonly _types?: {
1729
- readonly input: {
1730
- read?: boolean | undefined;
1731
- autoSign?: boolean | undefined;
1732
- rename?: boolean | undefined;
1733
- };
1734
- readonly output: {
1735
- read?: boolean | undefined;
1736
- autoSign?: boolean | undefined;
1737
- rename?: boolean | undefined;
1738
- };
1739
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1740
- } | undefined;
1741
- };
1742
1563
  readonly type: v.LiteralSchema<"account", undefined>;
1743
1564
  readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1565
+ readonly actions: v.ObjectSchema<{
1566
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1567
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1568
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1569
+ }, undefined>;
1744
1570
  }, undefined>, v.ObjectSchema<{
1745
- readonly actions: Omit<v.ObjectSchema<{
1746
- readonly addPrivateKey: v.BooleanSchema<undefined>;
1747
- readonly openPopup: v.BooleanSchema<undefined>;
1748
- readonly openFullPage: v.BooleanSchema<undefined>;
1749
- readonly readAllAccounts: v.BooleanSchema<undefined>;
1750
- }, undefined>, "_types" | "_run" | "entries"> & {
1751
- readonly entries: {
1752
- readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1753
- readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1754
- readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1755
- readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1756
- };
1757
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1758
- addPrivateKey?: boolean | undefined;
1759
- openPopup?: boolean | undefined;
1760
- openFullPage?: boolean | undefined;
1761
- readAllAccounts?: boolean | undefined;
1762
- }, v.ObjectIssue | v.BooleanIssue>;
1763
- readonly _types?: {
1764
- readonly input: {
1765
- addPrivateKey?: boolean | undefined;
1766
- openPopup?: boolean | undefined;
1767
- openFullPage?: boolean | undefined;
1768
- readAllAccounts?: boolean | undefined;
1769
- };
1770
- readonly output: {
1771
- addPrivateKey?: boolean | undefined;
1772
- openPopup?: boolean | undefined;
1773
- openFullPage?: boolean | undefined;
1774
- readAllAccounts?: boolean | undefined;
1775
- };
1776
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1777
- } | undefined;
1778
- };
1779
1571
  readonly type: v.LiteralSchema<"wallet", undefined>;
1780
1572
  readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1573
+ readonly actions: v.ObjectSchema<{
1574
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1575
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1576
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1577
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1578
+ }, undefined>;
1781
1579
  }, undefined>], undefined>, undefined>, never>;
1782
1580
  }, undefined>, never>;
1783
1581
  type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
@@ -1796,74 +1594,22 @@ declare const connectRequestMessageSchema: v.ObjectSchema<{
1796
1594
  readonly method: v.LiteralSchema<"wallet_connect", undefined>;
1797
1595
  readonly params: v.NullishSchema<v.ObjectSchema<{
1798
1596
  readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1799
- readonly actions: Omit<v.ObjectSchema<{
1800
- readonly read: v.BooleanSchema<undefined>;
1801
- readonly autoSign: v.BooleanSchema<undefined>;
1802
- readonly rename: v.BooleanSchema<undefined>;
1803
- }, undefined>, "_types" | "_run" | "entries"> & {
1804
- readonly entries: {
1805
- readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1806
- readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1807
- readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1808
- };
1809
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1810
- read?: boolean | undefined;
1811
- autoSign?: boolean | undefined;
1812
- rename?: boolean | undefined;
1813
- }, v.ObjectIssue | v.BooleanIssue>;
1814
- readonly _types?: {
1815
- readonly input: {
1816
- read?: boolean | undefined;
1817
- autoSign?: boolean | undefined;
1818
- rename?: boolean | undefined;
1819
- };
1820
- readonly output: {
1821
- read?: boolean | undefined;
1822
- autoSign?: boolean | undefined;
1823
- rename?: boolean | undefined;
1824
- };
1825
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1826
- } | undefined;
1827
- };
1828
1597
  readonly type: v.LiteralSchema<"account", undefined>;
1829
1598
  readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1599
+ readonly actions: v.ObjectSchema<{
1600
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1601
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1602
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1603
+ }, undefined>;
1830
1604
  }, undefined>, v.ObjectSchema<{
1831
- readonly actions: Omit<v.ObjectSchema<{
1832
- readonly addPrivateKey: v.BooleanSchema<undefined>;
1833
- readonly openPopup: v.BooleanSchema<undefined>;
1834
- readonly openFullPage: v.BooleanSchema<undefined>;
1835
- readonly readAllAccounts: v.BooleanSchema<undefined>;
1836
- }, undefined>, "_types" | "_run" | "entries"> & {
1837
- readonly entries: {
1838
- readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1839
- readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1840
- readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1841
- readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1842
- };
1843
- readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1844
- addPrivateKey?: boolean | undefined;
1845
- openPopup?: boolean | undefined;
1846
- openFullPage?: boolean | undefined;
1847
- readAllAccounts?: boolean | undefined;
1848
- }, v.ObjectIssue | v.BooleanIssue>;
1849
- readonly _types?: {
1850
- readonly input: {
1851
- addPrivateKey?: boolean | undefined;
1852
- openPopup?: boolean | undefined;
1853
- openFullPage?: boolean | undefined;
1854
- readAllAccounts?: boolean | undefined;
1855
- };
1856
- readonly output: {
1857
- addPrivateKey?: boolean | undefined;
1858
- openPopup?: boolean | undefined;
1859
- openFullPage?: boolean | undefined;
1860
- readAllAccounts?: boolean | undefined;
1861
- };
1862
- readonly issue: v.ObjectIssue | v.BooleanIssue;
1863
- } | undefined;
1864
- };
1865
1605
  readonly type: v.LiteralSchema<"wallet", undefined>;
1866
1606
  readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1607
+ readonly actions: v.ObjectSchema<{
1608
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1609
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1610
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1611
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1612
+ }, undefined>;
1867
1613
  }, undefined>], undefined>, undefined>, never>;
1868
1614
  }, undefined>, never>;
1869
1615
  readonly id: v.StringSchema<undefined>;
@@ -1951,4 +1697,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
1951
1697
  declare const DefaultAdaptersInfo: Record<string, Provider>;
1952
1698
  declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
1953
1699
 
1954
- export { type AccountChangeEvent, type AddListener, type Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type Capability, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type Disconnect, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, MessageSigningProtocols, type MethodParamsAndResult, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, type PermissionWithoutClientId, type Provider, type PsbtPayload, type Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesEstimateEtch, type RunesEstimateEtchParams, type RunesEstimateEtchResult, type RunesEstimateMint, type RunesEstimateRbfOrder, type RunesEtch, type RunesEtchParams, type RunesEtchRequestMessage, type RunesEtchResult, type RunesGetBalance, type RunesGetBalanceParams, type RunesGetBalanceResult, type RunesGetOrder, type RunesMint, type RunesMintParams, type RunesMintRequestMessage, type RunesMintResult, type RunesRbfOrder, type RunesRequestMethod, type RunesRequests, type RunesTransfer, type RunesTransferRequest, type RunesTransferResult, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type StxCallContract, type StxCallContractParams, type StxCallContractRequestMessage, type StxCallContractResult, type StxDeployContract, type StxDeployContractParams, type StxDeployContractRequestMessage, type StxDeployContractResult, type StxGetAccounts, type StxGetAccountsParams, type StxGetAccountsRequestMessage, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignMessage, type StxSignMessageParams, type StxSignMessageRequestMessage, type StxSignMessageResult, type StxSignStructuredMessage, type StxSignStructuredMessageParams, type StxSignStructuredMessageRequestMessage, type StxSignStructuredMessageResult, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxTransferStx, type StxTransferStxParams, type StxTransferStxRequestMessage, type StxTransferStxResult, type SupportedWallet, type TransferRunesParams, type WalletEvent, type WalletRequests, type WalletType, accountChangeEventName, accountChangeSchema, addListener, addressSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsResultSchema, getInscriptionsSchema, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permissionTemplate, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, type runesEstimateMintParams, type runesEstimateMintResult, runesEtchMethodName, runesEtchParamsSchema, runesEtchRequestMessageSchema, runesEtchResultSchema, runesGetBalanceMethodName, runesGetBalanceParamsSchema, type runesGetBalanceRequestMessage, runesGetBalanceRequestMessageSchema, runesGetBalanceResultSchema, runesMintMethodName, runesMintParamsSchema, runesMintRequestMessageSchema, runesMintResultSchema, runesTransferMethodName, runesTransferParamsSchema, runesTransferRequestSchema, runesTransferResultSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsResultSchema, sendInscriptionsSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, stxCallContractMethodName, stxCallContractParamsSchema, stxCallContractRequestMessageSchema, stxCallContractResultSchema, stxDeployContractMethodName, stxDeployContractParamsSchema, stxDeployContractRequestMessageSchema, stxDeployContractResultSchema, stxGetAccountsMethodName, stxGetAccountsParamsSchema, stxGetAccountsRequestMessageSchema, stxGetAccountsResultSchema, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignMessageMethodName, stxSignMessageParamsSchema, stxSignMessageRequestMessageSchema, stxSignMessageResultSchema, stxSignStructuredMessageMethodName, stxSignStructuredMessageParamsSchema, stxSignStructuredMessageRequestMessageSchema, stxSignStructuredMessageResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, stxTransferStxMethodName, stxTransferStxParamsSchema, stxTransferStxRequestMessageSchema, stxTransferStxResultSchema, walletEventSchema, walletTypeSchema, walletTypes };
1700
+ export { type AccountChangeEvent, type AddListener, type Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type Capability, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type Disconnect, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetInscriptionsParams, type GetInscriptionsRequestMessage, type GetInscriptionsResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, MessageSigningProtocols, type MethodParamsAndResult, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, type PermissionWithoutClientId, type Provider, type PsbtPayload, type Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesEstimateEtch, type RunesEstimateEtchParams, type RunesEstimateEtchResult, type RunesEstimateMint, type RunesEstimateRbfOrder, type RunesEtch, type RunesEtchParams, type RunesEtchRequestMessage, type RunesEtchResult, type RunesGetBalance, type RunesGetBalanceParams, type RunesGetBalanceResult, type RunesGetOrder, type RunesMint, type RunesMintParams, type RunesMintRequestMessage, type RunesMintResult, type RunesRbfOrder, type RunesRequestMethod, type RunesRequests, type RunesTransfer, type RunesTransferRequestMessage, type RunesTransferResult, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendInscriptionsParams, type SendInscriptionsRequestMessage, type SendInscriptionsResult, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type StxCallContract, type StxCallContractParams, type StxCallContractRequestMessage, type StxCallContractResult, type StxDeployContract, type StxDeployContractParams, type StxDeployContractRequestMessage, type StxDeployContractResult, type StxGetAccounts, type StxGetAccountsParams, type StxGetAccountsRequestMessage, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignMessage, type StxSignMessageParams, type StxSignMessageRequestMessage, type StxSignMessageResult, type StxSignStructuredMessage, type StxSignStructuredMessageParams, type StxSignStructuredMessageRequestMessage, type StxSignStructuredMessageResult, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxTransferStx, type StxTransferStxParams, type StxTransferStxRequestMessage, type StxTransferStxResult, type SupportedWallet, type TransferRunesParams, type WalletEvent, type WalletRequests, type WalletType, accountChangeEventName, accountChangeSchema, addListener, addressSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsRequestMessageSchema, getInscriptionsResultSchema, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permissionTemplate, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, type runesEstimateMintParams, type runesEstimateMintResult, runesEtchMethodName, runesEtchParamsSchema, runesEtchRequestMessageSchema, runesEtchResultSchema, runesGetBalanceMethodName, runesGetBalanceParamsSchema, type runesGetBalanceRequestMessage, runesGetBalanceRequestMessageSchema, runesGetBalanceResultSchema, runesMintMethodName, runesMintParamsSchema, runesMintRequestMessageSchema, runesMintResultSchema, runesTransferMethodName, runesTransferParamsSchema, runesTransferRequestMessageSchema, runesTransferResultSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsRequestMessageSchema, sendInscriptionsResultSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, stxCallContractMethodName, stxCallContractParamsSchema, stxCallContractRequestMessageSchema, stxCallContractResultSchema, stxDeployContractMethodName, stxDeployContractParamsSchema, stxDeployContractRequestMessageSchema, stxDeployContractResultSchema, stxGetAccountsMethodName, stxGetAccountsParamsSchema, stxGetAccountsRequestMessageSchema, stxGetAccountsResultSchema, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignMessageMethodName, stxSignMessageParamsSchema, stxSignMessageRequestMessageSchema, stxSignMessageResultSchema, stxSignStructuredMessageMethodName, stxSignStructuredMessageParamsSchema, stxSignStructuredMessageRequestMessageSchema, stxSignStructuredMessageResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, stxTransferStxMethodName, stxTransferStxParamsSchema, stxTransferStxRequestMessageSchema, stxTransferStxResultSchema, walletEventSchema, walletTypeSchema, walletTypes };