@sats-connect/core 0.16.0-ffd997e → 0.17.0-2dadc04

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.cts CHANGED
@@ -3,13 +3,11 @@ import * as v from "valibot";
3
3
  //#region src/request/methods.d.ts
4
4
  declare const bitcoinMethods: {
5
5
  readonly getAccounts: "getAccounts";
6
- readonly bitcoin_getAccountsV2: "bitcoin_getAccountsV2";
7
6
  readonly getAddresses: "getAddresses";
8
7
  readonly bitcoin_getAddressesV2: "bitcoin_getAddressesV2";
9
8
  readonly getBalance: "getBalance";
10
9
  readonly bitcoin_getBalanceV2: "bitcoin_getBalanceV2";
11
10
  readonly getInfo: "getInfo";
12
- readonly bitcoin_getInfoV2: "bitcoin_getInfoV2";
13
11
  readonly sendTransfer: "sendTransfer";
14
12
  readonly bitcoin_sendTransferV2: "bitcoin_sendTransferV2";
15
13
  readonly signMessage: "signMessage";
@@ -25,7 +23,6 @@ declare const stacksMethods: {
25
23
  readonly stx_deployContract: "stx_deployContract";
26
24
  readonly stx_getAccounts: "stx_getAccounts";
27
25
  readonly stx_getAddresses: "stx_getAddresses";
28
- readonly stacks_getAddressesV2: "stacks_getAddressesV2";
29
26
  readonly stx_signMessage: "stx_signMessage";
30
27
  readonly stx_signStructuredMessage: "stx_signStructuredMessage";
31
28
  readonly stx_signTransaction: "stx_signTransaction";
@@ -69,7 +66,6 @@ type OrdinalsMethod = (typeof ordinalsMethods)[keyof typeof ordinalsMethods];
69
66
  declare const walletMethods: {
70
67
  readonly wallet_addNetwork: "wallet_addNetwork";
71
68
  readonly wallet_addNetworkV2: "wallet_addNetworkV2";
72
- readonly wallet_changeNetworkById: "wallet_changeNetworkById";
73
69
  readonly wallet_changeNetwork: "wallet_changeNetwork";
74
70
  readonly wallet_connect: "wallet_connect";
75
71
  readonly wallet_connectV2: "wallet_connectV2";
@@ -85,12 +81,12 @@ declare const walletMethods: {
85
81
  readonly wallet_openReceive: "wallet_openReceive";
86
82
  readonly wallet_renouncePermissions: "wallet_renouncePermissions";
87
83
  readonly wallet_requestPermissions: "wallet_requestPermissions";
84
+ readonly wallet_switchNetwork: "wallet_switchNetwork";
88
85
  };
89
86
  type WalletMethod = (typeof walletMethods)[keyof typeof walletMethods];
90
87
  declare const methods: {
91
88
  wallet_addNetwork: "wallet_addNetwork";
92
89
  wallet_addNetworkV2: "wallet_addNetworkV2";
93
- wallet_changeNetworkById: "wallet_changeNetworkById";
94
90
  wallet_changeNetwork: "wallet_changeNetwork";
95
91
  wallet_connect: "wallet_connect";
96
92
  wallet_connectV2: "wallet_connectV2";
@@ -106,6 +102,7 @@ declare const methods: {
106
102
  wallet_openReceive: "wallet_openReceive";
107
103
  wallet_renouncePermissions: "wallet_renouncePermissions";
108
104
  wallet_requestPermissions: "wallet_requestPermissions";
105
+ wallet_switchNetwork: "wallet_switchNetwork";
109
106
  ord_getInscriptions: "ord_getInscriptions";
110
107
  ord_sendInscriptions: "ord_sendInscriptions";
111
108
  runes_estimateEtch: "runes_estimateEtch";
@@ -134,20 +131,17 @@ declare const methods: {
134
131
  stx_deployContract: "stx_deployContract";
135
132
  stx_getAccounts: "stx_getAccounts";
136
133
  stx_getAddresses: "stx_getAddresses";
137
- stacks_getAddressesV2: "stacks_getAddressesV2";
138
134
  stx_signMessage: "stx_signMessage";
139
135
  stx_signStructuredMessage: "stx_signStructuredMessage";
140
136
  stx_signTransaction: "stx_signTransaction";
141
137
  stx_signTransactions: "stx_signTransactions";
142
138
  stx_transferStx: "stx_transferStx";
143
139
  getAccounts: "getAccounts";
144
- bitcoin_getAccountsV2: "bitcoin_getAccountsV2";
145
140
  getAddresses: "getAddresses";
146
141
  bitcoin_getAddressesV2: "bitcoin_getAddressesV2";
147
142
  getBalance: "getBalance";
148
143
  bitcoin_getBalanceV2: "bitcoin_getBalanceV2";
149
144
  getInfo: "getInfo";
150
- bitcoin_getInfoV2: "bitcoin_getInfoV2";
151
145
  sendTransfer: "sendTransfer";
152
146
  bitcoin_sendTransferV2: "bitcoin_sendTransferV2";
153
147
  signMessage: "signMessage";
@@ -369,67 +363,6 @@ declare const bitcoinGetAccountsSuccessResponseSchema: v.ObjectSchema<{
369
363
  }, undefined>;
370
364
  type BitcoinGetAccountsSuccessResponse = v.InferOutput<typeof bitcoinGetAccountsSuccessResponseSchema>;
371
365
  //#endregion
372
- //#region src/request/rpc/objects/namespaces/bitcoin/methods/getAccountsV2/request.d.ts
373
- declare const bitcoinGetAccountsV2ParamsSchema: v.ObjectSchema<{
374
- /**
375
- * The purposes for which to generate addresses. See
376
- * {@linkcode AddressPurpose} for available purposes.
377
- */
378
- readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
379
- /**
380
- * A message to be displayed to the user in the request prompt.
381
- */
382
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
383
- }, undefined>;
384
- type BitcoinGetAccountsV2Params = v.InferOutput<typeof bitcoinGetAccountsV2ParamsSchema>;
385
- declare const bitcoinGetAccountsV2RequestSchema: v.ObjectSchema<{
386
- readonly id: v.StringSchema<undefined>;
387
- readonly method: v.LiteralSchema<"bitcoin_getAccountsV2", undefined>;
388
- readonly params: v.ObjectSchema<{
389
- /**
390
- * The purposes for which to generate addresses. See
391
- * {@linkcode AddressPurpose} for available purposes.
392
- */
393
- readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
394
- /**
395
- * A message to be displayed to the user in the request prompt.
396
- */
397
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
398
- }, undefined>;
399
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
400
- }, undefined>;
401
- type BitcoinGetAccountsV2Request = v.InferOutput<typeof bitcoinGetAccountsV2RequestSchema>;
402
- //#endregion
403
- //#region src/request/rpc/objects/namespaces/bitcoin/methods/getAccountsV2/response.d.ts
404
- declare const bitcoinGetAccountsV2ResultSchema: v.ArraySchema<v.ObjectSchema<{
405
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
406
- readonly address: v.StringSchema<undefined>;
407
- readonly publicKey: v.StringSchema<undefined>;
408
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
409
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
410
- }, undefined>, undefined>;
411
- type BitcoinGetAccountsV2Result = v.InferOutput<typeof bitcoinGetAccountsV2ResultSchema>;
412
- declare const bitcoinGetAccountsV2SuccessResponseSchema: v.ObjectSchema<{
413
- readonly id: v.StringSchema<undefined>;
414
- readonly result: v.ArraySchema<v.ObjectSchema<{
415
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
416
- readonly address: v.StringSchema<undefined>;
417
- readonly publicKey: v.StringSchema<undefined>;
418
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
419
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
420
- }, undefined>, undefined>;
421
- readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getAccountsV2", undefined>;
422
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
423
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
424
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
425
- readonly message: v.StringSchema<undefined>;
426
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
427
- }, undefined>], undefined>, undefined>;
428
- }, undefined>, undefined>;
429
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
430
- }, undefined>;
431
- type BitcoinGetAccountsV2SuccessResponse = v.InferOutput<typeof bitcoinGetAccountsV2SuccessResponseSchema>;
432
- //#endregion
433
366
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/getAddresses/request.d.ts
434
367
  declare const bitcoinGetAddressesParamsSchema: v.ObjectSchema<{
435
368
  /**
@@ -569,38 +502,139 @@ declare const bitcoinGetAddressesV2ResultSchema: v.ObjectSchema<{
569
502
  readonly networks: v.ObjectSchema<{
570
503
  readonly active: v.ObjectSchema<{
571
504
  readonly bitcoin: v.ObjectSchema<{
505
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
506
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
507
+ readonly mainnet: "mainnet";
508
+ readonly testnet: "testnet";
509
+ readonly testnet4: "testnet4";
510
+ readonly signet: "signet";
511
+ readonly regtest: "regtest";
512
+ }, undefined>]>;
513
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
514
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
572
515
  readonly id: v.StringSchema<undefined>;
573
- readonly type: v.StringSchema<undefined>;
574
516
  readonly name: v.StringSchema<undefined>;
517
+ readonly source: v.EnumSchema<{
518
+ readonly builtin: "builtin";
519
+ readonly custom: "custom";
520
+ }, undefined>;
521
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
575
522
  }, undefined>;
576
- readonly stacks: v.ObjectSchema<{
523
+ readonly spark: v.ObjectSchema<{
524
+ readonly chain: v.LiteralSchema<"spark", undefined>;
525
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
526
+ readonly mainnet: "mainnet";
527
+ readonly regtest: "regtest";
528
+ }, undefined>]>;
529
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
577
530
  readonly id: v.StringSchema<undefined>;
578
- readonly type: v.StringSchema<undefined>;
579
531
  readonly name: v.StringSchema<undefined>;
532
+ readonly source: v.EnumSchema<{
533
+ readonly builtin: "builtin";
534
+ readonly custom: "custom";
535
+ }, undefined>;
536
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
580
537
  }, undefined>;
581
- readonly spark: v.ObjectSchema<{
538
+ readonly stacks: v.ObjectSchema<{
539
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
540
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
541
+ readonly mainnet: "mainnet";
542
+ readonly testnet: "testnet";
543
+ readonly devnet: "devnet";
544
+ readonly mocknet: "mocknet";
545
+ }, undefined>]>;
546
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
547
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
582
548
  readonly id: v.StringSchema<undefined>;
583
- readonly type: v.StringSchema<undefined>;
584
549
  readonly name: v.StringSchema<undefined>;
550
+ readonly source: v.EnumSchema<{
551
+ readonly builtin: "builtin";
552
+ readonly custom: "custom";
553
+ }, undefined>;
554
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
585
555
  }, undefined>;
586
556
  readonly starknet: v.ObjectSchema<{
557
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
558
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
559
+ readonly mainnet: "mainnet";
560
+ readonly sepolia: "sepolia";
561
+ }, undefined>]>;
562
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
563
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
587
564
  readonly id: v.StringSchema<undefined>;
588
- readonly type: v.StringSchema<undefined>;
589
565
  readonly name: v.StringSchema<undefined>;
566
+ readonly source: v.EnumSchema<{
567
+ readonly builtin: "builtin";
568
+ readonly custom: "custom";
569
+ }, undefined>;
570
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
590
571
  }, undefined>;
591
572
  }, undefined>;
592
- readonly builtin: v.ObjectSchema<{
593
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
594
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
595
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
596
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
597
- }, undefined>;
598
- readonly custom: v.ObjectSchema<{
599
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
600
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
601
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
602
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
603
- }, undefined>;
573
+ readonly all: v.ArraySchema<v.VariantSchema<"chain", [v.ObjectSchema<{
574
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
575
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
576
+ readonly mainnet: "mainnet";
577
+ readonly testnet: "testnet";
578
+ readonly testnet4: "testnet4";
579
+ readonly signet: "signet";
580
+ readonly regtest: "regtest";
581
+ }, undefined>]>;
582
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
583
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
584
+ readonly id: v.StringSchema<undefined>;
585
+ readonly name: v.StringSchema<undefined>;
586
+ readonly source: v.EnumSchema<{
587
+ readonly builtin: "builtin";
588
+ readonly custom: "custom";
589
+ }, undefined>;
590
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
591
+ }, undefined>, v.ObjectSchema<{
592
+ readonly chain: v.LiteralSchema<"spark", undefined>;
593
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
594
+ readonly mainnet: "mainnet";
595
+ readonly regtest: "regtest";
596
+ }, undefined>]>;
597
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
598
+ readonly id: v.StringSchema<undefined>;
599
+ readonly name: v.StringSchema<undefined>;
600
+ readonly source: v.EnumSchema<{
601
+ readonly builtin: "builtin";
602
+ readonly custom: "custom";
603
+ }, undefined>;
604
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
605
+ }, undefined>, v.ObjectSchema<{
606
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
607
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
608
+ readonly mainnet: "mainnet";
609
+ readonly testnet: "testnet";
610
+ readonly devnet: "devnet";
611
+ readonly mocknet: "mocknet";
612
+ }, undefined>]>;
613
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
614
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
615
+ readonly id: v.StringSchema<undefined>;
616
+ readonly name: v.StringSchema<undefined>;
617
+ readonly source: v.EnumSchema<{
618
+ readonly builtin: "builtin";
619
+ readonly custom: "custom";
620
+ }, undefined>;
621
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
622
+ }, undefined>, v.ObjectSchema<{
623
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
624
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
625
+ readonly mainnet: "mainnet";
626
+ readonly sepolia: "sepolia";
627
+ }, undefined>]>;
628
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
629
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
630
+ readonly id: v.StringSchema<undefined>;
631
+ readonly name: v.StringSchema<undefined>;
632
+ readonly source: v.EnumSchema<{
633
+ readonly builtin: "builtin";
634
+ readonly custom: "custom";
635
+ }, undefined>;
636
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
637
+ }, undefined>], undefined>, undefined>;
604
638
  }, undefined>;
605
639
  }, undefined>;
606
640
  type BitcoinGetAddressesV2Result = v.InferOutput<typeof bitcoinGetAddressesV2ResultSchema>;
@@ -620,38 +654,139 @@ declare const bitcoinGetAddressesV2SuccessResponseSchema: v.ObjectSchema<{
620
654
  readonly networks: v.ObjectSchema<{
621
655
  readonly active: v.ObjectSchema<{
622
656
  readonly bitcoin: v.ObjectSchema<{
657
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
658
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
659
+ readonly mainnet: "mainnet";
660
+ readonly testnet: "testnet";
661
+ readonly testnet4: "testnet4";
662
+ readonly signet: "signet";
663
+ readonly regtest: "regtest";
664
+ }, undefined>]>;
665
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
666
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
623
667
  readonly id: v.StringSchema<undefined>;
624
- readonly type: v.StringSchema<undefined>;
625
668
  readonly name: v.StringSchema<undefined>;
669
+ readonly source: v.EnumSchema<{
670
+ readonly builtin: "builtin";
671
+ readonly custom: "custom";
672
+ }, undefined>;
673
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
626
674
  }, undefined>;
627
- readonly stacks: v.ObjectSchema<{
675
+ readonly spark: v.ObjectSchema<{
676
+ readonly chain: v.LiteralSchema<"spark", undefined>;
677
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
678
+ readonly mainnet: "mainnet";
679
+ readonly regtest: "regtest";
680
+ }, undefined>]>;
681
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
628
682
  readonly id: v.StringSchema<undefined>;
629
- readonly type: v.StringSchema<undefined>;
630
683
  readonly name: v.StringSchema<undefined>;
684
+ readonly source: v.EnumSchema<{
685
+ readonly builtin: "builtin";
686
+ readonly custom: "custom";
687
+ }, undefined>;
688
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
631
689
  }, undefined>;
632
- readonly spark: v.ObjectSchema<{
690
+ readonly stacks: v.ObjectSchema<{
691
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
692
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
693
+ readonly mainnet: "mainnet";
694
+ readonly testnet: "testnet";
695
+ readonly devnet: "devnet";
696
+ readonly mocknet: "mocknet";
697
+ }, undefined>]>;
698
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
699
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
633
700
  readonly id: v.StringSchema<undefined>;
634
- readonly type: v.StringSchema<undefined>;
635
701
  readonly name: v.StringSchema<undefined>;
702
+ readonly source: v.EnumSchema<{
703
+ readonly builtin: "builtin";
704
+ readonly custom: "custom";
705
+ }, undefined>;
706
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
636
707
  }, undefined>;
637
708
  readonly starknet: v.ObjectSchema<{
709
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
710
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
711
+ readonly mainnet: "mainnet";
712
+ readonly sepolia: "sepolia";
713
+ }, undefined>]>;
714
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
715
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
638
716
  readonly id: v.StringSchema<undefined>;
639
- readonly type: v.StringSchema<undefined>;
640
717
  readonly name: v.StringSchema<undefined>;
718
+ readonly source: v.EnumSchema<{
719
+ readonly builtin: "builtin";
720
+ readonly custom: "custom";
721
+ }, undefined>;
722
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
641
723
  }, undefined>;
642
724
  }, undefined>;
643
- readonly builtin: v.ObjectSchema<{
644
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
645
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
646
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
647
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
648
- }, undefined>;
649
- readonly custom: v.ObjectSchema<{
650
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
651
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
652
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
653
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
654
- }, undefined>;
725
+ readonly all: v.ArraySchema<v.VariantSchema<"chain", [v.ObjectSchema<{
726
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
727
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
728
+ readonly mainnet: "mainnet";
729
+ readonly testnet: "testnet";
730
+ readonly testnet4: "testnet4";
731
+ readonly signet: "signet";
732
+ readonly regtest: "regtest";
733
+ }, undefined>]>;
734
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
735
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
736
+ readonly id: v.StringSchema<undefined>;
737
+ readonly name: v.StringSchema<undefined>;
738
+ readonly source: v.EnumSchema<{
739
+ readonly builtin: "builtin";
740
+ readonly custom: "custom";
741
+ }, undefined>;
742
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
743
+ }, undefined>, v.ObjectSchema<{
744
+ readonly chain: v.LiteralSchema<"spark", undefined>;
745
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
746
+ readonly mainnet: "mainnet";
747
+ readonly regtest: "regtest";
748
+ }, undefined>]>;
749
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
750
+ readonly id: v.StringSchema<undefined>;
751
+ readonly name: v.StringSchema<undefined>;
752
+ readonly source: v.EnumSchema<{
753
+ readonly builtin: "builtin";
754
+ readonly custom: "custom";
755
+ }, undefined>;
756
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
757
+ }, undefined>, v.ObjectSchema<{
758
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
759
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
760
+ readonly mainnet: "mainnet";
761
+ readonly testnet: "testnet";
762
+ readonly devnet: "devnet";
763
+ readonly mocknet: "mocknet";
764
+ }, undefined>]>;
765
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
766
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
767
+ readonly id: v.StringSchema<undefined>;
768
+ readonly name: v.StringSchema<undefined>;
769
+ readonly source: v.EnumSchema<{
770
+ readonly builtin: "builtin";
771
+ readonly custom: "custom";
772
+ }, undefined>;
773
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
774
+ }, undefined>, v.ObjectSchema<{
775
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
776
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
777
+ readonly mainnet: "mainnet";
778
+ readonly sepolia: "sepolia";
779
+ }, undefined>]>;
780
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
781
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
782
+ readonly id: v.StringSchema<undefined>;
783
+ readonly name: v.StringSchema<undefined>;
784
+ readonly source: v.EnumSchema<{
785
+ readonly builtin: "builtin";
786
+ readonly custom: "custom";
787
+ }, undefined>;
788
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
789
+ }, undefined>], undefined>, undefined>;
655
790
  }, undefined>;
656
791
  }, undefined>;
657
792
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getAddressesV2", undefined>;
@@ -679,46 +814,16 @@ type BitcoinGetBalanceRequest = v.InferOutput<typeof bitcoinGetBalanceRequestSch
679
814
  //#endregion
680
815
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/getBalance/response.d.ts
681
816
  declare const bitcoinGetBalanceResultSchema: v.ObjectSchema<{
682
- /**
683
- * The confirmed balance of the wallet in sats. Using a string due to chrome
684
- * messages not supporting bigint
685
- * (https://issues.chromium.org/issues/40116184).
686
- */
687
817
  readonly confirmed: v.StringSchema<undefined>;
688
- /**
689
- * The unconfirmed balance of the wallet in sats. Using a string due to chrome
690
- * messages not supporting bigint
691
- * (https://issues.chromium.org/issues/40116184).
692
- */
693
818
  readonly unconfirmed: v.StringSchema<undefined>;
694
- /**
695
- * The total balance (both confirmed and unconfrimed UTXOs) of the wallet in
696
- * sats. Using a string due to chrome messages not supporting bigint
697
- * (https://issues.chromium.org/issues/40116184).
698
- */
699
819
  readonly total: v.StringSchema<undefined>;
700
820
  }, undefined>;
701
821
  type BitcoinGetBalanceResult = v.InferOutput<typeof bitcoinGetBalanceResultSchema>;
702
822
  declare const bitcoinGetBalanceSuccessResponseSchema: v.ObjectSchema<{
703
823
  readonly id: v.StringSchema<undefined>;
704
824
  readonly result: v.ObjectSchema<{
705
- /**
706
- * The confirmed balance of the wallet in sats. Using a string due to chrome
707
- * messages not supporting bigint
708
- * (https://issues.chromium.org/issues/40116184).
709
- */
710
825
  readonly confirmed: v.StringSchema<undefined>;
711
- /**
712
- * The unconfirmed balance of the wallet in sats. Using a string due to chrome
713
- * messages not supporting bigint
714
- * (https://issues.chromium.org/issues/40116184).
715
- */
716
826
  readonly unconfirmed: v.StringSchema<undefined>;
717
- /**
718
- * The total balance (both confirmed and unconfrimed UTXOs) of the wallet in
719
- * sats. Using a string due to chrome messages not supporting bigint
720
- * (https://issues.chromium.org/issues/40116184).
721
- */
722
827
  readonly total: v.StringSchema<undefined>;
723
828
  }, undefined>;
724
829
  readonly '~sats-connect-method': v.LiteralSchema<"getBalance", undefined>;
@@ -746,46 +851,16 @@ type BitcoinGetBalanceV2Request = v.InferOutput<typeof bitcoinGetBalanceV2Reques
746
851
  //#endregion
747
852
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/getBalanceV2/response.d.ts
748
853
  declare const bitcoinGetBalanceV2ResultSchema: v.ObjectSchema<{
749
- /**
750
- * The confirmed balance of the wallet in sats. Using a string due to chrome
751
- * messages not supporting bigint
752
- * (https://issues.chromium.org/issues/40116184).
753
- */
754
854
  readonly confirmed: v.StringSchema<undefined>;
755
- /**
756
- * The unconfirmed balance of the wallet in sats. Using a string due to chrome
757
- * messages not supporting bigint
758
- * (https://issues.chromium.org/issues/40116184).
759
- */
760
855
  readonly unconfirmed: v.StringSchema<undefined>;
761
- /**
762
- * The total balance (both confirmed and unconfrimed UTXOs) of the wallet in
763
- * sats. Using a string due to chrome messages not supporting bigint
764
- * (https://issues.chromium.org/issues/40116184).
765
- */
766
856
  readonly total: v.StringSchema<undefined>;
767
857
  }, undefined>;
768
858
  type BitcoinGetBalanceV2Result = v.InferOutput<typeof bitcoinGetBalanceV2ResultSchema>;
769
859
  declare const bitcoinGetBalanceV2SuccessResponseSchema: v.ObjectSchema<{
770
860
  readonly id: v.StringSchema<undefined>;
771
861
  readonly result: v.ObjectSchema<{
772
- /**
773
- * The confirmed balance of the wallet in sats. Using a string due to chrome
774
- * messages not supporting bigint
775
- * (https://issues.chromium.org/issues/40116184).
776
- */
777
862
  readonly confirmed: v.StringSchema<undefined>;
778
- /**
779
- * The unconfirmed balance of the wallet in sats. Using a string due to chrome
780
- * messages not supporting bigint
781
- * (https://issues.chromium.org/issues/40116184).
782
- */
783
863
  readonly unconfirmed: v.StringSchema<undefined>;
784
- /**
785
- * The total balance (both confirmed and unconfrimed UTXOs) of the wallet in
786
- * sats. Using a string due to chrome messages not supporting bigint
787
- * (https://issues.chromium.org/issues/40116184).
788
- */
789
864
  readonly total: v.StringSchema<undefined>;
790
865
  }, undefined>;
791
866
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getBalanceV2", undefined>;
@@ -863,75 +938,8 @@ declare const bitcoinGetInfoSuccessResponseSchema: v.ObjectSchema<{
863
938
  }, undefined>;
864
939
  type BitcoinGetInfoSuccessResponse = v.InferOutput<typeof bitcoinGetInfoSuccessResponseSchema>;
865
940
  //#endregion
866
- //#region src/request/rpc/objects/namespaces/bitcoin/methods/getInfoV2/request.d.ts
867
- declare const bitcoinGetInfoV2ParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
868
- type BitcoinGetInfoV2Params = v.InferOutput<typeof bitcoinGetInfoV2ParamsSchema>;
869
- declare const bitcoinGetInfoV2RequestSchema: v.ObjectSchema<{
870
- readonly id: v.StringSchema<undefined>;
871
- readonly method: v.LiteralSchema<"bitcoin_getInfoV2", undefined>;
872
- readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
873
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
874
- }, undefined>;
875
- type BitcoinGetInfoV2Request = v.InferOutput<typeof bitcoinGetInfoV2RequestSchema>;
876
- //#endregion
877
- //#region src/request/rpc/objects/namespaces/bitcoin/methods/getInfoV2/response.d.ts
878
- declare const bitcoinGetInfoV2ResultSchema: v.ObjectSchema<{
879
- /**
880
- * Version of the wallet.
881
- */
882
- readonly version: v.StringSchema<undefined>;
883
- /**
884
- * The platform the wallet is running on (web or mobile).
885
- */
886
- readonly platform: v.OptionalSchema<v.EnumSchema<typeof ProviderPlatform, undefined>, undefined>;
887
- /**
888
- * [WBIP](https://wbips.netlify.app/wbips/WBIP002) methods supported by the wallet.
889
- */
890
- readonly methods: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
891
- /**
892
- * List of WBIP standards supported by the wallet. Not currently used.
893
- */
894
- readonly supports: v.ArraySchema<v.StringSchema<undefined>, undefined>;
895
- }, undefined>;
896
- type BitcoinGetInfoV2Result = v.InferOutput<typeof bitcoinGetInfoV2ResultSchema>;
897
- declare const bitcoinGetInfoV2SuccessResponseSchema: v.ObjectSchema<{
898
- readonly id: v.StringSchema<undefined>;
899
- readonly result: v.ObjectSchema<{
900
- /**
901
- * Version of the wallet.
902
- */
903
- readonly version: v.StringSchema<undefined>;
904
- /**
905
- * The platform the wallet is running on (web or mobile).
906
- */
907
- readonly platform: v.OptionalSchema<v.EnumSchema<typeof ProviderPlatform, undefined>, undefined>;
908
- /**
909
- * [WBIP](https://wbips.netlify.app/wbips/WBIP002) methods supported by the wallet.
910
- */
911
- readonly methods: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
912
- /**
913
- * List of WBIP standards supported by the wallet. Not currently used.
914
- */
915
- readonly supports: v.ArraySchema<v.StringSchema<undefined>, undefined>;
916
- }, undefined>;
917
- readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getInfoV2", undefined>;
918
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
919
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
920
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
921
- readonly message: v.StringSchema<undefined>;
922
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
923
- }, undefined>], undefined>, undefined>;
924
- }, undefined>, undefined>;
925
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
926
- }, undefined>;
927
- type BitcoinGetInfoV2SuccessResponse = v.InferOutput<typeof bitcoinGetInfoV2SuccessResponseSchema>;
928
- //#endregion
929
941
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/sendTransfer/request.d.ts
930
942
  declare const bitcoinSendTransferParamsSchema: v.ObjectSchema<{
931
- /**
932
- * Array of recipients to send to.
933
- * The amount to send to each recipient is in satoshis.
934
- */
935
943
  readonly recipients: v.ArraySchema<v.ObjectSchema<{
936
944
  readonly address: v.StringSchema<undefined>;
937
945
  readonly amount: v.NumberSchema<undefined>;
@@ -942,10 +950,6 @@ declare const bitcoinSendTransferRequestSchema: v.ObjectSchema<{
942
950
  readonly id: v.StringSchema<undefined>;
943
951
  readonly method: v.LiteralSchema<"sendTransfer", undefined>;
944
952
  readonly params: v.ObjectSchema<{
945
- /**
946
- * Array of recipients to send to.
947
- * The amount to send to each recipient is in satoshis.
948
- */
949
953
  readonly recipients: v.ArraySchema<v.ObjectSchema<{
950
954
  readonly address: v.StringSchema<undefined>;
951
955
  readonly amount: v.NumberSchema<undefined>;
@@ -957,18 +961,12 @@ type BitcoinSendTransferRequest = v.InferOutput<typeof bitcoinSendTransferReques
957
961
  //#endregion
958
962
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/sendTransfer/response.d.ts
959
963
  declare const bitcoinSendTransferResultSchema: v.ObjectSchema<{
960
- /**
961
- * The transaction id as a hex-encoded string.
962
- */
963
964
  readonly txid: v.StringSchema<undefined>;
964
965
  }, undefined>;
965
966
  type BitcoinSendTransferResult = v.InferOutput<typeof bitcoinSendTransferResultSchema>;
966
967
  declare const bitcoinSendTransferSuccessResponseSchema: v.ObjectSchema<{
967
968
  readonly id: v.StringSchema<undefined>;
968
969
  readonly result: v.ObjectSchema<{
969
- /**
970
- * The transaction id as a hex-encoded string.
971
- */
972
970
  readonly txid: v.StringSchema<undefined>;
973
971
  }, undefined>;
974
972
  readonly '~sats-connect-method': v.LiteralSchema<"sendTransfer", undefined>;
@@ -985,10 +983,6 @@ type BitcoinSendTransferSuccessResponse = v.InferOutput<typeof bitcoinSendTransf
985
983
  //#endregion
986
984
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/sendTransferV2/request.d.ts
987
985
  declare const bitcoinSendTransferV2ParamsSchema: v.ObjectSchema<{
988
- /**
989
- * Array of recipients to send to.
990
- * The amount to send to each recipient is in satoshis.
991
- */
992
986
  readonly recipients: v.ArraySchema<v.ObjectSchema<{
993
987
  readonly address: v.StringSchema<undefined>;
994
988
  readonly amount: v.NumberSchema<undefined>;
@@ -999,10 +993,6 @@ declare const bitcoinSendTransferV2RequestSchema: v.ObjectSchema<{
999
993
  readonly id: v.StringSchema<undefined>;
1000
994
  readonly method: v.LiteralSchema<"bitcoin_sendTransferV2", undefined>;
1001
995
  readonly params: v.ObjectSchema<{
1002
- /**
1003
- * Array of recipients to send to.
1004
- * The amount to send to each recipient is in satoshis.
1005
- */
1006
996
  readonly recipients: v.ArraySchema<v.ObjectSchema<{
1007
997
  readonly address: v.StringSchema<undefined>;
1008
998
  readonly amount: v.NumberSchema<undefined>;
@@ -1014,18 +1004,12 @@ type BitcoinSendTransferV2Request = v.InferOutput<typeof bitcoinSendTransferV2Re
1014
1004
  //#endregion
1015
1005
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/sendTransferV2/response.d.ts
1016
1006
  declare const bitcoinSendTransferV2ResultSchema: v.ObjectSchema<{
1017
- /**
1018
- * The transaction id as a hex-encoded string.
1019
- */
1020
1007
  readonly txid: v.StringSchema<undefined>;
1021
1008
  }, undefined>;
1022
1009
  type BitcoinSendTransferV2Result = v.InferOutput<typeof bitcoinSendTransferV2ResultSchema>;
1023
1010
  declare const bitcoinSendTransferV2SuccessResponseSchema: v.ObjectSchema<{
1024
1011
  readonly id: v.StringSchema<undefined>;
1025
1012
  readonly result: v.ObjectSchema<{
1026
- /**
1027
- * The transaction id as a hex-encoded string.
1028
- */
1029
1013
  readonly txid: v.StringSchema<undefined>;
1030
1014
  }, undefined>;
1031
1015
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_sendTransferV2", undefined>;
@@ -1042,20 +1026,8 @@ type BitcoinSendTransferV2SuccessResponse = v.InferOutput<typeof bitcoinSendTran
1042
1026
  //#endregion
1043
1027
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMessage/request.d.ts
1044
1028
  declare const bitcoinSignMessageParamsSchema: v.ObjectSchema<{
1045
- /**
1046
- * The address used for signing.
1047
- **/
1048
1029
  readonly address: v.StringSchema<undefined>;
1049
- /**
1050
- * The message to sign.
1051
- **/
1052
1030
  readonly message: v.StringSchema<undefined>;
1053
- /**
1054
- * The protocol to use for signing the message.
1055
- *
1056
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1057
- * and to BIP322 if signing with a taproot address.
1058
- */
1059
1031
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1060
1032
  }, undefined>;
1061
1033
  type BitcoinSignMessageParams = v.InferOutput<typeof bitcoinSignMessageParamsSchema>;
@@ -1063,20 +1035,8 @@ declare const bitcoinSignMessageRequestSchema: v.ObjectSchema<{
1063
1035
  readonly id: v.StringSchema<undefined>;
1064
1036
  readonly method: v.LiteralSchema<"signMessage", undefined>;
1065
1037
  readonly params: v.ObjectSchema<{
1066
- /**
1067
- * The address used for signing.
1068
- **/
1069
1038
  readonly address: v.StringSchema<undefined>;
1070
- /**
1071
- * The message to sign.
1072
- **/
1073
1039
  readonly message: v.StringSchema<undefined>;
1074
- /**
1075
- * The protocol to use for signing the message.
1076
- *
1077
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1078
- * and to BIP322 if signing with a taproot address.
1079
- */
1080
1040
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1081
1041
  }, undefined>;
1082
1042
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
@@ -1085,42 +1045,18 @@ type BitcoinSignMessageRequest = v.InferOutput<typeof bitcoinSignMessageRequestS
1085
1045
  //#endregion
1086
1046
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMessage/response.d.ts
1087
1047
  declare const bitcoinSignMessageResultSchema: v.ObjectSchema<{
1088
- /**
1089
- * The signature of the message.
1090
- */
1091
1048
  readonly signature: v.StringSchema<undefined>;
1092
- /**
1093
- * hash of the message.
1094
- */
1095
1049
  readonly messageHash: v.StringSchema<undefined>;
1096
- /**
1097
- * The address used for signing.
1098
- */
1099
1050
  readonly address: v.StringSchema<undefined>;
1100
- /**
1101
- * The protocol used for signing the message.
1102
- */
1103
1051
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1104
1052
  }, undefined>;
1105
1053
  type BitcoinSignMessageResult = v.InferOutput<typeof bitcoinSignMessageResultSchema>;
1106
1054
  declare const bitcoinSignMessageSuccessResponseSchema: v.ObjectSchema<{
1107
1055
  readonly id: v.StringSchema<undefined>;
1108
1056
  readonly result: v.ObjectSchema<{
1109
- /**
1110
- * The signature of the message.
1111
- */
1112
1057
  readonly signature: v.StringSchema<undefined>;
1113
- /**
1114
- * hash of the message.
1115
- */
1116
1058
  readonly messageHash: v.StringSchema<undefined>;
1117
- /**
1118
- * The address used for signing.
1119
- */
1120
1059
  readonly address: v.StringSchema<undefined>;
1121
- /**
1122
- * The protocol used for signing the message.
1123
- */
1124
1060
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1125
1061
  }, undefined>;
1126
1062
  readonly '~sats-connect-method': v.LiteralSchema<"signMessage", undefined>;
@@ -1137,20 +1073,8 @@ type BitcoinSignMessageSuccessResponse = v.InferOutput<typeof bitcoinSignMessage
1137
1073
  //#endregion
1138
1074
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMessageV2/request.d.ts
1139
1075
  declare const bitcoinSignMessageV2ParamsSchema: v.ObjectSchema<{
1140
- /**
1141
- * The address used for signing.
1142
- **/
1143
1076
  readonly address: v.StringSchema<undefined>;
1144
- /**
1145
- * The message to sign.
1146
- **/
1147
1077
  readonly message: v.StringSchema<undefined>;
1148
- /**
1149
- * The protocol to use for signing the message.
1150
- *
1151
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1152
- * and to BIP322 if signing with a taproot address.
1153
- */
1154
1078
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1155
1079
  }, undefined>;
1156
1080
  type BitcoinSignMessageV2Params = v.InferOutput<typeof bitcoinSignMessageV2ParamsSchema>;
@@ -1158,20 +1082,8 @@ declare const bitcoinSignMessageV2RequestSchema: v.ObjectSchema<{
1158
1082
  readonly id: v.StringSchema<undefined>;
1159
1083
  readonly method: v.LiteralSchema<"bitcoin_signMessageV2", undefined>;
1160
1084
  readonly params: v.ObjectSchema<{
1161
- /**
1162
- * The address used for signing.
1163
- **/
1164
1085
  readonly address: v.StringSchema<undefined>;
1165
- /**
1166
- * The message to sign.
1167
- **/
1168
1086
  readonly message: v.StringSchema<undefined>;
1169
- /**
1170
- * The protocol to use for signing the message.
1171
- *
1172
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1173
- * and to BIP322 if signing with a taproot address.
1174
- */
1175
1087
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1176
1088
  }, undefined>;
1177
1089
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
@@ -1180,42 +1092,18 @@ type BitcoinSignMessageV2Request = v.InferOutput<typeof bitcoinSignMessageV2Requ
1180
1092
  //#endregion
1181
1093
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMessageV2/response.d.ts
1182
1094
  declare const bitcoinSignMessageV2ResultSchema: v.ObjectSchema<{
1183
- /**
1184
- * The signature of the message.
1185
- */
1186
1095
  readonly signature: v.StringSchema<undefined>;
1187
- /**
1188
- * hash of the message.
1189
- */
1190
1096
  readonly messageHash: v.StringSchema<undefined>;
1191
- /**
1192
- * The address used for signing.
1193
- */
1194
1097
  readonly address: v.StringSchema<undefined>;
1195
- /**
1196
- * The protocol used for signing the message.
1197
- */
1198
1098
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1199
1099
  }, undefined>;
1200
1100
  type BitcoinSignMessageV2Result = v.InferOutput<typeof bitcoinSignMessageV2ResultSchema>;
1201
1101
  declare const bitcoinSignMessageV2SuccessResponseSchema: v.ObjectSchema<{
1202
1102
  readonly id: v.StringSchema<undefined>;
1203
1103
  readonly result: v.ObjectSchema<{
1204
- /**
1205
- * The signature of the message.
1206
- */
1207
1104
  readonly signature: v.StringSchema<undefined>;
1208
- /**
1209
- * hash of the message.
1210
- */
1211
1105
  readonly messageHash: v.StringSchema<undefined>;
1212
- /**
1213
- * The address used for signing.
1214
- */
1215
1106
  readonly address: v.StringSchema<undefined>;
1216
- /**
1217
- * The protocol used for signing the message.
1218
- */
1219
1107
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1220
1108
  }, undefined>;
1221
1109
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_signMessageV2", undefined>;
@@ -1232,20 +1120,8 @@ type BitcoinSignMessageV2SuccessResponse = v.InferOutput<typeof bitcoinSignMessa
1232
1120
  //#endregion
1233
1121
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMultipleMessages/request.d.ts
1234
1122
  declare const bitcoinSignMultipleMessagesParamsSchema: v.ArraySchema<v.ObjectSchema<{
1235
- /**
1236
- * The address used for signing.
1237
- **/
1238
1123
  readonly address: v.StringSchema<undefined>;
1239
- /**
1240
- * The message to sign.
1241
- **/
1242
1124
  readonly message: v.StringSchema<undefined>;
1243
- /**
1244
- * The protocol to use to sign the message.
1245
- *
1246
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1247
- * and to BIP322 if signing with a taproot address.
1248
- */
1249
1125
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1250
1126
  }, undefined>, undefined>;
1251
1127
  type BitcoinSignMultipleMessagesParams = v.InferOutput<typeof bitcoinSignMultipleMessagesParamsSchema>;
@@ -1253,20 +1129,8 @@ declare const bitcoinSignMultipleMessagesRequestSchema: v.ObjectSchema<{
1253
1129
  readonly id: v.StringSchema<undefined>;
1254
1130
  readonly method: v.LiteralSchema<"signMultipleMessages", undefined>;
1255
1131
  readonly params: v.ArraySchema<v.ObjectSchema<{
1256
- /**
1257
- * The address used for signing.
1258
- **/
1259
1132
  readonly address: v.StringSchema<undefined>;
1260
- /**
1261
- * The message to sign.
1262
- **/
1263
1133
  readonly message: v.StringSchema<undefined>;
1264
- /**
1265
- * The protocol to use to sign the message.
1266
- *
1267
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1268
- * and to BIP322 if signing with a taproot address.
1269
- */
1270
1134
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1271
1135
  }, undefined>, undefined>;
1272
1136
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
@@ -1275,50 +1139,20 @@ type BitcoinSignMultipleMessagesRequest = v.InferOutput<typeof bitcoinSignMultip
1275
1139
  //#endregion
1276
1140
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMultipleMessages/response.d.ts
1277
1141
  declare const bitcoinSignMultipleMessagesResultSchema: v.ArraySchema<v.ObjectSchema<{
1278
- /**
1279
- * The signature of the message.
1280
- */
1281
- readonly signature: v.StringSchema<undefined>;
1282
- /**
1283
- * The original message which was signed.
1284
- */
1285
1142
  readonly message: v.StringSchema<undefined>;
1286
- /**
1287
- * Hash of the message.
1288
- */
1143
+ readonly signature: v.StringSchema<undefined>;
1289
1144
  readonly messageHash: v.StringSchema<undefined>;
1290
- /**
1291
- * The address used for signing.
1292
- */
1293
1145
  readonly address: v.StringSchema<undefined>;
1294
- /**
1295
- * The protocol used for signing the message.
1296
- */
1297
1146
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1298
1147
  }, undefined>, undefined>;
1299
1148
  type BitcoinSignMultipleMessagesResult = v.InferOutput<typeof bitcoinSignMultipleMessagesResultSchema>;
1300
1149
  declare const bitcoinSignMultipleMessagesSuccessResponseSchema: v.ObjectSchema<{
1301
1150
  readonly id: v.StringSchema<undefined>;
1302
1151
  readonly result: v.ArraySchema<v.ObjectSchema<{
1303
- /**
1304
- * The signature of the message.
1305
- */
1306
- readonly signature: v.StringSchema<undefined>;
1307
- /**
1308
- * The original message which was signed.
1309
- */
1310
1152
  readonly message: v.StringSchema<undefined>;
1311
- /**
1312
- * Hash of the message.
1313
- */
1153
+ readonly signature: v.StringSchema<undefined>;
1314
1154
  readonly messageHash: v.StringSchema<undefined>;
1315
- /**
1316
- * The address used for signing.
1317
- */
1318
1155
  readonly address: v.StringSchema<undefined>;
1319
- /**
1320
- * The protocol used for signing the message.
1321
- */
1322
1156
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1323
1157
  }, undefined>, undefined>;
1324
1158
  readonly '~sats-connect-method': v.LiteralSchema<"signMultipleMessages", undefined>;
@@ -1334,21 +1168,9 @@ declare const bitcoinSignMultipleMessagesSuccessResponseSchema: v.ObjectSchema<{
1334
1168
  type BitcoinSignMultipleMessagesSuccessResponse = v.InferOutput<typeof bitcoinSignMultipleMessagesSuccessResponseSchema>;
1335
1169
  //#endregion
1336
1170
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMultipleMessagesV2/request.d.ts
1337
- declare const bitcoinSignMultipleMessagesV2ParamsSchema: v.ArraySchema<v.ObjectSchema<{
1338
- /**
1339
- * The address used for signing.
1340
- **/
1171
+ declare const bitcoinSignMultipleMessagesV2ParamsSchema: v.ArraySchema<v.ObjectSchema<{
1341
1172
  readonly address: v.StringSchema<undefined>;
1342
- /**
1343
- * The message to sign.
1344
- **/
1345
1173
  readonly message: v.StringSchema<undefined>;
1346
- /**
1347
- * The protocol to use to sign the message.
1348
- *
1349
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1350
- * and to BIP322 if signing with a taproot address.
1351
- */
1352
1174
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1353
1175
  }, undefined>, undefined>;
1354
1176
  type BitcoinSignMultipleMessagesV2Params = v.InferOutput<typeof bitcoinSignMultipleMessagesV2ParamsSchema>;
@@ -1356,20 +1178,8 @@ declare const bitcoinSignMultipleMessagesV2RequestSchema: v.ObjectSchema<{
1356
1178
  readonly id: v.StringSchema<undefined>;
1357
1179
  readonly method: v.LiteralSchema<"bitcoin_signMultipleMessagesV2", undefined>;
1358
1180
  readonly params: v.ArraySchema<v.ObjectSchema<{
1359
- /**
1360
- * The address used for signing.
1361
- **/
1362
1181
  readonly address: v.StringSchema<undefined>;
1363
- /**
1364
- * The message to sign.
1365
- **/
1366
1182
  readonly message: v.StringSchema<undefined>;
1367
- /**
1368
- * The protocol to use to sign the message.
1369
- *
1370
- * If not specified, defaults to ECDSA if signing with a P2WPKH or P2SH address,
1371
- * and to BIP322 if signing with a taproot address.
1372
- */
1373
1183
  readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
1374
1184
  }, undefined>, undefined>;
1375
1185
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
@@ -1378,50 +1188,20 @@ type BitcoinSignMultipleMessagesV2Request = v.InferOutput<typeof bitcoinSignMult
1378
1188
  //#endregion
1379
1189
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signMultipleMessagesV2/response.d.ts
1380
1190
  declare const bitcoinSignMultipleMessagesV2ResultSchema: v.ArraySchema<v.ObjectSchema<{
1381
- /**
1382
- * The signature of the message.
1383
- */
1384
- readonly signature: v.StringSchema<undefined>;
1385
- /**
1386
- * The original message which was signed.
1387
- */
1388
1191
  readonly message: v.StringSchema<undefined>;
1389
- /**
1390
- * Hash of the message.
1391
- */
1192
+ readonly signature: v.StringSchema<undefined>;
1392
1193
  readonly messageHash: v.StringSchema<undefined>;
1393
- /**
1394
- * The address used for signing.
1395
- */
1396
1194
  readonly address: v.StringSchema<undefined>;
1397
- /**
1398
- * The protocol used for signing the message.
1399
- */
1400
1195
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1401
1196
  }, undefined>, undefined>;
1402
1197
  type BitcoinSignMultipleMessagesV2Result = v.InferOutput<typeof bitcoinSignMultipleMessagesV2ResultSchema>;
1403
1198
  declare const bitcoinSignMultipleMessagesV2SuccessResponseSchema: v.ObjectSchema<{
1404
1199
  readonly id: v.StringSchema<undefined>;
1405
1200
  readonly result: v.ArraySchema<v.ObjectSchema<{
1406
- /**
1407
- * The signature of the message.
1408
- */
1409
- readonly signature: v.StringSchema<undefined>;
1410
- /**
1411
- * The original message which was signed.
1412
- */
1413
1201
  readonly message: v.StringSchema<undefined>;
1414
- /**
1415
- * Hash of the message.
1416
- */
1202
+ readonly signature: v.StringSchema<undefined>;
1417
1203
  readonly messageHash: v.StringSchema<undefined>;
1418
- /**
1419
- * The address used for signing.
1420
- */
1421
1204
  readonly address: v.StringSchema<undefined>;
1422
- /**
1423
- * The protocol used for signing the message.
1424
- */
1425
1205
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
1426
1206
  }, undefined>, undefined>;
1427
1207
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_signMultipleMessagesV2", undefined>;
@@ -1438,38 +1218,18 @@ type BitcoinSignMultipleMessagesV2SuccessResponse = v.InferOutput<typeof bitcoin
1438
1218
  //#endregion
1439
1219
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signPsbt/request.d.ts
1440
1220
  declare const bitcoinSignPsbtParamsSchema: v.ObjectSchema<{
1441
- /**
1442
- * The base64 encoded PSBT to sign.
1443
- */
1444
1221
  readonly psbt: v.StringSchema<undefined>;
1445
- /**
1446
- * The inputs to sign.
1447
- * The key is the address and the value is an array of indexes of the inputs to sign.
1448
- */
1449
1222
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
1450
- /**
1451
- * Whether to broadcast the transaction after signing.
1452
- **/
1453
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1223
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
1454
1224
  }, undefined>;
1455
1225
  type BitcoinSignPsbtParams = v.InferOutput<typeof bitcoinSignPsbtParamsSchema>;
1456
1226
  declare const bitcoinSignPsbtRequestSchema: v.ObjectSchema<{
1457
1227
  readonly id: v.StringSchema<undefined>;
1458
1228
  readonly method: v.LiteralSchema<"signPsbt", undefined>;
1459
1229
  readonly params: v.ObjectSchema<{
1460
- /**
1461
- * The base64 encoded PSBT to sign.
1462
- */
1463
1230
  readonly psbt: v.StringSchema<undefined>;
1464
- /**
1465
- * The inputs to sign.
1466
- * The key is the address and the value is an array of indexes of the inputs to sign.
1467
- */
1468
1231
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
1469
- /**
1470
- * Whether to broadcast the transaction after signing.
1471
- **/
1472
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1232
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
1473
1233
  }, undefined>;
1474
1234
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1475
1235
  }, undefined>;
@@ -1477,28 +1237,14 @@ type BitcoinSignPsbtRequest = v.InferOutput<typeof bitcoinSignPsbtRequestSchema>
1477
1237
  //#endregion
1478
1238
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signPsbt/response.d.ts
1479
1239
  declare const bitcoinSignPsbtResultSchema: v.ObjectSchema<{
1480
- /**
1481
- * The base64 encoded PSBT after signing.
1482
- */
1483
1240
  readonly psbt: v.StringSchema<undefined>;
1484
- /**
1485
- * The transaction id as a hex-encoded string.
1486
- * This is only returned if the transaction was broadcast.
1487
- **/
1488
1241
  readonly txid: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1489
1242
  }, undefined>;
1490
1243
  type BitcoinSignPsbtResult = v.InferOutput<typeof bitcoinSignPsbtResultSchema>;
1491
1244
  declare const bitcoinSignPsbtSuccessResponseSchema: v.ObjectSchema<{
1492
1245
  readonly id: v.StringSchema<undefined>;
1493
1246
  readonly result: v.ObjectSchema<{
1494
- /**
1495
- * The base64 encoded PSBT after signing.
1496
- */
1497
1247
  readonly psbt: v.StringSchema<undefined>;
1498
- /**
1499
- * The transaction id as a hex-encoded string.
1500
- * This is only returned if the transaction was broadcast.
1501
- **/
1502
1248
  readonly txid: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1503
1249
  }, undefined>;
1504
1250
  readonly '~sats-connect-method': v.LiteralSchema<"signPsbt", undefined>;
@@ -1515,38 +1261,18 @@ type BitcoinSignPsbtSuccessResponse = v.InferOutput<typeof bitcoinSignPsbtSucces
1515
1261
  //#endregion
1516
1262
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signPsbtV2/request.d.ts
1517
1263
  declare const bitcoinSignPsbtV2ParamsSchema: v.ObjectSchema<{
1518
- /**
1519
- * The base64 encoded PSBT to sign.
1520
- */
1521
1264
  readonly psbt: v.StringSchema<undefined>;
1522
- /**
1523
- * The inputs to sign.
1524
- * The key is the address and the value is an array of indexes of the inputs to sign.
1525
- */
1526
1265
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
1527
- /**
1528
- * Whether to broadcast the transaction after signing.
1529
- **/
1530
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1266
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
1531
1267
  }, undefined>;
1532
1268
  type BitcoinSignPsbtV2Params = v.InferOutput<typeof bitcoinSignPsbtV2ParamsSchema>;
1533
1269
  declare const bitcoinSignPsbtV2RequestSchema: v.ObjectSchema<{
1534
1270
  readonly id: v.StringSchema<undefined>;
1535
1271
  readonly method: v.LiteralSchema<"bitcoin_signPsbtV2", undefined>;
1536
1272
  readonly params: v.ObjectSchema<{
1537
- /**
1538
- * The base64 encoded PSBT to sign.
1539
- */
1540
1273
  readonly psbt: v.StringSchema<undefined>;
1541
- /**
1542
- * The inputs to sign.
1543
- * The key is the address and the value is an array of indexes of the inputs to sign.
1544
- */
1545
1274
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
1546
- /**
1547
- * Whether to broadcast the transaction after signing.
1548
- **/
1549
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1275
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
1550
1276
  }, undefined>;
1551
1277
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1552
1278
  }, undefined>;
@@ -1554,28 +1280,14 @@ type BitcoinSignPsbtV2Request = v.InferOutput<typeof bitcoinSignPsbtV2RequestSch
1554
1280
  //#endregion
1555
1281
  //#region src/request/rpc/objects/namespaces/bitcoin/methods/signPsbtV2/response.d.ts
1556
1282
  declare const bitcoinSignPsbtV2ResultSchema: v.ObjectSchema<{
1557
- /**
1558
- * The base64 encoded PSBT after signing.
1559
- */
1560
1283
  readonly psbt: v.StringSchema<undefined>;
1561
- /**
1562
- * The transaction id as a hex-encoded string.
1563
- * This is only returned if the transaction was broadcast.
1564
- **/
1565
1284
  readonly txid: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1566
1285
  }, undefined>;
1567
1286
  type BitcoinSignPsbtV2Result = v.InferOutput<typeof bitcoinSignPsbtV2ResultSchema>;
1568
1287
  declare const bitcoinSignPsbtV2SuccessResponseSchema: v.ObjectSchema<{
1569
1288
  readonly id: v.StringSchema<undefined>;
1570
1289
  readonly result: v.ObjectSchema<{
1571
- /**
1572
- * The base64 encoded PSBT after signing.
1573
- */
1574
1290
  readonly psbt: v.StringSchema<undefined>;
1575
- /**
1576
- * The transaction id as a hex-encoded string.
1577
- * This is only returned if the transaction was broadcast.
1578
- **/
1579
1291
  readonly txid: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1580
1292
  }, undefined>;
1581
1293
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_signPsbtV2", undefined>;
@@ -1593,13 +1305,11 @@ type BitcoinSignPsbtV2SuccessResponse = v.InferOutput<typeof bitcoinSignPsbtV2Su
1593
1305
  //#region src/request/rpc/objects/namespaces/bitcoin/index.d.ts
1594
1306
  type BitcoinRequests = ExactObject<BitcoinMethod, {
1595
1307
  [bitcoinMethods.getAccounts]: BitcoinGetAccountsRequest;
1596
- [bitcoinMethods.bitcoin_getAccountsV2]: BitcoinGetAccountsV2Request;
1597
1308
  [bitcoinMethods.getAddresses]: BitcoinGetAddressesRequest;
1598
1309
  [bitcoinMethods.bitcoin_getAddressesV2]: BitcoinGetAddressesV2Request;
1599
1310
  [bitcoinMethods.getBalance]: BitcoinGetBalanceRequest;
1600
1311
  [bitcoinMethods.bitcoin_getBalanceV2]: BitcoinGetBalanceV2Request;
1601
1312
  [bitcoinMethods.getInfo]: BitcoinGetInfoRequest;
1602
- [bitcoinMethods.bitcoin_getInfoV2]: BitcoinGetInfoV2Request;
1603
1313
  [bitcoinMethods.sendTransfer]: BitcoinSendTransferRequest;
1604
1314
  [bitcoinMethods.bitcoin_sendTransferV2]: BitcoinSendTransferV2Request;
1605
1315
  [bitcoinMethods.signMessage]: BitcoinSignMessageRequest;
@@ -1617,14 +1327,6 @@ declare const bitcoinRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
1617
1327
  readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1618
1328
  }, undefined>;
1619
1329
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1620
- }, undefined>, v.ObjectSchema<{
1621
- readonly id: v.StringSchema<undefined>;
1622
- readonly method: v.LiteralSchema<"bitcoin_getAccountsV2", undefined>;
1623
- readonly params: v.ObjectSchema<{
1624
- readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
1625
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
1626
- }, undefined>;
1627
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1628
1330
  }, undefined>, v.ObjectSchema<{
1629
1331
  readonly id: v.StringSchema<undefined>;
1630
1332
  readonly method: v.LiteralSchema<"getAddresses", undefined>;
@@ -1656,11 +1358,6 @@ declare const bitcoinRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
1656
1358
  readonly method: v.LiteralSchema<"getInfo", undefined>;
1657
1359
  readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
1658
1360
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1659
- }, undefined>, v.ObjectSchema<{
1660
- readonly id: v.StringSchema<undefined>;
1661
- readonly method: v.LiteralSchema<"bitcoin_getInfoV2", undefined>;
1662
- readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
1663
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1664
1361
  }, undefined>, v.ObjectSchema<{
1665
1362
  readonly id: v.StringSchema<undefined>;
1666
1363
  readonly method: v.LiteralSchema<"sendTransfer", undefined>;
@@ -1723,7 +1420,7 @@ declare const bitcoinRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
1723
1420
  readonly params: v.ObjectSchema<{
1724
1421
  readonly psbt: v.StringSchema<undefined>;
1725
1422
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
1726
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1423
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
1727
1424
  }, undefined>;
1728
1425
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1729
1426
  }, undefined>, v.ObjectSchema<{
@@ -1732,19 +1429,17 @@ declare const bitcoinRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
1732
1429
  readonly params: v.ObjectSchema<{
1733
1430
  readonly psbt: v.StringSchema<undefined>;
1734
1431
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
1735
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
1432
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
1736
1433
  }, undefined>;
1737
1434
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1738
1435
  }, undefined>], undefined>;
1739
1436
  type BitcoinSuccessResponses = ExactObject<BitcoinMethod, {
1740
1437
  [bitcoinMethods.getAccounts]: BitcoinGetAccountsSuccessResponse;
1741
- [bitcoinMethods.bitcoin_getAccountsV2]: BitcoinGetAccountsV2SuccessResponse;
1742
1438
  [bitcoinMethods.getAddresses]: BitcoinGetAddressesSuccessResponse;
1743
1439
  [bitcoinMethods.bitcoin_getAddressesV2]: BitcoinGetAddressesV2SuccessResponse;
1744
1440
  [bitcoinMethods.getBalance]: BitcoinGetBalanceSuccessResponse;
1745
1441
  [bitcoinMethods.bitcoin_getBalanceV2]: BitcoinGetBalanceV2SuccessResponse;
1746
1442
  [bitcoinMethods.getInfo]: BitcoinGetInfoSuccessResponse;
1747
- [bitcoinMethods.bitcoin_getInfoV2]: BitcoinGetInfoV2SuccessResponse;
1748
1443
  [bitcoinMethods.sendTransfer]: BitcoinSendTransferSuccessResponse;
1749
1444
  [bitcoinMethods.bitcoin_sendTransferV2]: BitcoinSendTransferV2SuccessResponse;
1750
1445
  [bitcoinMethods.signMessage]: BitcoinSignMessageSuccessResponse;
@@ -1772,24 +1467,6 @@ declare const bitcoinSuccessResponseSchema: v.VariantSchema<"~sats-connect-metho
1772
1467
  }, undefined>], undefined>, undefined>;
1773
1468
  }, undefined>, undefined>;
1774
1469
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1775
- }, undefined>, v.ObjectSchema<{
1776
- readonly id: v.StringSchema<undefined>;
1777
- readonly result: v.ArraySchema<v.ObjectSchema<{
1778
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
1779
- readonly address: v.StringSchema<undefined>;
1780
- readonly publicKey: v.StringSchema<undefined>;
1781
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
1782
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
1783
- }, undefined>, undefined>;
1784
- readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getAccountsV2", undefined>;
1785
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
1786
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
1787
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
1788
- readonly message: v.StringSchema<undefined>;
1789
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
1790
- }, undefined>], undefined>, undefined>;
1791
- }, undefined>, undefined>;
1792
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1793
1470
  }, undefined>, v.ObjectSchema<{
1794
1471
  readonly id: v.StringSchema<undefined>;
1795
1472
  readonly result: v.ObjectSchema<{
@@ -1834,38 +1511,139 @@ declare const bitcoinSuccessResponseSchema: v.VariantSchema<"~sats-connect-metho
1834
1511
  readonly networks: v.ObjectSchema<{
1835
1512
  readonly active: v.ObjectSchema<{
1836
1513
  readonly bitcoin: v.ObjectSchema<{
1514
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
1515
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1516
+ readonly mainnet: "mainnet";
1517
+ readonly testnet: "testnet";
1518
+ readonly testnet4: "testnet4";
1519
+ readonly signet: "signet";
1520
+ readonly regtest: "regtest";
1521
+ }, undefined>]>;
1522
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1523
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1837
1524
  readonly id: v.StringSchema<undefined>;
1838
- readonly type: v.StringSchema<undefined>;
1839
1525
  readonly name: v.StringSchema<undefined>;
1526
+ readonly source: v.EnumSchema<{
1527
+ readonly builtin: "builtin";
1528
+ readonly custom: "custom";
1529
+ }, undefined>;
1530
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1840
1531
  }, undefined>;
1841
- readonly stacks: v.ObjectSchema<{
1532
+ readonly spark: v.ObjectSchema<{
1533
+ readonly chain: v.LiteralSchema<"spark", undefined>;
1534
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1535
+ readonly mainnet: "mainnet";
1536
+ readonly regtest: "regtest";
1537
+ }, undefined>]>;
1538
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1842
1539
  readonly id: v.StringSchema<undefined>;
1843
- readonly type: v.StringSchema<undefined>;
1844
1540
  readonly name: v.StringSchema<undefined>;
1541
+ readonly source: v.EnumSchema<{
1542
+ readonly builtin: "builtin";
1543
+ readonly custom: "custom";
1544
+ }, undefined>;
1545
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1845
1546
  }, undefined>;
1846
- readonly spark: v.ObjectSchema<{
1547
+ readonly stacks: v.ObjectSchema<{
1548
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
1549
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1550
+ readonly mainnet: "mainnet";
1551
+ readonly testnet: "testnet";
1552
+ readonly devnet: "devnet";
1553
+ readonly mocknet: "mocknet";
1554
+ }, undefined>]>;
1555
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1556
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1847
1557
  readonly id: v.StringSchema<undefined>;
1848
- readonly type: v.StringSchema<undefined>;
1849
1558
  readonly name: v.StringSchema<undefined>;
1559
+ readonly source: v.EnumSchema<{
1560
+ readonly builtin: "builtin";
1561
+ readonly custom: "custom";
1562
+ }, undefined>;
1563
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1850
1564
  }, undefined>;
1851
1565
  readonly starknet: v.ObjectSchema<{
1566
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
1567
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1568
+ readonly mainnet: "mainnet";
1569
+ readonly sepolia: "sepolia";
1570
+ }, undefined>]>;
1571
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1572
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1852
1573
  readonly id: v.StringSchema<undefined>;
1853
- readonly type: v.StringSchema<undefined>;
1854
1574
  readonly name: v.StringSchema<undefined>;
1575
+ readonly source: v.EnumSchema<{
1576
+ readonly builtin: "builtin";
1577
+ readonly custom: "custom";
1578
+ }, undefined>;
1579
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1855
1580
  }, undefined>;
1856
1581
  }, undefined>;
1857
- readonly builtin: v.ObjectSchema<{
1858
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
1859
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
1860
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
1861
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
1862
- }, undefined>;
1863
- readonly custom: v.ObjectSchema<{
1864
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
1865
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
1866
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
1867
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
1868
- }, undefined>;
1582
+ readonly all: v.ArraySchema<v.VariantSchema<"chain", [v.ObjectSchema<{
1583
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
1584
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1585
+ readonly mainnet: "mainnet";
1586
+ readonly testnet: "testnet";
1587
+ readonly testnet4: "testnet4";
1588
+ readonly signet: "signet";
1589
+ readonly regtest: "regtest";
1590
+ }, undefined>]>;
1591
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1592
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1593
+ readonly id: v.StringSchema<undefined>;
1594
+ readonly name: v.StringSchema<undefined>;
1595
+ readonly source: v.EnumSchema<{
1596
+ readonly builtin: "builtin";
1597
+ readonly custom: "custom";
1598
+ }, undefined>;
1599
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1600
+ }, undefined>, v.ObjectSchema<{
1601
+ readonly chain: v.LiteralSchema<"spark", undefined>;
1602
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1603
+ readonly mainnet: "mainnet";
1604
+ readonly regtest: "regtest";
1605
+ }, undefined>]>;
1606
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1607
+ readonly id: v.StringSchema<undefined>;
1608
+ readonly name: v.StringSchema<undefined>;
1609
+ readonly source: v.EnumSchema<{
1610
+ readonly builtin: "builtin";
1611
+ readonly custom: "custom";
1612
+ }, undefined>;
1613
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1614
+ }, undefined>, v.ObjectSchema<{
1615
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
1616
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1617
+ readonly mainnet: "mainnet";
1618
+ readonly testnet: "testnet";
1619
+ readonly devnet: "devnet";
1620
+ readonly mocknet: "mocknet";
1621
+ }, undefined>]>;
1622
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1623
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1624
+ readonly id: v.StringSchema<undefined>;
1625
+ readonly name: v.StringSchema<undefined>;
1626
+ readonly source: v.EnumSchema<{
1627
+ readonly builtin: "builtin";
1628
+ readonly custom: "custom";
1629
+ }, undefined>;
1630
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1631
+ }, undefined>, v.ObjectSchema<{
1632
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
1633
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
1634
+ readonly mainnet: "mainnet";
1635
+ readonly sepolia: "sepolia";
1636
+ }, undefined>]>;
1637
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1638
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
1639
+ readonly id: v.StringSchema<undefined>;
1640
+ readonly name: v.StringSchema<undefined>;
1641
+ readonly source: v.EnumSchema<{
1642
+ readonly builtin: "builtin";
1643
+ readonly custom: "custom";
1644
+ }, undefined>;
1645
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
1646
+ }, undefined>], undefined>, undefined>;
1869
1647
  }, undefined>;
1870
1648
  }, undefined>;
1871
1649
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getAddressesV2", undefined>;
@@ -1896,28 +1674,11 @@ declare const bitcoinSuccessResponseSchema: v.VariantSchema<"~sats-connect-metho
1896
1674
  }, undefined>, v.ObjectSchema<{
1897
1675
  readonly id: v.StringSchema<undefined>;
1898
1676
  readonly result: v.ObjectSchema<{
1899
- readonly confirmed: v.StringSchema<undefined>;
1900
- readonly unconfirmed: v.StringSchema<undefined>;
1901
- readonly total: v.StringSchema<undefined>;
1902
- }, undefined>;
1903
- readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getBalanceV2", undefined>;
1904
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
1905
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
1906
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
1907
- readonly message: v.StringSchema<undefined>;
1908
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
1909
- }, undefined>], undefined>, undefined>;
1910
- }, undefined>, undefined>;
1911
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1912
- }, undefined>, v.ObjectSchema<{
1913
- readonly id: v.StringSchema<undefined>;
1914
- readonly result: v.ObjectSchema<{
1915
- readonly version: v.StringSchema<undefined>;
1916
- readonly platform: v.OptionalSchema<v.EnumSchema<typeof ProviderPlatform, undefined>, undefined>;
1917
- readonly methods: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
1918
- readonly supports: v.ArraySchema<v.StringSchema<undefined>, undefined>;
1677
+ readonly confirmed: v.StringSchema<undefined>;
1678
+ readonly unconfirmed: v.StringSchema<undefined>;
1679
+ readonly total: v.StringSchema<undefined>;
1919
1680
  }, undefined>;
1920
- readonly '~sats-connect-method': v.LiteralSchema<"getInfo", undefined>;
1681
+ readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getBalanceV2", undefined>;
1921
1682
  readonly extensions: v.OptionalSchema<v.ObjectSchema<{
1922
1683
  readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
1923
1684
  readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
@@ -1934,7 +1695,7 @@ declare const bitcoinSuccessResponseSchema: v.VariantSchema<"~sats-connect-metho
1934
1695
  readonly methods: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
1935
1696
  readonly supports: v.ArraySchema<v.StringSchema<undefined>, undefined>;
1936
1697
  }, undefined>;
1937
- readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getInfoV2", undefined>;
1698
+ readonly '~sats-connect-method': v.LiteralSchema<"getInfo", undefined>;
1938
1699
  readonly extensions: v.OptionalSchema<v.ObjectSchema<{
1939
1700
  readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
1940
1701
  readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
@@ -2008,8 +1769,8 @@ declare const bitcoinSuccessResponseSchema: v.VariantSchema<"~sats-connect-metho
2008
1769
  }, undefined>, v.ObjectSchema<{
2009
1770
  readonly id: v.StringSchema<undefined>;
2010
1771
  readonly result: v.ArraySchema<v.ObjectSchema<{
2011
- readonly signature: v.StringSchema<undefined>;
2012
1772
  readonly message: v.StringSchema<undefined>;
1773
+ readonly signature: v.StringSchema<undefined>;
2013
1774
  readonly messageHash: v.StringSchema<undefined>;
2014
1775
  readonly address: v.StringSchema<undefined>;
2015
1776
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
@@ -2026,8 +1787,8 @@ declare const bitcoinSuccessResponseSchema: v.VariantSchema<"~sats-connect-metho
2026
1787
  }, undefined>, v.ObjectSchema<{
2027
1788
  readonly id: v.StringSchema<undefined>;
2028
1789
  readonly result: v.ArraySchema<v.ObjectSchema<{
2029
- readonly signature: v.StringSchema<undefined>;
2030
1790
  readonly message: v.StringSchema<undefined>;
1791
+ readonly signature: v.StringSchema<undefined>;
2031
1792
  readonly messageHash: v.StringSchema<undefined>;
2032
1793
  readonly address: v.StringSchema<undefined>;
2033
1794
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
@@ -4901,75 +4662,6 @@ declare const stacksGetAddressesSuccessResponseSchema: v.ObjectSchema<{
4901
4662
  }, undefined>;
4902
4663
  type StacksGetAddressesSuccessResponse = v.InferOutput<typeof stacksGetAddressesSuccessResponseSchema>;
4903
4664
  //#endregion
4904
- //#region src/request/rpc/objects/namespaces/stacks/methods/getAddressesV2/request.d.ts
4905
- declare const stacksGetAddressesV2ParamsSchema: v.NullishSchema<v.ObjectSchema<{
4906
- /**
4907
- * A message to be displayed to the user in the request prompt.
4908
- */
4909
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4910
- }, undefined>, undefined>;
4911
- type StacksGetAddressesV2Params = v.InferOutput<typeof stacksGetAddressesV2ParamsSchema>;
4912
- declare const stacksGetAddressesV2RequestSchema: v.ObjectSchema<{
4913
- readonly id: v.StringSchema<undefined>;
4914
- readonly method: v.LiteralSchema<"stacks_getAddressesV2", undefined>;
4915
- readonly params: v.NullishSchema<v.ObjectSchema<{
4916
- /**
4917
- * A message to be displayed to the user in the request prompt.
4918
- */
4919
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
4920
- }, undefined>, undefined>;
4921
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
4922
- }, undefined>;
4923
- type StacksGetAddressesV2Request = v.InferOutput<typeof stacksGetAddressesV2RequestSchema>;
4924
- //#endregion
4925
- //#region src/request/rpc/objects/namespaces/stacks/methods/getAddressesV2/response.d.ts
4926
- declare const stacksGetAddressesV2ResultSchema: v.ObjectSchema<{
4927
- /**
4928
- * The addresses generated for the given purposes.
4929
- */
4930
- readonly addresses: v.ArraySchema<v.ObjectSchema<{
4931
- readonly address: v.StringSchema<undefined>;
4932
- readonly publicKey: v.StringSchema<undefined>;
4933
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
4934
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
4935
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
4936
- }, undefined>, undefined>;
4937
- readonly network: v.ObjectSchema<{
4938
- readonly type: v.UnionSchema<[v.LiteralSchema<"Mainnet", undefined>, v.LiteralSchema<"Testnet", undefined>, v.LiteralSchema<"Devnet", undefined>, v.LiteralSchema<"Signet", undefined>], undefined>;
4939
- readonly chain: v.UnionSchema<[v.LiteralSchema<"bitcoin", undefined>, v.LiteralSchema<"stacks", undefined>], undefined>;
4940
- }, undefined>;
4941
- }, undefined>;
4942
- type StacksGetAddressesV2Result = v.InferOutput<typeof stacksGetAddressesV2ResultSchema>;
4943
- declare const stacksGetAddressesV2SuccessResponseSchema: v.ObjectSchema<{
4944
- readonly id: v.StringSchema<undefined>;
4945
- readonly result: v.ObjectSchema<{
4946
- /**
4947
- * The addresses generated for the given purposes.
4948
- */
4949
- readonly addresses: v.ArraySchema<v.ObjectSchema<{
4950
- readonly address: v.StringSchema<undefined>;
4951
- readonly publicKey: v.StringSchema<undefined>;
4952
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
4953
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
4954
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
4955
- }, undefined>, undefined>;
4956
- readonly network: v.ObjectSchema<{
4957
- readonly type: v.UnionSchema<[v.LiteralSchema<"Mainnet", undefined>, v.LiteralSchema<"Testnet", undefined>, v.LiteralSchema<"Devnet", undefined>, v.LiteralSchema<"Signet", undefined>], undefined>;
4958
- readonly chain: v.UnionSchema<[v.LiteralSchema<"bitcoin", undefined>, v.LiteralSchema<"stacks", undefined>], undefined>;
4959
- }, undefined>;
4960
- }, undefined>;
4961
- readonly '~sats-connect-method': v.LiteralSchema<"stacks_getAddressesV2", undefined>;
4962
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
4963
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
4964
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
4965
- readonly message: v.StringSchema<undefined>;
4966
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
4967
- }, undefined>], undefined>, undefined>;
4968
- }, undefined>, undefined>;
4969
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
4970
- }, undefined>;
4971
- type StacksGetAddressesV2SuccessResponse = v.InferOutput<typeof stacksGetAddressesV2SuccessResponseSchema>;
4972
- //#endregion
4973
4665
  //#region src/request/rpc/objects/namespaces/stacks/methods/signMessage/request.d.ts
4974
4666
  declare const stacksSignMessageParamsSchema: v.ObjectSchema<{
4975
4667
  /**
@@ -5177,7 +4869,7 @@ declare const stacksSignTransactionsParamsSchema: v.ObjectSchema<{
5177
4869
  * Whether the signed transactions should be broadcast after signing. Defaults
5178
4870
  * to `true`.
5179
4871
  */
5180
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
4872
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, true>;
5181
4873
  }, undefined>;
5182
4874
  type StacksSignTransactionsParams = v.InferOutput<typeof stacksSignTransactionsParamsSchema>;
5183
4875
  declare const stacksSignTransactionsRequestSchema: v.ObjectSchema<{
@@ -5192,7 +4884,7 @@ declare const stacksSignTransactionsRequestSchema: v.ObjectSchema<{
5192
4884
  * Whether the signed transactions should be broadcast after signing. Defaults
5193
4885
  * to `true`.
5194
4886
  */
5195
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
4887
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, true>;
5196
4888
  }, undefined>;
5197
4889
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
5198
4890
  }, undefined>;
@@ -5262,7 +4954,8 @@ declare const stacksTransferStxParamsSchema: v.ObjectSchema<{
5262
4954
  /**
5263
4955
  * A hex-encoded string representing the post conditions.
5264
4956
  *
5265
- * A post condition may be converted to it's hex representation using the `serializePostCondition` helper from the `@stacks/transactions` package,
4957
+ * A post condition may be converted to it's hex representation using the
4958
+ * `serializePostCondition` helper from the `@stacks/transactions` package,
5266
4959
  *
5267
4960
  * ```js
5268
4961
  * import { serializePostCondition } from '@stacks/transactions';
@@ -5315,7 +5008,8 @@ declare const stacksTransferStxRequestSchema: v.ObjectSchema<{
5315
5008
  /**
5316
5009
  * A hex-encoded string representing the post conditions.
5317
5010
  *
5318
- * A post condition may be converted to it's hex representation using the `serializePostCondition` helper from the `@stacks/transactions` package,
5011
+ * A post condition may be converted to it's hex representation using the
5012
+ * `serializePostCondition` helper from the `@stacks/transactions` package,
5319
5013
  *
5320
5014
  * ```js
5321
5015
  * import { serializePostCondition } from '@stacks/transactions';
@@ -5377,7 +5071,6 @@ type StacksRequests = ExactObject<StacksMethod, {
5377
5071
  [stacksMethods.stx_deployContract]: StacksDeployContractRequest;
5378
5072
  [stacksMethods.stx_getAccounts]: StacksGetAccountsRequest;
5379
5073
  [stacksMethods.stx_getAddresses]: StacksGetAddressesRequest;
5380
- [stacksMethods.stacks_getAddressesV2]: StacksGetAddressesV2Request;
5381
5074
  [stacksMethods.stx_signMessage]: StacksSignMessageRequest;
5382
5075
  [stacksMethods.stx_signStructuredMessage]: StacksSignStructuredMessageRequest;
5383
5076
  [stacksMethods.stx_signTransaction]: StacksSignTransactionRequest;
@@ -5419,13 +5112,6 @@ declare const stacksRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
5419
5112
  readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5420
5113
  }, undefined>, undefined>;
5421
5114
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
5422
- }, undefined>, v.ObjectSchema<{
5423
- readonly id: v.StringSchema<undefined>;
5424
- readonly method: v.LiteralSchema<"stacks_getAddressesV2", undefined>;
5425
- readonly params: v.NullishSchema<v.ObjectSchema<{
5426
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
5427
- }, undefined>, undefined>;
5428
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
5429
5115
  }, undefined>, v.ObjectSchema<{
5430
5116
  readonly id: v.StringSchema<undefined>;
5431
5117
  readonly method: v.LiteralSchema<"stx_signMessage", undefined>;
@@ -5456,7 +5142,7 @@ declare const stacksRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
5456
5142
  readonly method: v.LiteralSchema<"stx_signTransactions", undefined>;
5457
5143
  readonly params: v.ObjectSchema<{
5458
5144
  readonly transactions: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.CheckAction<string, "Invalid hex-encoded Stacks transaction.">]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
5459
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
5145
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, true>;
5460
5146
  }, undefined>;
5461
5147
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
5462
5148
  }, undefined>, v.ObjectSchema<{
@@ -5478,7 +5164,6 @@ type StacksSuccessResponses = ExactObject<StacksMethod, {
5478
5164
  [stacksMethods.stx_deployContract]: StacksDeployContractSuccessResponse;
5479
5165
  [stacksMethods.stx_getAccounts]: StacksGetAccountsSuccessResponse;
5480
5166
  [stacksMethods.stx_getAddresses]: StacksGetAddressesSuccessResponse;
5481
- [stacksMethods.stacks_getAddressesV2]: StacksGetAddressesV2SuccessResponse;
5482
5167
  [stacksMethods.stx_signMessage]: StacksSignMessageSuccessResponse;
5483
5168
  [stacksMethods.stx_signStructuredMessage]: StacksSignStructuredMessageSuccessResponse;
5484
5169
  [stacksMethods.stx_signTransaction]: StacksSignTransactionSuccessResponse;
@@ -5576,30 +5261,6 @@ declare const stacksSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
5576
5261
  }, undefined>], undefined>, undefined>;
5577
5262
  }, undefined>, undefined>;
5578
5263
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
5579
- }, undefined>, v.ObjectSchema<{
5580
- readonly id: v.StringSchema<undefined>;
5581
- readonly result: v.ObjectSchema<{
5582
- readonly addresses: v.ArraySchema<v.ObjectSchema<{
5583
- readonly address: v.StringSchema<undefined>;
5584
- readonly publicKey: v.StringSchema<undefined>;
5585
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
5586
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
5587
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
5588
- }, undefined>, undefined>;
5589
- readonly network: v.ObjectSchema<{
5590
- readonly type: v.UnionSchema<[v.LiteralSchema<"Mainnet", undefined>, v.LiteralSchema<"Testnet", undefined>, v.LiteralSchema<"Devnet", undefined>, v.LiteralSchema<"Signet", undefined>], undefined>;
5591
- readonly chain: v.UnionSchema<[v.LiteralSchema<"bitcoin", undefined>, v.LiteralSchema<"stacks", undefined>], undefined>;
5592
- }, undefined>;
5593
- }, undefined>;
5594
- readonly '~sats-connect-method': v.LiteralSchema<"stacks_getAddressesV2", undefined>;
5595
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
5596
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
5597
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
5598
- readonly message: v.StringSchema<undefined>;
5599
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
5600
- }, undefined>], undefined>, undefined>;
5601
- }, undefined>, undefined>;
5602
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
5603
5264
  }, undefined>, v.ObjectSchema<{
5604
5265
  readonly id: v.StringSchema<undefined>;
5605
5266
  readonly result: v.ObjectSchema<{
@@ -6658,39 +6319,6 @@ declare const walletChangeNetworkSuccessResponseSchema: v.ObjectSchema<{
6658
6319
  }, undefined>;
6659
6320
  type WalletChangeNetworkSuccessResponse = v.InferOutput<typeof walletChangeNetworkSuccessResponseSchema>;
6660
6321
  //#endregion
6661
- //#region src/request/rpc/objects/namespaces/wallet/methods/changeNetworkById/request.d.ts
6662
- declare const walletChangeNetworkByIdParamsSchema: v.ObjectSchema<{
6663
- readonly id: v.StringSchema<undefined>;
6664
- }, undefined>;
6665
- type WalletChangeNetworkByIdParams = v.InferOutput<typeof walletChangeNetworkByIdParamsSchema>;
6666
- declare const walletChangeNetworkByIdRequestSchema: v.ObjectSchema<{
6667
- readonly id: v.StringSchema<undefined>;
6668
- readonly method: v.LiteralSchema<"wallet_changeNetworkById", undefined>;
6669
- readonly params: v.ObjectSchema<{
6670
- readonly id: v.StringSchema<undefined>;
6671
- }, undefined>;
6672
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
6673
- }, undefined>;
6674
- type WalletChangeNetworkByIdRequest = v.InferOutput<typeof walletChangeNetworkByIdRequestSchema>;
6675
- //#endregion
6676
- //#region src/request/rpc/objects/namespaces/wallet/methods/changeNetworkById/response.d.ts
6677
- declare const walletChangeNetworkByIdResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
6678
- type WalletChangeNetworkByIdResult = v.InferOutput<typeof walletChangeNetworkByIdResultSchema>;
6679
- declare const walletChangeNetworkByIdSuccessResponseSchema: v.ObjectSchema<{
6680
- readonly id: v.StringSchema<undefined>;
6681
- readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
6682
- readonly '~sats-connect-method': v.LiteralSchema<"wallet_changeNetworkById", undefined>;
6683
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
6684
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
6685
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
6686
- readonly message: v.StringSchema<undefined>;
6687
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
6688
- }, undefined>], undefined>, undefined>;
6689
- }, undefined>, undefined>;
6690
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
6691
- }, undefined>;
6692
- type WalletChangeNetworkByIdSuccessResponse = v.InferOutput<typeof walletChangeNetworkByIdSuccessResponseSchema>;
6693
- //#endregion
6694
6322
  //#region src/request/rpc/objects/namespaces/wallet/methods/connect/request.d.ts
6695
6323
  declare const walletConnectParamsSchema: v.NullishSchema<v.ObjectSchema<{
6696
6324
  readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
@@ -6811,7 +6439,7 @@ declare const walletConnectV2ParamsSchema: v.NullishSchema<v.ObjectSchema<{
6811
6439
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6812
6440
  }, undefined>;
6813
6441
  }, undefined>], undefined>;
6814
- readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
6442
+ readonly addressPurposes: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
6815
6443
  readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
6816
6444
  readonly networkId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6817
6445
  }, undefined>, undefined>;
@@ -6833,7 +6461,7 @@ declare const walletConnectV2RequestSchema: v.ObjectSchema<{
6833
6461
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
6834
6462
  }, undefined>;
6835
6463
  }, undefined>], undefined>;
6836
- readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
6464
+ readonly addressPurposes: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
6837
6465
  readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
6838
6466
  readonly networkId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
6839
6467
  }, undefined>, undefined>;
@@ -7588,7 +7216,7 @@ declare const walletGetCurrentPermissionsRequestSchema: v.ObjectSchema<{
7588
7216
  type WalletGetCurrentPermissionsRequest = v.InferOutput<typeof walletGetCurrentPermissionsRequestSchema>;
7589
7217
  //#endregion
7590
7218
  //#region src/request/rpc/objects/namespaces/wallet/methods/getCurrentPermissions/response.d.ts
7591
- declare const walletGetCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
7219
+ declare const walletGetCurrentPermissionsResultSchema: v.VariantSchema<"type", [v.ObjectSchema<{
7592
7220
  readonly type: v.LiteralSchema<"account", undefined>;
7593
7221
  readonly resourceId: v.StringSchema<undefined>;
7594
7222
  readonly clientId: v.StringSchema<undefined>;
@@ -7602,11 +7230,11 @@ declare const walletGetCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSc
7602
7230
  readonly actions: v.ObjectSchema<{
7603
7231
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
7604
7232
  }, undefined>;
7605
- }, undefined>], undefined>, undefined>;
7233
+ }, undefined>], undefined>;
7606
7234
  type WalletGetCurrentPermissionsResult = v.InferOutput<typeof walletGetCurrentPermissionsResultSchema>;
7607
7235
  declare const walletGetCurrentPermissionsSuccessResponseSchema: v.ObjectSchema<{
7608
7236
  readonly id: v.StringSchema<undefined>;
7609
- readonly result: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
7237
+ readonly result: v.VariantSchema<"type", [v.ObjectSchema<{
7610
7238
  readonly type: v.LiteralSchema<"account", undefined>;
7611
7239
  readonly resourceId: v.StringSchema<undefined>;
7612
7240
  readonly clientId: v.StringSchema<undefined>;
@@ -7620,7 +7248,7 @@ declare const walletGetCurrentPermissionsSuccessResponseSchema: v.ObjectSchema<{
7620
7248
  readonly actions: v.ObjectSchema<{
7621
7249
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
7622
7250
  }, undefined>;
7623
- }, undefined>], undefined>, undefined>;
7251
+ }, undefined>], undefined>;
7624
7252
  readonly '~sats-connect-method': v.LiteralSchema<"wallet_getCurrentPermissions", undefined>;
7625
7253
  readonly extensions: v.OptionalSchema<v.ObjectSchema<{
7626
7254
  readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
@@ -8155,7 +7783,7 @@ declare const walletRenouncePermissionsSuccessResponseSchema: v.ObjectSchema<{
8155
7783
  type WalletRenouncePermissionsSuccessResponse = v.InferOutput<typeof walletRenouncePermissionsSuccessResponseSchema>;
8156
7784
  //#endregion
8157
7785
  //#region src/request/rpc/objects/namespaces/wallet/methods/requestPermissions/request.d.ts
8158
- declare const walletRequestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
7786
+ declare const walletRequestPermissionsParamsSchema: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
8159
7787
  readonly type: v.LiteralSchema<"account", undefined>;
8160
7788
  readonly resourceId: v.StringSchema<undefined>;
8161
7789
  readonly actions: v.ObjectSchema<{
@@ -8167,12 +7795,12 @@ declare const walletRequestPermissionsParamsSchema: v.NullishSchema<v.ArraySchem
8167
7795
  readonly actions: v.ObjectSchema<{
8168
7796
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
8169
7797
  }, undefined>;
8170
- }, undefined>], undefined>, undefined>, undefined>;
7798
+ }, undefined>], undefined>, undefined>;
8171
7799
  type WalletRequestPermissionsParams = v.InferOutput<typeof walletRequestPermissionsParamsSchema>;
8172
7800
  declare const walletRequestPermissionsRequestSchema: v.ObjectSchema<{
8173
7801
  readonly id: v.StringSchema<undefined>;
8174
7802
  readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
8175
- readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
7803
+ readonly params: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
8176
7804
  readonly type: v.LiteralSchema<"account", undefined>;
8177
7805
  readonly resourceId: v.StringSchema<undefined>;
8178
7806
  readonly actions: v.ObjectSchema<{
@@ -8184,7 +7812,7 @@ declare const walletRequestPermissionsRequestSchema: v.ObjectSchema<{
8184
7812
  readonly actions: v.ObjectSchema<{
8185
7813
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
8186
7814
  }, undefined>;
8187
- }, undefined>], undefined>, undefined>, undefined>;
7815
+ }, undefined>], undefined>, undefined>;
8188
7816
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
8189
7817
  }, undefined>;
8190
7818
  type WalletRequestPermissionsRequest = v.InferOutput<typeof walletRequestPermissionsRequestSchema>;
@@ -8207,6 +7835,47 @@ declare const walletRequestPermissionsSuccessResponseSchema: v.ObjectSchema<{
8207
7835
  }, undefined>;
8208
7836
  type WalletRequestPermissionsSuccessResponse = v.InferOutput<typeof walletRequestPermissionsSuccessResponseSchema>;
8209
7837
  //#endregion
7838
+ //#region src/request/rpc/objects/namespaces/wallet/methods/switchNetwork/request.d.ts
7839
+ declare const walletSwitchNetworkParamsSchema: v.VariantSchema<"selector", [v.ObjectSchema<{
7840
+ readonly selector: v.LiteralSchema<"id", undefined>;
7841
+ /**
7842
+ * ID of the network configuration to activate.
7843
+ */
7844
+ readonly id: v.StringSchema<undefined>;
7845
+ }, undefined>], undefined>;
7846
+ type WalletSwitchNetworkParams = v.InferOutput<typeof walletSwitchNetworkParamsSchema>;
7847
+ declare const walletSwitchNetworkRequestSchema: v.ObjectSchema<{
7848
+ readonly id: v.StringSchema<undefined>;
7849
+ readonly method: v.LiteralSchema<"wallet_switchNetwork", undefined>;
7850
+ readonly params: v.VariantSchema<"selector", [v.ObjectSchema<{
7851
+ readonly selector: v.LiteralSchema<"id", undefined>;
7852
+ /**
7853
+ * ID of the network configuration to activate.
7854
+ */
7855
+ readonly id: v.StringSchema<undefined>;
7856
+ }, undefined>], undefined>;
7857
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
7858
+ }, undefined>;
7859
+ type WalletSwitchNetworkRequest = v.InferOutput<typeof walletSwitchNetworkRequestSchema>;
7860
+ //#endregion
7861
+ //#region src/request/rpc/objects/namespaces/wallet/methods/switchNetwork/response.d.ts
7862
+ declare const walletSwitchNetworkResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
7863
+ type WalletSwitchNetworkResult = v.InferOutput<typeof walletSwitchNetworkResultSchema>;
7864
+ declare const walletSwitchNetworkSuccessResponseSchema: v.ObjectSchema<{
7865
+ readonly id: v.StringSchema<undefined>;
7866
+ readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
7867
+ readonly '~sats-connect-method': v.LiteralSchema<"wallet_switchNetwork", undefined>;
7868
+ readonly extensions: v.OptionalSchema<v.ObjectSchema<{
7869
+ readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
7870
+ readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
7871
+ readonly message: v.StringSchema<undefined>;
7872
+ readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
7873
+ }, undefined>], undefined>, undefined>;
7874
+ }, undefined>, undefined>;
7875
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
7876
+ }, undefined>;
7877
+ type WalletSwitchNetworkSuccessResponse = v.InferOutput<typeof walletSwitchNetworkSuccessResponseSchema>;
7878
+ //#endregion
8210
7879
  //#region src/request/rpc/objects/namespaces/wallet/shared/permissions.d.ts
8211
7880
  /**
8212
7881
  * Permissions with the clientId field omitted and optional actions. Used for
@@ -9487,7 +9156,6 @@ type AllResolvedNetworks = v.InferOutput<typeof allResolvedNetworksSchema>;
9487
9156
  type WalletRequests = ExactObject<WalletMethod, {
9488
9157
  [walletMethods.wallet_addNetwork]: WalletAddNetworkRequest;
9489
9158
  [walletMethods.wallet_addNetworkV2]: WalletAddNetworkV2Request;
9490
- [walletMethods.wallet_changeNetworkById]: WalletChangeNetworkByIdRequest;
9491
9159
  [walletMethods.wallet_changeNetwork]: WalletChangeNetworkRequest;
9492
9160
  [walletMethods.wallet_connect]: WalletConnectRequest;
9493
9161
  [walletMethods.wallet_connectV2]: WalletConnectV2Request;
@@ -9503,6 +9171,7 @@ type WalletRequests = ExactObject<WalletMethod, {
9503
9171
  [walletMethods.wallet_openReceive]: WalletOpenReceiveRequest;
9504
9172
  [walletMethods.wallet_renouncePermissions]: WalletRenouncePermissionsRequest;
9505
9173
  [walletMethods.wallet_requestPermissions]: WalletRequestPermissionsRequest;
9174
+ [walletMethods.wallet_switchNetwork]: WalletSwitchNetworkRequest;
9506
9175
  }>;
9507
9176
  declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
9508
9177
  readonly id: v.StringSchema<undefined>;
@@ -9890,13 +9559,6 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
9890
9559
  readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
9891
9560
  }, undefined>;
9892
9561
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
9893
- }, undefined>, v.ObjectSchema<{
9894
- readonly id: v.StringSchema<undefined>;
9895
- readonly method: v.LiteralSchema<"wallet_changeNetworkById", undefined>;
9896
- readonly params: v.ObjectSchema<{
9897
- readonly id: v.StringSchema<undefined>;
9898
- }, undefined>;
9899
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
9900
9562
  }, undefined>, v.ObjectSchema<{
9901
9563
  readonly id: v.StringSchema<undefined>;
9902
9564
  readonly method: v.LiteralSchema<"wallet_changeNetwork", undefined>;
@@ -9943,7 +9605,7 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
9943
9605
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
9944
9606
  }, undefined>;
9945
9607
  }, undefined>], undefined>;
9946
- readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
9608
+ readonly addressPurposes: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
9947
9609
  readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
9948
9610
  readonly networkId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
9949
9611
  }, undefined>, undefined>;
@@ -10013,7 +9675,7 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
10013
9675
  }, undefined>, v.ObjectSchema<{
10014
9676
  readonly id: v.StringSchema<undefined>;
10015
9677
  readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
10016
- readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
9678
+ readonly params: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
10017
9679
  readonly type: v.LiteralSchema<"account", undefined>;
10018
9680
  readonly resourceId: v.StringSchema<undefined>;
10019
9681
  readonly actions: v.ObjectSchema<{
@@ -10025,13 +9687,20 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
10025
9687
  readonly actions: v.ObjectSchema<{
10026
9688
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
10027
9689
  }, undefined>;
10028
- }, undefined>], undefined>, undefined>, undefined>;
9690
+ }, undefined>], undefined>, undefined>;
9691
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
9692
+ }, undefined>, v.ObjectSchema<{
9693
+ readonly id: v.StringSchema<undefined>;
9694
+ readonly method: v.LiteralSchema<"wallet_switchNetwork", undefined>;
9695
+ readonly params: v.VariantSchema<"selector", [v.ObjectSchema<{
9696
+ readonly selector: v.LiteralSchema<"id", undefined>;
9697
+ readonly id: v.StringSchema<undefined>;
9698
+ }, undefined>], undefined>;
10029
9699
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10030
9700
  }, undefined>], undefined>;
10031
9701
  type WalletSuccessResponses = ExactObject<WalletMethod, {
10032
9702
  [walletMethods.wallet_addNetwork]: WalletAddNetworkSuccessResponse;
10033
9703
  [walletMethods.wallet_addNetworkV2]: WalletAddNetworkV2SuccessResponse;
10034
- [walletMethods.wallet_changeNetworkById]: WalletChangeNetworkByIdSuccessResponse;
10035
9704
  [walletMethods.wallet_changeNetwork]: WalletChangeNetworkSuccessResponse;
10036
9705
  [walletMethods.wallet_connect]: WalletConnectSuccessResponse;
10037
9706
  [walletMethods.wallet_connectV2]: WalletConnectV2SuccessResponse;
@@ -10047,6 +9716,7 @@ type WalletSuccessResponses = ExactObject<WalletMethod, {
10047
9716
  [walletMethods.wallet_openReceive]: WalletOpenReceiveSuccessResponse;
10048
9717
  [walletMethods.wallet_renouncePermissions]: WalletRenouncePermissionsSuccessResponse;
10049
9718
  [walletMethods.wallet_requestPermissions]: WalletRequestPermissionsSuccessResponse;
9719
+ [walletMethods.wallet_switchNetwork]: WalletChangeNetworkSuccessResponse;
10050
9720
  }>;
10051
9721
  declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method", [v.ObjectSchema<{
10052
9722
  readonly id: v.StringSchema<undefined>;
@@ -10138,18 +9808,6 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
10138
9808
  }, undefined>], undefined>, undefined>;
10139
9809
  }, undefined>, undefined>;
10140
9810
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10141
- }, undefined>, v.ObjectSchema<{
10142
- readonly id: v.StringSchema<undefined>;
10143
- readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
10144
- readonly '~sats-connect-method': v.LiteralSchema<"wallet_changeNetworkById", undefined>;
10145
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
10146
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
10147
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
10148
- readonly message: v.StringSchema<undefined>;
10149
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
10150
- }, undefined>], undefined>, undefined>;
10151
- }, undefined>, undefined>;
10152
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10153
9811
  }, undefined>, v.ObjectSchema<{
10154
9812
  readonly id: v.StringSchema<undefined>;
10155
9813
  readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
@@ -10560,7 +10218,7 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
10560
10218
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10561
10219
  }, undefined>, v.ObjectSchema<{
10562
10220
  readonly id: v.StringSchema<undefined>;
10563
- readonly result: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
10221
+ readonly result: v.VariantSchema<"type", [v.ObjectSchema<{
10564
10222
  readonly type: v.LiteralSchema<"account", undefined>;
10565
10223
  readonly resourceId: v.StringSchema<undefined>;
10566
10224
  readonly clientId: v.StringSchema<undefined>;
@@ -10574,7 +10232,7 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
10574
10232
  readonly actions: v.ObjectSchema<{
10575
10233
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
10576
10234
  }, undefined>;
10577
- }, undefined>], undefined>, undefined>;
10235
+ }, undefined>], undefined>;
10578
10236
  readonly '~sats-connect-method': v.LiteralSchema<"wallet_getCurrentPermissions", undefined>;
10579
10237
  readonly extensions: v.OptionalSchema<v.ObjectSchema<{
10580
10238
  readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
@@ -10584,28 +10242,6 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
10584
10242
  }, undefined>], undefined>, undefined>;
10585
10243
  }, undefined>, undefined>;
10586
10244
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10587
- }, undefined>, v.ObjectSchema<{
10588
- readonly id: v.StringSchema<undefined>;
10589
- readonly result: v.ObjectSchema<{
10590
- readonly bitcoin: v.ObjectSchema<{
10591
- readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
10592
- }, undefined>;
10593
- readonly stacks: v.ObjectSchema<{
10594
- readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
10595
- }, undefined>;
10596
- readonly spark: v.ObjectSchema<{
10597
- readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
10598
- }, undefined>;
10599
- }, undefined>;
10600
- readonly '~sats-connect-method': v.LiteralSchema<"wallet_getNetwork", undefined>;
10601
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
10602
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
10603
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
10604
- readonly message: v.StringSchema<undefined>;
10605
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
10606
- }, undefined>], undefined>, undefined>;
10607
- }, undefined>, undefined>;
10608
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10609
10245
  }, undefined>, v.ObjectSchema<{
10610
10246
  readonly id: v.StringSchema<undefined>;
10611
10247
  readonly result: v.ObjectSchema<{
@@ -10754,6 +10390,28 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
10754
10390
  }, undefined>], undefined>, undefined>;
10755
10391
  }, undefined>, undefined>;
10756
10392
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10393
+ }, undefined>, v.ObjectSchema<{
10394
+ readonly id: v.StringSchema<undefined>;
10395
+ readonly result: v.ObjectSchema<{
10396
+ readonly bitcoin: v.ObjectSchema<{
10397
+ readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
10398
+ }, undefined>;
10399
+ readonly stacks: v.ObjectSchema<{
10400
+ readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
10401
+ }, undefined>;
10402
+ readonly spark: v.ObjectSchema<{
10403
+ readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
10404
+ }, undefined>;
10405
+ }, undefined>;
10406
+ readonly '~sats-connect-method': v.LiteralSchema<"wallet_getNetwork", undefined>;
10407
+ readonly extensions: v.OptionalSchema<v.ObjectSchema<{
10408
+ readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
10409
+ readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
10410
+ readonly message: v.StringSchema<undefined>;
10411
+ readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
10412
+ }, undefined>], undefined>, undefined>;
10413
+ }, undefined>, undefined>;
10414
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10757
10415
  }, undefined>, v.ObjectSchema<{
10758
10416
  readonly id: v.StringSchema<undefined>;
10759
10417
  readonly result: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
@@ -10832,6 +10490,18 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
10832
10490
  }, undefined>], undefined>, undefined>;
10833
10491
  }, undefined>, undefined>;
10834
10492
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10493
+ }, undefined>, v.ObjectSchema<{
10494
+ readonly id: v.StringSchema<undefined>;
10495
+ readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
10496
+ readonly '~sats-connect-method': v.LiteralSchema<"wallet_switchNetwork", undefined>;
10497
+ readonly extensions: v.OptionalSchema<v.ObjectSchema<{
10498
+ readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
10499
+ readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
10500
+ readonly message: v.StringSchema<undefined>;
10501
+ readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
10502
+ }, undefined>], undefined>, undefined>;
10503
+ }, undefined>, undefined>;
10504
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10835
10505
  }, undefined>], undefined>;
10836
10506
  //#endregion
10837
10507
  //#region src/request/rpc/objects/shared/index.d.ts
@@ -10854,14 +10524,6 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
10854
10524
  readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
10855
10525
  }, undefined>;
10856
10526
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10857
- }, undefined>, v.ObjectSchema<{
10858
- readonly id: v.StringSchema<undefined>;
10859
- readonly method: v.LiteralSchema<"bitcoin_getAccountsV2", undefined>;
10860
- readonly params: v.ObjectSchema<{
10861
- readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
10862
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
10863
- }, undefined>;
10864
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10865
10527
  }, undefined>, v.ObjectSchema<{
10866
10528
  readonly id: v.StringSchema<undefined>;
10867
10529
  readonly method: v.LiteralSchema<"getAddresses", undefined>;
@@ -10893,11 +10555,6 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
10893
10555
  readonly method: v.LiteralSchema<"getInfo", undefined>;
10894
10556
  readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
10895
10557
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10896
- }, undefined>, v.ObjectSchema<{
10897
- readonly id: v.StringSchema<undefined>;
10898
- readonly method: v.LiteralSchema<"bitcoin_getInfoV2", undefined>;
10899
- readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
10900
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10901
10558
  }, undefined>, v.ObjectSchema<{
10902
10559
  readonly id: v.StringSchema<undefined>;
10903
10560
  readonly method: v.LiteralSchema<"sendTransfer", undefined>;
@@ -10960,7 +10617,7 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
10960
10617
  readonly params: v.ObjectSchema<{
10961
10618
  readonly psbt: v.StringSchema<undefined>;
10962
10619
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
10963
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
10620
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
10964
10621
  }, undefined>;
10965
10622
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10966
10623
  }, undefined>, v.ObjectSchema<{
@@ -10969,7 +10626,7 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
10969
10626
  readonly params: v.ObjectSchema<{
10970
10627
  readonly psbt: v.StringSchema<undefined>;
10971
10628
  readonly signInputs: v.OptionalSchema<v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>, undefined>;
10972
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
10629
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
10973
10630
  }, undefined>;
10974
10631
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
10975
10632
  }, undefined>], undefined>, v.VariantSchema<"method", [v.ObjectSchema<{
@@ -11007,13 +10664,6 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
11007
10664
  readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
11008
10665
  }, undefined>, undefined>;
11009
10666
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11010
- }, undefined>, v.ObjectSchema<{
11011
- readonly id: v.StringSchema<undefined>;
11012
- readonly method: v.LiteralSchema<"stacks_getAddressesV2", undefined>;
11013
- readonly params: v.NullishSchema<v.ObjectSchema<{
11014
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
11015
- }, undefined>, undefined>;
11016
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11017
10667
  }, undefined>, v.ObjectSchema<{
11018
10668
  readonly id: v.StringSchema<undefined>;
11019
10669
  readonly method: v.LiteralSchema<"stx_signMessage", undefined>;
@@ -11044,7 +10694,7 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
11044
10694
  readonly method: v.LiteralSchema<"stx_signTransactions", undefined>;
11045
10695
  readonly params: v.ObjectSchema<{
11046
10696
  readonly transactions: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.CheckAction<string, "Invalid hex-encoded Stacks transaction.">]>, undefined>, v.MinLengthAction<string[], 1, undefined>]>;
11047
- readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
10697
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, true>;
11048
10698
  }, undefined>;
11049
10699
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11050
10700
  }, undefined>, v.ObjectSchema<{
@@ -11790,13 +11440,6 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
11790
11440
  readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, false>;
11791
11441
  }, undefined>;
11792
11442
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11793
- }, undefined>, v.ObjectSchema<{
11794
- readonly id: v.StringSchema<undefined>;
11795
- readonly method: v.LiteralSchema<"wallet_changeNetworkById", undefined>;
11796
- readonly params: v.ObjectSchema<{
11797
- readonly id: v.StringSchema<undefined>;
11798
- }, undefined>;
11799
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11800
11443
  }, undefined>, v.ObjectSchema<{
11801
11444
  readonly id: v.StringSchema<undefined>;
11802
11445
  readonly method: v.LiteralSchema<"wallet_changeNetwork", undefined>;
@@ -11843,7 +11486,7 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
11843
11486
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
11844
11487
  }, undefined>;
11845
11488
  }, undefined>], undefined>;
11846
- readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
11489
+ readonly addressPurposes: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
11847
11490
  readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
11848
11491
  readonly networkId: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
11849
11492
  }, undefined>, undefined>;
@@ -11913,7 +11556,7 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
11913
11556
  }, undefined>, v.ObjectSchema<{
11914
11557
  readonly id: v.StringSchema<undefined>;
11915
11558
  readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
11916
- readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
11559
+ readonly params: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
11917
11560
  readonly type: v.LiteralSchema<"account", undefined>;
11918
11561
  readonly resourceId: v.StringSchema<undefined>;
11919
11562
  readonly actions: v.ObjectSchema<{
@@ -11925,7 +11568,15 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
11925
11568
  readonly actions: v.ObjectSchema<{
11926
11569
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
11927
11570
  }, undefined>;
11928
- }, undefined>], undefined>, undefined>, undefined>;
11571
+ }, undefined>], undefined>, undefined>;
11572
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11573
+ }, undefined>, v.ObjectSchema<{
11574
+ readonly id: v.StringSchema<undefined>;
11575
+ readonly method: v.LiteralSchema<"wallet_switchNetwork", undefined>;
11576
+ readonly params: v.VariantSchema<"selector", [v.ObjectSchema<{
11577
+ readonly selector: v.LiteralSchema<"id", undefined>;
11578
+ readonly id: v.StringSchema<undefined>;
11579
+ }, undefined>], undefined>;
11929
11580
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11930
11581
  }, undefined>], undefined>], undefined>;
11931
11582
  type RpcRequest = v.InferOutput<typeof rpcRequestSchema>;
@@ -11960,24 +11611,6 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
11960
11611
  }, undefined>], undefined>, undefined>;
11961
11612
  }, undefined>, undefined>;
11962
11613
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11963
- }, undefined>, v.ObjectSchema<{
11964
- readonly id: v.StringSchema<undefined>;
11965
- readonly result: v.ArraySchema<v.ObjectSchema<{
11966
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
11967
- readonly address: v.StringSchema<undefined>;
11968
- readonly publicKey: v.StringSchema<undefined>;
11969
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
11970
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
11971
- }, undefined>, undefined>;
11972
- readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getAccountsV2", undefined>;
11973
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
11974
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
11975
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
11976
- readonly message: v.StringSchema<undefined>;
11977
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
11978
- }, undefined>], undefined>, undefined>;
11979
- }, undefined>, undefined>;
11980
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
11981
11614
  }, undefined>, v.ObjectSchema<{
11982
11615
  readonly id: v.StringSchema<undefined>;
11983
11616
  readonly result: v.ObjectSchema<{
@@ -12022,38 +11655,139 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
12022
11655
  readonly networks: v.ObjectSchema<{
12023
11656
  readonly active: v.ObjectSchema<{
12024
11657
  readonly bitcoin: v.ObjectSchema<{
11658
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
11659
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11660
+ readonly mainnet: "mainnet";
11661
+ readonly testnet: "testnet";
11662
+ readonly testnet4: "testnet4";
11663
+ readonly signet: "signet";
11664
+ readonly regtest: "regtest";
11665
+ }, undefined>]>;
11666
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11667
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
12025
11668
  readonly id: v.StringSchema<undefined>;
12026
- readonly type: v.StringSchema<undefined>;
12027
11669
  readonly name: v.StringSchema<undefined>;
11670
+ readonly source: v.EnumSchema<{
11671
+ readonly builtin: "builtin";
11672
+ readonly custom: "custom";
11673
+ }, undefined>;
11674
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
12028
11675
  }, undefined>;
12029
- readonly stacks: v.ObjectSchema<{
11676
+ readonly spark: v.ObjectSchema<{
11677
+ readonly chain: v.LiteralSchema<"spark", undefined>;
11678
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11679
+ readonly mainnet: "mainnet";
11680
+ readonly regtest: "regtest";
11681
+ }, undefined>]>;
11682
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
12030
11683
  readonly id: v.StringSchema<undefined>;
12031
- readonly type: v.StringSchema<undefined>;
12032
11684
  readonly name: v.StringSchema<undefined>;
11685
+ readonly source: v.EnumSchema<{
11686
+ readonly builtin: "builtin";
11687
+ readonly custom: "custom";
11688
+ }, undefined>;
11689
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
12033
11690
  }, undefined>;
12034
- readonly spark: v.ObjectSchema<{
11691
+ readonly stacks: v.ObjectSchema<{
11692
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
11693
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11694
+ readonly mainnet: "mainnet";
11695
+ readonly testnet: "testnet";
11696
+ readonly devnet: "devnet";
11697
+ readonly mocknet: "mocknet";
11698
+ }, undefined>]>;
11699
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11700
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
12035
11701
  readonly id: v.StringSchema<undefined>;
12036
- readonly type: v.StringSchema<undefined>;
12037
11702
  readonly name: v.StringSchema<undefined>;
11703
+ readonly source: v.EnumSchema<{
11704
+ readonly builtin: "builtin";
11705
+ readonly custom: "custom";
11706
+ }, undefined>;
11707
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
12038
11708
  }, undefined>;
12039
11709
  readonly starknet: v.ObjectSchema<{
11710
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
11711
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11712
+ readonly mainnet: "mainnet";
11713
+ readonly sepolia: "sepolia";
11714
+ }, undefined>]>;
11715
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11716
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
12040
11717
  readonly id: v.StringSchema<undefined>;
12041
- readonly type: v.StringSchema<undefined>;
12042
11718
  readonly name: v.StringSchema<undefined>;
11719
+ readonly source: v.EnumSchema<{
11720
+ readonly builtin: "builtin";
11721
+ readonly custom: "custom";
11722
+ }, undefined>;
11723
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
12043
11724
  }, undefined>;
12044
11725
  }, undefined>;
12045
- readonly builtin: v.ObjectSchema<{
12046
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
12047
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
12048
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
12049
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
12050
- }, undefined>;
12051
- readonly custom: v.ObjectSchema<{
12052
- readonly bitcoin: v.ArraySchema<v.AnySchema, undefined>;
12053
- readonly stacks: v.ArraySchema<v.AnySchema, undefined>;
12054
- readonly spark: v.ArraySchema<v.AnySchema, undefined>;
12055
- readonly starknet: v.ArraySchema<v.AnySchema, undefined>;
12056
- }, undefined>;
11726
+ readonly all: v.ArraySchema<v.VariantSchema<"chain", [v.ObjectSchema<{
11727
+ readonly chain: v.LiteralSchema<"bitcoin", undefined>;
11728
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11729
+ readonly mainnet: "mainnet";
11730
+ readonly testnet: "testnet";
11731
+ readonly testnet4: "testnet4";
11732
+ readonly signet: "signet";
11733
+ readonly regtest: "regtest";
11734
+ }, undefined>]>;
11735
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11736
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11737
+ readonly id: v.StringSchema<undefined>;
11738
+ readonly name: v.StringSchema<undefined>;
11739
+ readonly source: v.EnumSchema<{
11740
+ readonly builtin: "builtin";
11741
+ readonly custom: "custom";
11742
+ }, undefined>;
11743
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
11744
+ }, undefined>, v.ObjectSchema<{
11745
+ readonly chain: v.LiteralSchema<"spark", undefined>;
11746
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11747
+ readonly mainnet: "mainnet";
11748
+ readonly regtest: "regtest";
11749
+ }, undefined>]>;
11750
+ readonly electrsApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11751
+ readonly id: v.StringSchema<undefined>;
11752
+ readonly name: v.StringSchema<undefined>;
11753
+ readonly source: v.EnumSchema<{
11754
+ readonly builtin: "builtin";
11755
+ readonly custom: "custom";
11756
+ }, undefined>;
11757
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
11758
+ }, undefined>, v.ObjectSchema<{
11759
+ readonly chain: v.LiteralSchema<"stacks", undefined>;
11760
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11761
+ readonly mainnet: "mainnet";
11762
+ readonly testnet: "testnet";
11763
+ readonly devnet: "devnet";
11764
+ readonly mocknet: "mocknet";
11765
+ }, undefined>]>;
11766
+ readonly stacksApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11767
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11768
+ readonly id: v.StringSchema<undefined>;
11769
+ readonly name: v.StringSchema<undefined>;
11770
+ readonly source: v.EnumSchema<{
11771
+ readonly builtin: "builtin";
11772
+ readonly custom: "custom";
11773
+ }, undefined>;
11774
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
11775
+ }, undefined>, v.ObjectSchema<{
11776
+ readonly chain: v.LiteralSchema<"starknet", undefined>;
11777
+ readonly mode: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.EnumSchema<{
11778
+ readonly mainnet: "mainnet";
11779
+ readonly sepolia: "sepolia";
11780
+ }, undefined>]>;
11781
+ readonly rpcApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11782
+ readonly xverseApiUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>;
11783
+ readonly id: v.StringSchema<undefined>;
11784
+ readonly name: v.StringSchema<undefined>;
11785
+ readonly source: v.EnumSchema<{
11786
+ readonly builtin: "builtin";
11787
+ readonly custom: "custom";
11788
+ }, undefined>;
11789
+ readonly blockExplorerUrl: v.OptionalSchema<v.UnionSchema<[v.SchemaWithPipe<readonly [v.LiteralSchema<"", undefined>, v.TransformAction<"", undefined>]>, v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.UrlAction<string, undefined>]>], undefined>, undefined>;
11790
+ }, undefined>], undefined>, undefined>;
12057
11791
  }, undefined>;
12058
11792
  }, undefined>;
12059
11793
  readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getAddressesV2", undefined>;
@@ -12114,23 +11848,6 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
12114
11848
  }, undefined>], undefined>, undefined>;
12115
11849
  }, undefined>, undefined>;
12116
11850
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
12117
- }, undefined>, v.ObjectSchema<{
12118
- readonly id: v.StringSchema<undefined>;
12119
- readonly result: v.ObjectSchema<{
12120
- readonly version: v.StringSchema<undefined>;
12121
- readonly platform: v.OptionalSchema<v.EnumSchema<typeof ProviderPlatform, undefined>, undefined>;
12122
- readonly methods: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
12123
- readonly supports: v.ArraySchema<v.StringSchema<undefined>, undefined>;
12124
- }, undefined>;
12125
- readonly '~sats-connect-method': v.LiteralSchema<"bitcoin_getInfoV2", undefined>;
12126
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
12127
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
12128
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
12129
- readonly message: v.StringSchema<undefined>;
12130
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
12131
- }, undefined>], undefined>, undefined>;
12132
- }, undefined>, undefined>;
12133
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
12134
11851
  }, undefined>, v.ObjectSchema<{
12135
11852
  readonly id: v.StringSchema<undefined>;
12136
11853
  readonly result: v.ObjectSchema<{
@@ -12196,8 +11913,8 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
12196
11913
  }, undefined>, v.ObjectSchema<{
12197
11914
  readonly id: v.StringSchema<undefined>;
12198
11915
  readonly result: v.ArraySchema<v.ObjectSchema<{
12199
- readonly signature: v.StringSchema<undefined>;
12200
11916
  readonly message: v.StringSchema<undefined>;
11917
+ readonly signature: v.StringSchema<undefined>;
12201
11918
  readonly messageHash: v.StringSchema<undefined>;
12202
11919
  readonly address: v.StringSchema<undefined>;
12203
11920
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
@@ -12214,8 +11931,8 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
12214
11931
  }, undefined>, v.ObjectSchema<{
12215
11932
  readonly id: v.StringSchema<undefined>;
12216
11933
  readonly result: v.ArraySchema<v.ObjectSchema<{
12217
- readonly signature: v.StringSchema<undefined>;
12218
11934
  readonly message: v.StringSchema<undefined>;
11935
+ readonly signature: v.StringSchema<undefined>;
12219
11936
  readonly messageHash: v.StringSchema<undefined>;
12220
11937
  readonly address: v.StringSchema<undefined>;
12221
11938
  readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
@@ -12350,30 +12067,6 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
12350
12067
  }, undefined>], undefined>, undefined>;
12351
12068
  }, undefined>, undefined>;
12352
12069
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
12353
- }, undefined>, v.ObjectSchema<{
12354
- readonly id: v.StringSchema<undefined>;
12355
- readonly result: v.ObjectSchema<{
12356
- readonly addresses: v.ArraySchema<v.ObjectSchema<{
12357
- readonly address: v.StringSchema<undefined>;
12358
- readonly publicKey: v.StringSchema<undefined>;
12359
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
12360
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
12361
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
12362
- }, undefined>, undefined>;
12363
- readonly network: v.ObjectSchema<{
12364
- readonly type: v.UnionSchema<[v.LiteralSchema<"Mainnet", undefined>, v.LiteralSchema<"Testnet", undefined>, v.LiteralSchema<"Devnet", undefined>, v.LiteralSchema<"Signet", undefined>], undefined>;
12365
- readonly chain: v.UnionSchema<[v.LiteralSchema<"bitcoin", undefined>, v.LiteralSchema<"stacks", undefined>], undefined>;
12366
- }, undefined>;
12367
- }, undefined>;
12368
- readonly '~sats-connect-method': v.LiteralSchema<"stacks_getAddressesV2", undefined>;
12369
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
12370
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
12371
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
12372
- readonly message: v.StringSchema<undefined>;
12373
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
12374
- }, undefined>], undefined>, undefined>;
12375
- }, undefined>, undefined>;
12376
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
12377
12070
  }, undefined>, v.ObjectSchema<{
12378
12071
  readonly id: v.StringSchema<undefined>;
12379
12072
  readonly result: v.ObjectSchema<{
@@ -12991,18 +12684,6 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
12991
12684
  }, undefined>], undefined>, undefined>;
12992
12685
  }, undefined>, undefined>;
12993
12686
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
12994
- }, undefined>, v.ObjectSchema<{
12995
- readonly id: v.StringSchema<undefined>;
12996
- readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
12997
- readonly '~sats-connect-method': v.LiteralSchema<"wallet_changeNetworkById", undefined>;
12998
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
12999
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
13000
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
13001
- readonly message: v.StringSchema<undefined>;
13002
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
13003
- }, undefined>], undefined>, undefined>;
13004
- }, undefined>, undefined>;
13005
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13006
12687
  }, undefined>, v.ObjectSchema<{
13007
12688
  readonly id: v.StringSchema<undefined>;
13008
12689
  readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
@@ -13413,7 +13094,7 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
13413
13094
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13414
13095
  }, undefined>, v.ObjectSchema<{
13415
13096
  readonly id: v.StringSchema<undefined>;
13416
- readonly result: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
13097
+ readonly result: v.VariantSchema<"type", [v.ObjectSchema<{
13417
13098
  readonly type: v.LiteralSchema<"account", undefined>;
13418
13099
  readonly resourceId: v.StringSchema<undefined>;
13419
13100
  readonly clientId: v.StringSchema<undefined>;
@@ -13427,7 +13108,7 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
13427
13108
  readonly actions: v.ObjectSchema<{
13428
13109
  readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
13429
13110
  }, undefined>;
13430
- }, undefined>], undefined>, undefined>;
13111
+ }, undefined>], undefined>;
13431
13112
  readonly '~sats-connect-method': v.LiteralSchema<"wallet_getCurrentPermissions", undefined>;
13432
13113
  readonly extensions: v.OptionalSchema<v.ObjectSchema<{
13433
13114
  readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
@@ -13437,28 +13118,6 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
13437
13118
  }, undefined>], undefined>, undefined>;
13438
13119
  }, undefined>, undefined>;
13439
13120
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13440
- }, undefined>, v.ObjectSchema<{
13441
- readonly id: v.StringSchema<undefined>;
13442
- readonly result: v.ObjectSchema<{
13443
- readonly bitcoin: v.ObjectSchema<{
13444
- readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
13445
- }, undefined>;
13446
- readonly stacks: v.ObjectSchema<{
13447
- readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
13448
- }, undefined>;
13449
- readonly spark: v.ObjectSchema<{
13450
- readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
13451
- }, undefined>;
13452
- }, undefined>;
13453
- readonly '~sats-connect-method': v.LiteralSchema<"wallet_getNetwork", undefined>;
13454
- readonly extensions: v.OptionalSchema<v.ObjectSchema<{
13455
- readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
13456
- readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
13457
- readonly message: v.StringSchema<undefined>;
13458
- readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
13459
- }, undefined>], undefined>, undefined>;
13460
- }, undefined>, undefined>;
13461
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13462
13121
  }, undefined>, v.ObjectSchema<{
13463
13122
  readonly id: v.StringSchema<undefined>;
13464
13123
  readonly result: v.ObjectSchema<{
@@ -13607,6 +13266,28 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
13607
13266
  }, undefined>], undefined>, undefined>;
13608
13267
  }, undefined>, undefined>;
13609
13268
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13269
+ }, undefined>, v.ObjectSchema<{
13270
+ readonly id: v.StringSchema<undefined>;
13271
+ readonly result: v.ObjectSchema<{
13272
+ readonly bitcoin: v.ObjectSchema<{
13273
+ readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
13274
+ }, undefined>;
13275
+ readonly stacks: v.ObjectSchema<{
13276
+ readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
13277
+ }, undefined>;
13278
+ readonly spark: v.ObjectSchema<{
13279
+ readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
13280
+ }, undefined>;
13281
+ }, undefined>;
13282
+ readonly '~sats-connect-method': v.LiteralSchema<"wallet_getNetwork", undefined>;
13283
+ readonly extensions: v.OptionalSchema<v.ObjectSchema<{
13284
+ readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
13285
+ readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
13286
+ readonly message: v.StringSchema<undefined>;
13287
+ readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
13288
+ }, undefined>], undefined>, undefined>;
13289
+ }, undefined>, undefined>;
13290
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13610
13291
  }, undefined>, v.ObjectSchema<{
13611
13292
  readonly id: v.StringSchema<undefined>;
13612
13293
  readonly result: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
@@ -13685,6 +13366,18 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
13685
13366
  }, undefined>], undefined>, undefined>;
13686
13367
  }, undefined>, undefined>;
13687
13368
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13369
+ }, undefined>, v.ObjectSchema<{
13370
+ readonly id: v.StringSchema<undefined>;
13371
+ readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
13372
+ readonly '~sats-connect-method': v.LiteralSchema<"wallet_switchNetwork", undefined>;
13373
+ readonly extensions: v.OptionalSchema<v.ObjectSchema<{
13374
+ readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
13375
+ readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
13376
+ readonly message: v.StringSchema<undefined>;
13377
+ readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
13378
+ }, undefined>], undefined>, undefined>;
13379
+ }, undefined>, undefined>;
13380
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
13688
13381
  }, undefined>], undefined>], undefined>;
13689
13382
  type RpcSuccessResponse = v.InferOutput<typeof rpcSuccessResponseSchema>;
13690
13383
  declare function createRpcSuccessResponse<M extends Method>({
@@ -14163,4 +13856,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
14163
13856
  declare const DefaultAdaptersInfo: Record<string, Provider>;
14164
13857
  declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
14165
13858
  //#endregion
14166
- export { AccountChangeCallback, AccountChangeEvent, AddListener, Address, AddressPurpose, AddressType, AllResolvedNetworks, BaseAdapter, BitcoinGetAccountsParams, BitcoinGetAccountsRequest, BitcoinGetAccountsResult, BitcoinGetAccountsSuccessResponse, BitcoinGetAccountsV2Params, BitcoinGetAccountsV2Request, BitcoinGetAccountsV2Result, BitcoinGetAccountsV2SuccessResponse, BitcoinGetAddressesParams, BitcoinGetAddressesRequest, BitcoinGetAddressesResult, BitcoinGetAddressesSuccessResponse, BitcoinGetAddressesV2Params, BitcoinGetAddressesV2Request, BitcoinGetAddressesV2Result, BitcoinGetAddressesV2SuccessResponse, BitcoinGetBalanceParams, BitcoinGetBalanceRequest, BitcoinGetBalanceResult, BitcoinGetBalanceSuccessResponse, BitcoinGetBalanceV2Params, BitcoinGetBalanceV2Request, BitcoinGetBalanceV2Result, BitcoinGetBalanceV2SuccessResponse, BitcoinGetInfoParams, BitcoinGetInfoRequest, BitcoinGetInfoResult, BitcoinGetInfoSuccessResponse, BitcoinGetInfoV2Params, BitcoinGetInfoV2Request, BitcoinGetInfoV2Result, BitcoinGetInfoV2SuccessResponse, BitcoinMethod, BitcoinNetwork, BitcoinNetworkConfigurationOptions, BitcoinNetworkType, BitcoinProvider, BitcoinRequests, BitcoinSendTransferParams, BitcoinSendTransferRequest, BitcoinSendTransferResult, BitcoinSendTransferSuccessResponse, BitcoinSendTransferV2Params, BitcoinSendTransferV2Request, BitcoinSendTransferV2Result, BitcoinSendTransferV2SuccessResponse, BitcoinSignMessageParams, BitcoinSignMessageRequest, BitcoinSignMessageResult, BitcoinSignMessageSuccessResponse, BitcoinSignMessageV2Params, BitcoinSignMessageV2Request, BitcoinSignMessageV2Result, BitcoinSignMessageV2SuccessResponse, BitcoinSignMultipleMessagesParams, BitcoinSignMultipleMessagesRequest, BitcoinSignMultipleMessagesResult, BitcoinSignMultipleMessagesSuccessResponse, BitcoinSignMultipleMessagesV2Params, BitcoinSignMultipleMessagesV2Request, BitcoinSignMultipleMessagesV2Result, BitcoinSignMultipleMessagesV2SuccessResponse, BitcoinSignPsbtParams, BitcoinSignPsbtRequest, BitcoinSignPsbtResult, BitcoinSignPsbtSuccessResponse, BitcoinSignPsbtV2Params, BitcoinSignPsbtV2Request, BitcoinSignPsbtV2Result, BitcoinSignPsbtV2SuccessResponse, BitcoinSuccessResponses, Capability, CreateInscriptionOptions, CreateInscriptionPayload, CreateInscriptionResponse, CreateRepeatInscriptionsOptions, CreateRepeatInscriptionsPayload, CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, DisconnectCallback, DisconnectEvent, GetAddressOptions, GetAddressPayload, GetAddressResponse, GetCapabilitiesOptions, GetCapabilitiesPayload, GetCapabilitiesResponse, InputToSign, ListenerInfo, MessageSigningProtocols, Method, NetworkChangeCallback, NetworkChangeEvent, NetworkChangeEventV2, NetworkConfigurationOptions, OrdinalsGetInscriptionsParams, OrdinalsGetInscriptionsRequest, OrdinalsGetInscriptionsResult, OrdinalsGetInscriptionsSuccessResponse, OrdinalsMethod, OrdinalsRequests, OrdinalsSendInscriptionsParams, OrdinalsSendInscriptionsRequest, OrdinalsSendInscriptionsResult, OrdinalsSendInscriptionsSuccessResponse, OrdinalsSuccessResponses, PermissionWithoutClientId, Provider, ProviderPlatform, PsbtPayload, Recipient, RequestOptions, RequestPayload, RequestReturn, RpcErrorCode, RpcId, RpcRequest, RpcRequestParams, RpcRequests, RpcSuccessResponse, RpcSuccessResponseResult, RpcSuccessResponses, RunesEstimateEtchParams, RunesEstimateEtchRequest, RunesEstimateEtchResult, RunesEstimateEtchSuccessResponse, RunesEstimateMintParams, RunesEstimateMintRequest, RunesEstimateMintResult, RunesEstimateMintSuccessResponse, RunesEstimateRbfOrderParams, RunesEstimateRbfOrderRequest, RunesEstimateRbfOrderResult, RunesEstimateRbfOrderSuccessResponse, RunesEtchParams, RunesEtchRequest, RunesEtchResult, RunesEtchSuccessResponse, RunesGetBalanceParams, RunesGetBalanceRequest, RunesGetBalanceResult, RunesGetBalanceSuccessResponse, RunesGetOrderParams, RunesGetOrderRequest, RunesGetOrderResult, RunesGetOrderSuccessResponse, RunesMethod, RunesMintParams, RunesMintRequest, RunesMintResult, RunesMintSuccessResponse, RunesRbfOrderParams, RunesRbfOrderRequest, RunesRbfOrderResult, RunesRbfOrderSuccessResponse, RunesRequests, RunesSuccessResponses, RunesTransferParams, RunesTransferRequest, RunesTransferResult, RunesTransferSuccessResponse, SatsConnectAdapter, SendBtcTransactionOptions, SendBtcTransactionPayload, SendBtcTransactionResponse, SerializedRecipient, SerializedSendBtcTransactionPayload, SignMessageOptions, SignMessagePayload, SignMessageResponse, SignMultiplePsbtPayload, SignMultipleTransactionOptions, SignMultipleTransactionsPayload, SignMultipleTransactionsResponse, SignTransactionOptions, SignTransactionPayload, SignTransactionResponse, SparkFlashnetClawbackFundsParams, SparkFlashnetClawbackFundsRequest, SparkFlashnetClawbackFundsResult, SparkFlashnetClawbackFundsSuccessResponse, SparkFlashnetExecuteRouteSwapParams, SparkFlashnetExecuteRouteSwapRequest, SparkFlashnetExecuteRouteSwapResult, SparkFlashnetExecuteRouteSwapSuccessResponse, SparkFlashnetExecuteSwapParams, SparkFlashnetExecuteSwapRequest, SparkFlashnetExecuteSwapResult, SparkFlashnetExecuteSwapSuccessResponse, SparkFlashnetGetJwtParams, SparkFlashnetGetJwtRequest, SparkFlashnetGetJwtResult, SparkFlashnetGetJwtSuccessResponse, SparkFlashnetSignIntentParams, SparkFlashnetSignIntentRequest, SparkFlashnetSignIntentResult, SparkFlashnetSignIntentSuccessResponse, SparkFlashnetSignStructuredMessageParams, SparkFlashnetSignStructuredMessageRequest, SparkFlashnetSignStructuredMessageResult, SparkFlashnetSignStructuredMessageSuccessResponse, SparkGetAddressesParams, SparkGetAddressesRequest, SparkGetAddressesResult, SparkGetAddressesSuccessResponse, SparkGetAddressesV2Params, SparkGetAddressesV2Request, SparkGetAddressesV2Result, SparkGetAddressesV2SuccessResponse, SparkGetBalanceParams, SparkGetBalanceRequest, SparkGetBalanceResult, SparkGetBalanceSuccessResponse, SparkGetClawbackEligibleTransfersParams, SparkGetClawbackEligibleTransfersRequest, SparkGetClawbackEligibleTransfersResult, SparkGetClawbackEligibleTransfersSuccessResponse, SparkMethod, SparkNetworkConfigurationOptions, SparkNetworkType, SparkRequests, SparkSignMessageParams, SparkSignMessageRequest, SparkSignMessageResult, SparkSignMessageSuccessResponse, SparkSuccessResponses, SparkTransferParams, SparkTransferRequest, SparkTransferResult, SparkTransferSuccessResponse, SparkTransferTokenParams, SparkTransferTokenRequest, SparkTransferTokenResult, SparkTransferTokenSuccessResponse, SpecErrorObject, SpecErrorResponse, SpecId, SpecRequest, SpecResponse, SpecSuccessResponse, SpecSuccessWithExtensionsResponse, StacksCallContractParams, StacksCallContractRequest, StacksCallContractResult, StacksCallContractSuccessResponse, StacksDeployContractParams, StacksDeployContractRequest, StacksDeployContractResult, StacksDeployContractSuccessResponse, StacksGetAccountsParams, StacksGetAccountsRequest, StacksGetAccountsResult, StacksGetAccountsSuccessResponse, StacksGetAddressesParams, StacksGetAddressesRequest, StacksGetAddressesResult, StacksGetAddressesSuccessResponse, StacksGetAddressesV2Params, StacksGetAddressesV2Request, StacksGetAddressesV2Result, StacksGetAddressesV2SuccessResponse, StacksMethod, StacksNetworkConfigurationOptions, StacksNetworkType, StacksRequests, StacksSignMessageParams, StacksSignMessageRequest, StacksSignMessageResult, StacksSignMessageSuccessResponse, StacksSignStructuredMessageParams, StacksSignStructuredMessageRequest, StacksSignStructuredMessageResult, StacksSignStructuredMessageSuccessResponse, StacksSignTransactionParams, StacksSignTransactionRequest, StacksSignTransactionResult, StacksSignTransactionSuccessResponse, StacksSignTransactionsParams, StacksSignTransactionsRequest, StacksSignTransactionsResult, StacksSignTransactionsSuccessResponse, StacksSuccessResponses, StacksTransferStxParams, StacksTransferStxRequest, StacksTransferStxResult, StacksTransferStxSuccessResponse, StarknetNetworkConfigurationOptions, StarknetNetworkType, SupportState, SupportedWallet, WalletAddNetworkParams, WalletAddNetworkRequest, WalletAddNetworkResult, WalletAddNetworkSuccessResponse, WalletAddNetworkV2Params, WalletAddNetworkV2Request, WalletAddNetworkV2Result, WalletAddNetworkV2SuccessResponse, WalletChangeNetworkByIdParams, WalletChangeNetworkByIdRequest, WalletChangeNetworkByIdResult, WalletChangeNetworkByIdSuccessResponse, WalletChangeNetworkParams, WalletChangeNetworkRequest, WalletChangeNetworkResult, WalletChangeNetworkSuccessResponse, WalletConnectParams, WalletConnectRequest, WalletConnectResult, WalletConnectSuccessResponse, WalletConnectV2Params, WalletConnectV2Request, WalletConnectV2Result, WalletConnectV2SuccessResponse, WalletDisconnectParams, WalletDisconnectRequest, WalletDisconnectResult, WalletDisconnectSuccessResponse, WalletEvent, WalletGetAccountParams, WalletGetAccountRequest, WalletGetAccountResult, WalletGetAccountSuccessResponse, WalletGetAccountV2Params, WalletGetAccountV2Request, WalletGetAccountV2Result, WalletGetAccountV2SuccessResponse, WalletGetCurrentPermissionsParams, WalletGetCurrentPermissionsRequest, WalletGetCurrentPermissionsResult, WalletGetCurrentPermissionsSuccessResponse, WalletGetNetworkParams, WalletGetNetworkRequest, WalletGetNetworkResult, WalletGetNetworkSuccessResponse, WalletGetNetworksParams, WalletGetNetworksRequest, WalletGetNetworksResult, WalletGetNetworksSuccessResponse, WalletGetWalletTypeParams, WalletGetWalletTypeRequest, WalletGetWalletTypeResult, WalletGetWalletTypeSuccessResponse, WalletMethod, WalletOpenBridgeParams, WalletOpenBridgeRequest, WalletOpenBridgeResult, WalletOpenBridgeSuccessResponse, WalletOpenBuyParams, WalletOpenBuyRequest, WalletOpenBuyResult, WalletOpenBuySuccessResponse, WalletOpenReceiveParams, WalletOpenReceiveRequest, WalletOpenReceiveResult, WalletOpenReceiveSuccessResponse, WalletRenouncePermissionsParams, WalletRenouncePermissionsRequest, WalletRenouncePermissionsResult, WalletRenouncePermissionsSuccessResponse, WalletRequestPermissionsParams, WalletRequestPermissionsRequest, WalletRequestPermissionsResult, WalletRequestPermissionsSuccessResponse, WalletRequests, WalletSuccessResponses, WalletType, Warning, accountChangeEventName, accountChangeSchema, addListener, addressSchema, allResolvedNetworksSchema, bitcoinGetAccountsParamsSchema, bitcoinGetAccountsRequestSchema, bitcoinGetAccountsResultSchema, bitcoinGetAccountsSuccessResponseSchema, bitcoinGetAccountsV2ParamsSchema, bitcoinGetAccountsV2RequestSchema, bitcoinGetAccountsV2ResultSchema, bitcoinGetAccountsV2SuccessResponseSchema, bitcoinGetAddressesParamsSchema, bitcoinGetAddressesRequestSchema, bitcoinGetAddressesResultSchema, bitcoinGetAddressesSuccessResponseSchema, bitcoinGetAddressesV2ParamsSchema, bitcoinGetAddressesV2RequestSchema, bitcoinGetAddressesV2ResultSchema, bitcoinGetAddressesV2SuccessResponseSchema, bitcoinGetBalanceParamsSchema, bitcoinGetBalanceRequestSchema, bitcoinGetBalanceResultSchema, bitcoinGetBalanceSuccessResponseSchema, bitcoinGetBalanceV2ParamsSchema, bitcoinGetBalanceV2RequestSchema, bitcoinGetBalanceV2ResultSchema, bitcoinGetBalanceV2SuccessResponseSchema, bitcoinGetInfoParamsSchema, bitcoinGetInfoRequestSchema, bitcoinGetInfoResultSchema, bitcoinGetInfoSuccessResponseSchema, bitcoinGetInfoV2ParamsSchema, bitcoinGetInfoV2RequestSchema, bitcoinGetInfoV2ResultSchema, bitcoinGetInfoV2SuccessResponseSchema, bitcoinMethods, bitcoinModeToLegacyBitcoinNetworkType, bitcoinNetworkConfigurationOptionsSchema, bitcoinRequestSchema, bitcoinSendTransferParamsSchema, bitcoinSendTransferRequestSchema, bitcoinSendTransferResultSchema, bitcoinSendTransferSuccessResponseSchema, bitcoinSendTransferV2ParamsSchema, bitcoinSendTransferV2RequestSchema, bitcoinSendTransferV2ResultSchema, bitcoinSendTransferV2SuccessResponseSchema, bitcoinSignMessageParamsSchema, bitcoinSignMessageRequestSchema, bitcoinSignMessageResultSchema, bitcoinSignMessageSuccessResponseSchema, bitcoinSignMessageV2ParamsSchema, bitcoinSignMessageV2RequestSchema, bitcoinSignMessageV2ResultSchema, bitcoinSignMessageV2SuccessResponseSchema, bitcoinSignMultipleMessagesParamsSchema, bitcoinSignMultipleMessagesRequestSchema, bitcoinSignMultipleMessagesResultSchema, bitcoinSignMultipleMessagesSuccessResponseSchema, bitcoinSignMultipleMessagesV2ParamsSchema, bitcoinSignMultipleMessagesV2RequestSchema, bitcoinSignMultipleMessagesV2ResultSchema, bitcoinSignMultipleMessagesV2SuccessResponseSchema, bitcoinSignPsbtParamsSchema, bitcoinSignPsbtRequestSchema, bitcoinSignPsbtResultSchema, bitcoinSignPsbtSuccessResponseSchema, bitcoinSignPsbtV2ParamsSchema, bitcoinSignPsbtV2RequestSchema, bitcoinSignPsbtV2ResultSchema, bitcoinSignPsbtV2SuccessResponseSchema, bitcoinSuccessResponseSchema, createInscription, createRepeatInscriptions, createRpcRequest, createRpcSuccessResponse, defaultAdapters, disconnectEventName, disconnectSchema, getAddress, getCapabilities, getDefaultProvider, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, isProviderInstalled, methodSupport, methods, networkChangeEventName, networkChangeEventNameV2, networkChangeSchema, networkChangeV2Schema, networkConfigurationOptionsSchema, ordinalsGetInscriptionsParamsSchema, ordinalsGetInscriptionsRequestSchema, ordinalsGetInscriptionsResultSchema, ordinalsGetInscriptionsSuccessResponseSchema, ordinalsMethods, ordinalsRequestSchema, ordinalsSendInscriptionsParamsSchema, ordinalsSendInscriptionsRequestSchema, ordinalsSendInscriptionsResultSchema, ordinalsSendInscriptionsSuccessResponseSchema, ordinalsSuccessResponseSchema, permissionRequestParamsSchema, removeDefaultProvider, request, rpcIdSchema, rpcRequestSchema, rpcSuccessResponseSchema, runesEstimateEtchParamsSchema, runesEstimateEtchRequestSchema, runesEstimateEtchResultSchema, runesEstimateEtchSuccessResponseSchema, runesEstimateMintParamsSchema, runesEstimateMintRequestSchema, runesEstimateMintResultSchema, runesEstimateMintSuccessResponseSchema, runesEstimateRbfOrderParamsSchema, runesEstimateRbfOrderRequestSchema, runesEstimateRbfOrderResultSchema, runesEstimateRbfOrderSuccessResponseSchema, runesEtchParamsSchema, runesEtchRequestSchema, runesEtchResultSchema, runesEtchSuccessResponseSchema, runesGetBalanceParamsSchema, runesGetBalanceRequestSchema, runesGetBalanceResultSchema, runesGetBalanceSuccessResponseSchema, runesGetOrderParamsSchema, runesGetOrderRequestSchema, runesGetOrderResultSchema, runesGetOrderSuccessResponseSchema, runesMethods, runesMintParamsSchema, runesMintRequestSchema, runesMintResultSchema, runesMintSuccessResponseSchema, runesRbfOrderParamsSchema, runesRbfOrderRequestSchema, runesRbfOrderResultSchema, runesRbfOrderSuccessResponseSchema, runesRequestSchema, runesSuccessResponseSchema, runesTransferParamsSchema, runesTransferRequestSchema, runesTransferResultSchema, runesTransferSuccessResponseSchema, sendBtcTransaction, setDefaultProvider, signMessage, signMultipleTransactions, signTransaction, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackFundsSuccessResponseSchema, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteRouteSwapSuccessResponseSchema, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetExecuteSwapSuccessResponseSchema, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetGetJwtSuccessResponseSchema, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignIntentSuccessResponseSchema, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSignStructuredMessageSuccessResponseSchema, sparkGetAddressesParamsSchema, sparkGetAddressesRequestSchema, sparkGetAddressesResultSchema, sparkGetAddressesSuccessResponseSchema, sparkGetAddressesV2ParamsSchema, sparkGetAddressesV2RequestSchema, sparkGetAddressesV2ResultSchema, sparkGetAddressesV2SuccessResponseSchema, sparkGetBalanceParamsSchema, sparkGetBalanceRequestSchema, sparkGetBalanceResultSchema, sparkGetBalanceSuccessResponseSchema, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkGetClawbackEligibleTransfersSuccessResponseSchema, sparkMethods, sparkModeToLegacySparkNetworkType, sparkNetworkConfigurationOptionsSchema, sparkRequestSchema, sparkSignMessageParamsSchema, sparkSignMessageRequestSchema, sparkSignMessageResultSchema, sparkSignMessageSuccessResponseSchema, sparkSuccessResponseSchema, sparkTransferParamsSchema, sparkTransferRequestSchema, sparkTransferResultSchema, sparkTransferSuccessResponseSchema, sparkTransferTokenParamsSchema, sparkTransferTokenRequestSchema, sparkTransferTokenResultSchema, sparkTransferTokenSuccessResponseSchema, specErrorObjectSchema, specErrorResponseSchema, specIdSchema, specRequestSchema, specResponseSchema, specSuccessResponseSchema, specSuccessWithExtensionsResponseSchema, stacksCallContractParamsSchema, stacksCallContractRequestSchema, stacksCallContractResultSchema, stacksCallContractSuccessResponseSchema, stacksDeployContractParamsSchema, stacksDeployContractRequestSchema, stacksDeployContractResultSchema, stacksDeployContractSuccessResponseSchema, stacksGetAccountsParamsSchema, stacksGetAccountsRequestSchema, stacksGetAccountsResultSchema, stacksGetAccountsSuccessResponseSchema, stacksGetAddressesParamsSchema, stacksGetAddressesRequestSchema, stacksGetAddressesResultSchema, stacksGetAddressesSuccessResponseSchema, stacksGetAddressesV2ParamsSchema, stacksGetAddressesV2RequestSchema, stacksGetAddressesV2ResultSchema, stacksGetAddressesV2SuccessResponseSchema, stacksMethods, stacksModeToLegacyStacksNetworkType, stacksNetworkConfigurationOptionsSchema, stacksRequestSchema, stacksSignMessageParamsSchema, stacksSignMessageRequestSchema, stacksSignMessageResultSchema, stacksSignMessageSuccessResponseSchema, stacksSignStructuredMessageParamsSchema, stacksSignStructuredMessageRequestSchema, stacksSignStructuredMessageResultSchema, stacksSignStructuredMessageSuccessResponseSchema, stacksSignTransactionParamsSchema, stacksSignTransactionRequestSchema, stacksSignTransactionResultSchema, stacksSignTransactionSuccessResponseSchema, stacksSignTransactionsParamsSchema, stacksSignTransactionsRequestSchema, stacksSignTransactionsResultSchema, stacksSignTransactionsSuccessResponseSchema, stacksSuccessResponseSchema, stacksTransferStxParamsSchema, stacksTransferStxRequestSchema, stacksTransferStxResultSchema, stacksTransferStxSuccessResponseSchema, starknetNetworkConfigurationOptionsSchema, walletAddNetworkParamsSchema, walletAddNetworkRequestSchema, walletAddNetworkResultSchema, walletAddNetworkSuccessResponseSchema, walletAddNetworkV2ParamsSchema, walletAddNetworkV2RequestSchema, walletAddNetworkV2ResultSchema, walletAddNetworkV2SuccessResponseSchema, walletChangeNetworkByIdParamsSchema, walletChangeNetworkByIdRequestSchema, walletChangeNetworkByIdResultSchema, walletChangeNetworkByIdSuccessResponseSchema, walletChangeNetworkParamsSchema, walletChangeNetworkRequestSchema, walletChangeNetworkResultSchema, walletChangeNetworkSuccessResponseSchema, walletConnectParamsSchema, walletConnectRequestSchema, walletConnectResultSchema, walletConnectSuccessResponseSchema, walletConnectV2ParamsSchema, walletConnectV2RequestSchema, walletConnectV2ResultSchema, walletConnectV2SuccessResponseSchema, walletDisconnectParamsSchema, walletDisconnectRequestSchema, walletDisconnectResultSchema, walletDisconnectSuccessResponseSchema, walletEventSchema, walletGetAccountParamsSchema, walletGetAccountRequestSchema, walletGetAccountResultSchema, walletGetAccountSuccessResponseSchema, walletGetAccountV2ParamsSchema, walletGetAccountV2RequestSchema, walletGetAccountV2ResultSchema, walletGetAccountV2SuccessResponseSchema, walletGetCurrentPermissionsParamsSchema, walletGetCurrentPermissionsRequestSchema, walletGetCurrentPermissionsResultSchema, walletGetCurrentPermissionsSuccessResponseSchema, walletGetNetworkParamsSchema, walletGetNetworkRequestSchema, walletGetNetworkResultSchema, walletGetNetworkSuccessResponseSchema, walletGetNetworksParamsSchema, walletGetNetworksRequestSchema, walletGetNetworksResultSchema, walletGetNetworksSuccessResponseSchema, walletGetWalletTypeParamsSchema, walletGetWalletTypeRequestSchema, walletGetWalletTypeResultSchema, walletGetWalletTypeSuccessResponseSchema, walletMethods, walletOpenBridgeParamsSchema, walletOpenBridgeRequestSchema, walletOpenBridgeResultSchema, walletOpenBridgeSuccessResponseSchema, walletOpenBuyParamsSchema, walletOpenBuyRequestSchema, walletOpenBuyResultSchema, walletOpenBuySuccessResponseSchema, walletOpenReceiveParamsSchema, walletOpenReceiveRequestSchema, walletOpenReceiveResultSchema, walletOpenReceiveSuccessResponseSchema, walletRenouncePermissionsParamsSchema, walletRenouncePermissionsRequestSchema, walletRenouncePermissionsResultSchema, walletRenouncePermissionsSuccessResponseSchema, walletRequestPermissionsParamsSchema, walletRequestPermissionsRequestSchema, walletRequestPermissionsResultSchema, walletRequestPermissionsSuccessResponseSchema, walletRequestSchema, walletSuccessResponseSchema, walletTypeSchema, walletTypes };
13859
+ export { AccountChangeCallback, AccountChangeEvent, AddListener, Address, AddressPurpose, AddressType, AllResolvedNetworks, BaseAdapter, BitcoinGetAccountsParams, BitcoinGetAccountsRequest, BitcoinGetAccountsResult, BitcoinGetAccountsSuccessResponse, BitcoinGetAddressesParams, BitcoinGetAddressesRequest, BitcoinGetAddressesResult, BitcoinGetAddressesSuccessResponse, BitcoinGetAddressesV2Params, BitcoinGetAddressesV2Request, BitcoinGetAddressesV2Result, BitcoinGetAddressesV2SuccessResponse, BitcoinGetBalanceParams, BitcoinGetBalanceRequest, BitcoinGetBalanceResult, BitcoinGetBalanceSuccessResponse, BitcoinGetBalanceV2Params, BitcoinGetBalanceV2Request, BitcoinGetBalanceV2Result, BitcoinGetBalanceV2SuccessResponse, BitcoinGetInfoParams, BitcoinGetInfoRequest, BitcoinGetInfoResult, BitcoinGetInfoSuccessResponse, BitcoinMethod, BitcoinNetwork, BitcoinNetworkConfigurationOptions, BitcoinNetworkType, BitcoinProvider, BitcoinRequests, BitcoinSendTransferParams, BitcoinSendTransferRequest, BitcoinSendTransferResult, BitcoinSendTransferSuccessResponse, BitcoinSendTransferV2Params, BitcoinSendTransferV2Request, BitcoinSendTransferV2Result, BitcoinSendTransferV2SuccessResponse, BitcoinSignMessageParams, BitcoinSignMessageRequest, BitcoinSignMessageResult, BitcoinSignMessageSuccessResponse, BitcoinSignMessageV2Params, BitcoinSignMessageV2Request, BitcoinSignMessageV2Result, BitcoinSignMessageV2SuccessResponse, BitcoinSignMultipleMessagesParams, BitcoinSignMultipleMessagesRequest, BitcoinSignMultipleMessagesResult, BitcoinSignMultipleMessagesSuccessResponse, BitcoinSignMultipleMessagesV2Params, BitcoinSignMultipleMessagesV2Request, BitcoinSignMultipleMessagesV2Result, BitcoinSignMultipleMessagesV2SuccessResponse, BitcoinSignPsbtParams, BitcoinSignPsbtRequest, BitcoinSignPsbtResult, BitcoinSignPsbtSuccessResponse, BitcoinSignPsbtV2Params, BitcoinSignPsbtV2Request, BitcoinSignPsbtV2Result, BitcoinSignPsbtV2SuccessResponse, BitcoinSuccessResponses, Capability, CreateInscriptionOptions, CreateInscriptionPayload, CreateInscriptionResponse, CreateRepeatInscriptionsOptions, CreateRepeatInscriptionsPayload, CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, DisconnectCallback, DisconnectEvent, GetAddressOptions, GetAddressPayload, GetAddressResponse, GetCapabilitiesOptions, GetCapabilitiesPayload, GetCapabilitiesResponse, InputToSign, ListenerInfo, MessageSigningProtocols, Method, NetworkChangeCallback, NetworkChangeEvent, NetworkChangeEventV2, NetworkConfigurationOptions, OrdinalsGetInscriptionsParams, OrdinalsGetInscriptionsRequest, OrdinalsGetInscriptionsResult, OrdinalsGetInscriptionsSuccessResponse, OrdinalsMethod, OrdinalsRequests, OrdinalsSendInscriptionsParams, OrdinalsSendInscriptionsRequest, OrdinalsSendInscriptionsResult, OrdinalsSendInscriptionsSuccessResponse, OrdinalsSuccessResponses, PermissionWithoutClientId, Provider, ProviderPlatform, PsbtPayload, Recipient, RequestOptions, RequestPayload, RequestReturn, RpcErrorCode, RpcId, RpcRequest, RpcRequestParams, RpcRequests, RpcSuccessResponse, RpcSuccessResponseResult, RpcSuccessResponses, RunesEstimateEtchParams, RunesEstimateEtchRequest, RunesEstimateEtchResult, RunesEstimateEtchSuccessResponse, RunesEstimateMintParams, RunesEstimateMintRequest, RunesEstimateMintResult, RunesEstimateMintSuccessResponse, RunesEstimateRbfOrderParams, RunesEstimateRbfOrderRequest, RunesEstimateRbfOrderResult, RunesEstimateRbfOrderSuccessResponse, RunesEtchParams, RunesEtchRequest, RunesEtchResult, RunesEtchSuccessResponse, RunesGetBalanceParams, RunesGetBalanceRequest, RunesGetBalanceResult, RunesGetBalanceSuccessResponse, RunesGetOrderParams, RunesGetOrderRequest, RunesGetOrderResult, RunesGetOrderSuccessResponse, RunesMethod, RunesMintParams, RunesMintRequest, RunesMintResult, RunesMintSuccessResponse, RunesRbfOrderParams, RunesRbfOrderRequest, RunesRbfOrderResult, RunesRbfOrderSuccessResponse, RunesRequests, RunesSuccessResponses, RunesTransferParams, RunesTransferRequest, RunesTransferResult, RunesTransferSuccessResponse, SatsConnectAdapter, SendBtcTransactionOptions, SendBtcTransactionPayload, SendBtcTransactionResponse, SerializedRecipient, SerializedSendBtcTransactionPayload, SignMessageOptions, SignMessagePayload, SignMessageResponse, SignMultiplePsbtPayload, SignMultipleTransactionOptions, SignMultipleTransactionsPayload, SignMultipleTransactionsResponse, SignTransactionOptions, SignTransactionPayload, SignTransactionResponse, SparkFlashnetClawbackFundsParams, SparkFlashnetClawbackFundsRequest, SparkFlashnetClawbackFundsResult, SparkFlashnetClawbackFundsSuccessResponse, SparkFlashnetExecuteRouteSwapParams, SparkFlashnetExecuteRouteSwapRequest, SparkFlashnetExecuteRouteSwapResult, SparkFlashnetExecuteRouteSwapSuccessResponse, SparkFlashnetExecuteSwapParams, SparkFlashnetExecuteSwapRequest, SparkFlashnetExecuteSwapResult, SparkFlashnetExecuteSwapSuccessResponse, SparkFlashnetGetJwtParams, SparkFlashnetGetJwtRequest, SparkFlashnetGetJwtResult, SparkFlashnetGetJwtSuccessResponse, SparkFlashnetSignIntentParams, SparkFlashnetSignIntentRequest, SparkFlashnetSignIntentResult, SparkFlashnetSignIntentSuccessResponse, SparkFlashnetSignStructuredMessageParams, SparkFlashnetSignStructuredMessageRequest, SparkFlashnetSignStructuredMessageResult, SparkFlashnetSignStructuredMessageSuccessResponse, SparkGetAddressesParams, SparkGetAddressesRequest, SparkGetAddressesResult, SparkGetAddressesSuccessResponse, SparkGetAddressesV2Params, SparkGetAddressesV2Request, SparkGetAddressesV2Result, SparkGetAddressesV2SuccessResponse, SparkGetBalanceParams, SparkGetBalanceRequest, SparkGetBalanceResult, SparkGetBalanceSuccessResponse, SparkGetClawbackEligibleTransfersParams, SparkGetClawbackEligibleTransfersRequest, SparkGetClawbackEligibleTransfersResult, SparkGetClawbackEligibleTransfersSuccessResponse, SparkMethod, SparkNetworkConfigurationOptions, SparkNetworkType, SparkRequests, SparkSignMessageParams, SparkSignMessageRequest, SparkSignMessageResult, SparkSignMessageSuccessResponse, SparkSuccessResponses, SparkTransferParams, SparkTransferRequest, SparkTransferResult, SparkTransferSuccessResponse, SparkTransferTokenParams, SparkTransferTokenRequest, SparkTransferTokenResult, SparkTransferTokenSuccessResponse, SpecErrorObject, SpecErrorResponse, SpecId, SpecRequest, SpecResponse, SpecSuccessResponse, SpecSuccessWithExtensionsResponse, StacksCallContractParams, StacksCallContractRequest, StacksCallContractResult, StacksCallContractSuccessResponse, StacksDeployContractParams, StacksDeployContractRequest, StacksDeployContractResult, StacksDeployContractSuccessResponse, StacksGetAccountsParams, StacksGetAccountsRequest, StacksGetAccountsResult, StacksGetAccountsSuccessResponse, StacksGetAddressesParams, StacksGetAddressesRequest, StacksGetAddressesResult, StacksGetAddressesSuccessResponse, StacksMethod, StacksNetworkConfigurationOptions, StacksNetworkType, StacksRequests, StacksSignMessageParams, StacksSignMessageRequest, StacksSignMessageResult, StacksSignMessageSuccessResponse, StacksSignStructuredMessageParams, StacksSignStructuredMessageRequest, StacksSignStructuredMessageResult, StacksSignStructuredMessageSuccessResponse, StacksSignTransactionParams, StacksSignTransactionRequest, StacksSignTransactionResult, StacksSignTransactionSuccessResponse, StacksSignTransactionsParams, StacksSignTransactionsRequest, StacksSignTransactionsResult, StacksSignTransactionsSuccessResponse, StacksSuccessResponses, StacksTransferStxParams, StacksTransferStxRequest, StacksTransferStxResult, StacksTransferStxSuccessResponse, StarknetNetworkConfigurationOptions, StarknetNetworkType, SupportState, SupportedWallet, WalletAddNetworkParams, WalletAddNetworkRequest, WalletAddNetworkResult, WalletAddNetworkSuccessResponse, WalletAddNetworkV2Params, WalletAddNetworkV2Request, WalletAddNetworkV2Result, WalletAddNetworkV2SuccessResponse, WalletChangeNetworkParams, WalletChangeNetworkRequest, WalletChangeNetworkResult, WalletChangeNetworkSuccessResponse, WalletConnectParams, WalletConnectRequest, WalletConnectResult, WalletConnectSuccessResponse, WalletConnectV2Params, WalletConnectV2Request, WalletConnectV2Result, WalletConnectV2SuccessResponse, WalletDisconnectParams, WalletDisconnectRequest, WalletDisconnectResult, WalletDisconnectSuccessResponse, WalletEvent, WalletGetAccountParams, WalletGetAccountRequest, WalletGetAccountResult, WalletGetAccountSuccessResponse, WalletGetAccountV2Params, WalletGetAccountV2Request, WalletGetAccountV2Result, WalletGetAccountV2SuccessResponse, WalletGetCurrentPermissionsParams, WalletGetCurrentPermissionsRequest, WalletGetCurrentPermissionsResult, WalletGetCurrentPermissionsSuccessResponse, WalletGetNetworkParams, WalletGetNetworkRequest, WalletGetNetworkResult, WalletGetNetworkSuccessResponse, WalletGetNetworksParams, WalletGetNetworksRequest, WalletGetNetworksResult, WalletGetNetworksSuccessResponse, WalletGetWalletTypeParams, WalletGetWalletTypeRequest, WalletGetWalletTypeResult, WalletGetWalletTypeSuccessResponse, WalletMethod, WalletOpenBridgeParams, WalletOpenBridgeRequest, WalletOpenBridgeResult, WalletOpenBridgeSuccessResponse, WalletOpenBuyParams, WalletOpenBuyRequest, WalletOpenBuyResult, WalletOpenBuySuccessResponse, WalletOpenReceiveParams, WalletOpenReceiveRequest, WalletOpenReceiveResult, WalletOpenReceiveSuccessResponse, WalletRenouncePermissionsParams, WalletRenouncePermissionsRequest, WalletRenouncePermissionsResult, WalletRenouncePermissionsSuccessResponse, WalletRequestPermissionsParams, WalletRequestPermissionsRequest, WalletRequestPermissionsResult, WalletRequestPermissionsSuccessResponse, WalletRequests, WalletSuccessResponses, WalletSwitchNetworkParams, WalletSwitchNetworkRequest, WalletSwitchNetworkResult, WalletSwitchNetworkSuccessResponse, WalletType, Warning, accountChangeEventName, accountChangeSchema, addListener, addressSchema, allResolvedNetworksSchema, bitcoinGetAccountsParamsSchema, bitcoinGetAccountsRequestSchema, bitcoinGetAccountsResultSchema, bitcoinGetAccountsSuccessResponseSchema, bitcoinGetAddressesParamsSchema, bitcoinGetAddressesRequestSchema, bitcoinGetAddressesResultSchema, bitcoinGetAddressesSuccessResponseSchema, bitcoinGetAddressesV2ParamsSchema, bitcoinGetAddressesV2RequestSchema, bitcoinGetAddressesV2ResultSchema, bitcoinGetAddressesV2SuccessResponseSchema, bitcoinGetBalanceParamsSchema, bitcoinGetBalanceRequestSchema, bitcoinGetBalanceResultSchema, bitcoinGetBalanceSuccessResponseSchema, bitcoinGetBalanceV2ParamsSchema, bitcoinGetBalanceV2RequestSchema, bitcoinGetBalanceV2ResultSchema, bitcoinGetBalanceV2SuccessResponseSchema, bitcoinGetInfoParamsSchema, bitcoinGetInfoRequestSchema, bitcoinGetInfoResultSchema, bitcoinGetInfoSuccessResponseSchema, bitcoinMethods, bitcoinModeToLegacyBitcoinNetworkType, bitcoinNetworkConfigurationOptionsSchema, bitcoinRequestSchema, bitcoinSendTransferParamsSchema, bitcoinSendTransferRequestSchema, bitcoinSendTransferResultSchema, bitcoinSendTransferSuccessResponseSchema, bitcoinSendTransferV2ParamsSchema, bitcoinSendTransferV2RequestSchema, bitcoinSendTransferV2ResultSchema, bitcoinSendTransferV2SuccessResponseSchema, bitcoinSignMessageParamsSchema, bitcoinSignMessageRequestSchema, bitcoinSignMessageResultSchema, bitcoinSignMessageSuccessResponseSchema, bitcoinSignMessageV2ParamsSchema, bitcoinSignMessageV2RequestSchema, bitcoinSignMessageV2ResultSchema, bitcoinSignMessageV2SuccessResponseSchema, bitcoinSignMultipleMessagesParamsSchema, bitcoinSignMultipleMessagesRequestSchema, bitcoinSignMultipleMessagesResultSchema, bitcoinSignMultipleMessagesSuccessResponseSchema, bitcoinSignMultipleMessagesV2ParamsSchema, bitcoinSignMultipleMessagesV2RequestSchema, bitcoinSignMultipleMessagesV2ResultSchema, bitcoinSignMultipleMessagesV2SuccessResponseSchema, bitcoinSignPsbtParamsSchema, bitcoinSignPsbtRequestSchema, bitcoinSignPsbtResultSchema, bitcoinSignPsbtSuccessResponseSchema, bitcoinSignPsbtV2ParamsSchema, bitcoinSignPsbtV2RequestSchema, bitcoinSignPsbtV2ResultSchema, bitcoinSignPsbtV2SuccessResponseSchema, bitcoinSuccessResponseSchema, createInscription, createRepeatInscriptions, createRpcRequest, createRpcSuccessResponse, defaultAdapters, disconnectEventName, disconnectSchema, getAddress, getCapabilities, getDefaultProvider, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, isProviderInstalled, methodSupport, methods, networkChangeEventName, networkChangeEventNameV2, networkChangeSchema, networkChangeV2Schema, networkConfigurationOptionsSchema, ordinalsGetInscriptionsParamsSchema, ordinalsGetInscriptionsRequestSchema, ordinalsGetInscriptionsResultSchema, ordinalsGetInscriptionsSuccessResponseSchema, ordinalsMethods, ordinalsRequestSchema, ordinalsSendInscriptionsParamsSchema, ordinalsSendInscriptionsRequestSchema, ordinalsSendInscriptionsResultSchema, ordinalsSendInscriptionsSuccessResponseSchema, ordinalsSuccessResponseSchema, permissionRequestParamsSchema, removeDefaultProvider, request, rpcIdSchema, rpcRequestSchema, rpcSuccessResponseSchema, runesEstimateEtchParamsSchema, runesEstimateEtchRequestSchema, runesEstimateEtchResultSchema, runesEstimateEtchSuccessResponseSchema, runesEstimateMintParamsSchema, runesEstimateMintRequestSchema, runesEstimateMintResultSchema, runesEstimateMintSuccessResponseSchema, runesEstimateRbfOrderParamsSchema, runesEstimateRbfOrderRequestSchema, runesEstimateRbfOrderResultSchema, runesEstimateRbfOrderSuccessResponseSchema, runesEtchParamsSchema, runesEtchRequestSchema, runesEtchResultSchema, runesEtchSuccessResponseSchema, runesGetBalanceParamsSchema, runesGetBalanceRequestSchema, runesGetBalanceResultSchema, runesGetBalanceSuccessResponseSchema, runesGetOrderParamsSchema, runesGetOrderRequestSchema, runesGetOrderResultSchema, runesGetOrderSuccessResponseSchema, runesMethods, runesMintParamsSchema, runesMintRequestSchema, runesMintResultSchema, runesMintSuccessResponseSchema, runesRbfOrderParamsSchema, runesRbfOrderRequestSchema, runesRbfOrderResultSchema, runesRbfOrderSuccessResponseSchema, runesRequestSchema, runesSuccessResponseSchema, runesTransferParamsSchema, runesTransferRequestSchema, runesTransferResultSchema, runesTransferSuccessResponseSchema, sendBtcTransaction, setDefaultProvider, signMessage, signMultipleTransactions, signTransaction, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackFundsSuccessResponseSchema, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteRouteSwapSuccessResponseSchema, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetExecuteSwapSuccessResponseSchema, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetGetJwtSuccessResponseSchema, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignIntentSuccessResponseSchema, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSignStructuredMessageSuccessResponseSchema, sparkGetAddressesParamsSchema, sparkGetAddressesRequestSchema, sparkGetAddressesResultSchema, sparkGetAddressesSuccessResponseSchema, sparkGetAddressesV2ParamsSchema, sparkGetAddressesV2RequestSchema, sparkGetAddressesV2ResultSchema, sparkGetAddressesV2SuccessResponseSchema, sparkGetBalanceParamsSchema, sparkGetBalanceRequestSchema, sparkGetBalanceResultSchema, sparkGetBalanceSuccessResponseSchema, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkGetClawbackEligibleTransfersSuccessResponseSchema, sparkMethods, sparkModeToLegacySparkNetworkType, sparkNetworkConfigurationOptionsSchema, sparkRequestSchema, sparkSignMessageParamsSchema, sparkSignMessageRequestSchema, sparkSignMessageResultSchema, sparkSignMessageSuccessResponseSchema, sparkSuccessResponseSchema, sparkTransferParamsSchema, sparkTransferRequestSchema, sparkTransferResultSchema, sparkTransferSuccessResponseSchema, sparkTransferTokenParamsSchema, sparkTransferTokenRequestSchema, sparkTransferTokenResultSchema, sparkTransferTokenSuccessResponseSchema, specErrorObjectSchema, specErrorResponseSchema, specIdSchema, specRequestSchema, specResponseSchema, specSuccessResponseSchema, specSuccessWithExtensionsResponseSchema, stacksCallContractParamsSchema, stacksCallContractRequestSchema, stacksCallContractResultSchema, stacksCallContractSuccessResponseSchema, stacksDeployContractParamsSchema, stacksDeployContractRequestSchema, stacksDeployContractResultSchema, stacksDeployContractSuccessResponseSchema, stacksGetAccountsParamsSchema, stacksGetAccountsRequestSchema, stacksGetAccountsResultSchema, stacksGetAccountsSuccessResponseSchema, stacksGetAddressesParamsSchema, stacksGetAddressesRequestSchema, stacksGetAddressesResultSchema, stacksGetAddressesSuccessResponseSchema, stacksMethods, stacksModeToLegacyStacksNetworkType, stacksNetworkConfigurationOptionsSchema, stacksRequestSchema, stacksSignMessageParamsSchema, stacksSignMessageRequestSchema, stacksSignMessageResultSchema, stacksSignMessageSuccessResponseSchema, stacksSignStructuredMessageParamsSchema, stacksSignStructuredMessageRequestSchema, stacksSignStructuredMessageResultSchema, stacksSignStructuredMessageSuccessResponseSchema, stacksSignTransactionParamsSchema, stacksSignTransactionRequestSchema, stacksSignTransactionResultSchema, stacksSignTransactionSuccessResponseSchema, stacksSignTransactionsParamsSchema, stacksSignTransactionsRequestSchema, stacksSignTransactionsResultSchema, stacksSignTransactionsSuccessResponseSchema, stacksSuccessResponseSchema, stacksTransferStxParamsSchema, stacksTransferStxRequestSchema, stacksTransferStxResultSchema, stacksTransferStxSuccessResponseSchema, starknetNetworkConfigurationOptionsSchema, walletAddNetworkParamsSchema, walletAddNetworkRequestSchema, walletAddNetworkResultSchema, walletAddNetworkSuccessResponseSchema, walletAddNetworkV2ParamsSchema, walletAddNetworkV2RequestSchema, walletAddNetworkV2ResultSchema, walletAddNetworkV2SuccessResponseSchema, walletChangeNetworkParamsSchema, walletChangeNetworkRequestSchema, walletChangeNetworkResultSchema, walletChangeNetworkSuccessResponseSchema, walletConnectParamsSchema, walletConnectRequestSchema, walletConnectResultSchema, walletConnectSuccessResponseSchema, walletConnectV2ParamsSchema, walletConnectV2RequestSchema, walletConnectV2ResultSchema, walletConnectV2SuccessResponseSchema, walletDisconnectParamsSchema, walletDisconnectRequestSchema, walletDisconnectResultSchema, walletDisconnectSuccessResponseSchema, walletEventSchema, walletGetAccountParamsSchema, walletGetAccountRequestSchema, walletGetAccountResultSchema, walletGetAccountSuccessResponseSchema, walletGetAccountV2ParamsSchema, walletGetAccountV2RequestSchema, walletGetAccountV2ResultSchema, walletGetAccountV2SuccessResponseSchema, walletGetCurrentPermissionsParamsSchema, walletGetCurrentPermissionsRequestSchema, walletGetCurrentPermissionsResultSchema, walletGetCurrentPermissionsSuccessResponseSchema, walletGetNetworkParamsSchema, walletGetNetworkRequestSchema, walletGetNetworkResultSchema, walletGetNetworkSuccessResponseSchema, walletGetNetworksParamsSchema, walletGetNetworksRequestSchema, walletGetNetworksResultSchema, walletGetNetworksSuccessResponseSchema, walletGetWalletTypeParamsSchema, walletGetWalletTypeRequestSchema, walletGetWalletTypeResultSchema, walletGetWalletTypeSuccessResponseSchema, walletMethods, walletOpenBridgeParamsSchema, walletOpenBridgeRequestSchema, walletOpenBridgeResultSchema, walletOpenBridgeSuccessResponseSchema, walletOpenBuyParamsSchema, walletOpenBuyRequestSchema, walletOpenBuyResultSchema, walletOpenBuySuccessResponseSchema, walletOpenReceiveParamsSchema, walletOpenReceiveRequestSchema, walletOpenReceiveResultSchema, walletOpenReceiveSuccessResponseSchema, walletRenouncePermissionsParamsSchema, walletRenouncePermissionsRequestSchema, walletRenouncePermissionsResultSchema, walletRenouncePermissionsSuccessResponseSchema, walletRequestPermissionsParamsSchema, walletRequestPermissionsRequestSchema, walletRequestPermissionsResultSchema, walletRequestPermissionsSuccessResponseSchema, walletRequestSchema, walletSuccessResponseSchema, walletSwitchNetworkParamsSchema, walletSwitchNetworkRequestSchema, walletSwitchNetworkResultSchema, walletSwitchNetworkSuccessResponseSchema, walletTypeSchema, walletTypes };