@sats-connect/core 0.14.1 → 0.16.0-2dd02aa

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -394,40 +394,51 @@ declare function getDefaultProvider(): string | null;
394
394
  declare function removeDefaultProvider(): void;
395
395
  declare function getSupportedWallets(): SupportedWallet[];
396
396
 
397
- declare enum ProviderPlatform {
398
- Web = "web",
399
- Mobile = "mobile"
397
+ declare enum MessageSigningProtocols {
398
+ ECDSA = "ECDSA",
399
+ BIP322 = "BIP322"
400
400
  }
401
- declare const getInfoMethodName = "getInfo";
402
- declare const getInfoParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
403
- type GetInfoParams = v.InferOutput<typeof getInfoParamsSchema>;
404
- declare const getInfoResultSchema: v.ObjectSchema<{
405
- /**
406
- * Version of the wallet.
407
- */
408
- readonly version: v.StringSchema<undefined>;
409
- /**
410
- * The platform the wallet is running on (web or mobile).
411
- */
412
- readonly platform: v.OptionalSchema<v.EnumSchema<typeof ProviderPlatform, undefined>, undefined>;
401
+
402
+ declare const getAccountsMethodName = "getAccounts";
403
+ declare const getAccountsParamsSchema: v.ObjectSchema<{
413
404
  /**
414
- * [WBIP](https://wbips.netlify.app/wbips/WBIP002) methods supported by the wallet.
405
+ * The purposes for which to generate addresses. See
406
+ * {@linkcode AddressPurpose} for available purposes.
415
407
  */
416
- readonly methods: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
408
+ readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
417
409
  /**
418
- * List of WBIP standards supported by the wallet. Not currently used.
410
+ * A message to be displayed to the user in the request prompt.
419
411
  */
420
- readonly supports: v.ArraySchema<v.StringSchema<undefined>, undefined>;
412
+ readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
421
413
  }, undefined>;
422
- type GetInfoResult = v.InferOutput<typeof getInfoResultSchema>;
423
- declare const getInfoRequestMessageSchema: v.ObjectSchema<{
424
- readonly method: v.LiteralSchema<"getInfo", undefined>;
425
- readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
414
+ type GetAccountsParams = v.InferOutput<typeof getAccountsParamsSchema>;
415
+ declare const getAccountsResultSchema: v.ArraySchema<v.ObjectSchema<{
416
+ readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
417
+ readonly address: v.StringSchema<undefined>;
418
+ readonly publicKey: v.StringSchema<undefined>;
419
+ readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
420
+ readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
421
+ }, undefined>, undefined>;
422
+ type GetAccountsResult = v.InferOutput<typeof getAccountsResultSchema>;
423
+ declare const getAccountsRequestMessageSchema: v.ObjectSchema<{
424
+ readonly method: v.LiteralSchema<"getAccounts", undefined>;
425
+ readonly params: v.ObjectSchema<{
426
+ /**
427
+ * The purposes for which to generate addresses. See
428
+ * {@linkcode AddressPurpose} for available purposes.
429
+ */
430
+ readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
431
+ /**
432
+ * A message to be displayed to the user in the request prompt.
433
+ */
434
+ readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
435
+ }, undefined>;
426
436
  readonly id: v.StringSchema<undefined>;
427
437
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
428
438
  }, undefined>;
429
- type GetInfoRequestMessage = v.InferOutput<typeof getInfoRequestMessageSchema>;
430
- type GetInfo = MethodParamsAndResult<v.InferOutput<typeof getInfoParamsSchema>, v.InferOutput<typeof getInfoResultSchema>>;
439
+ type GetAccountsRequestMessage = v.InferOutput<typeof getAccountsRequestMessageSchema>;
440
+ type GetAccounts = MethodParamsAndResult<v.InferOutput<typeof getAccountsParamsSchema>, v.InferOutput<typeof getAccountsResultSchema>>;
441
+
431
442
  declare const getAddressesMethodName = "getAddresses";
432
443
  declare const getAddressesParamsSchema: v.ObjectSchema<{
433
444
  /**
@@ -483,11 +494,113 @@ declare const getAddressesRequestMessageSchema: v.ObjectSchema<{
483
494
  }, undefined>;
484
495
  type GetAddressesRequestMessage = v.InferOutput<typeof getAddressesRequestMessageSchema>;
485
496
  type GetAddresses = MethodParamsAndResult<v.InferOutput<typeof getAddressesParamsSchema>, v.InferOutput<typeof getAddressesResultSchema>>;
486
- declare const signMessageMethodName = "signMessage";
487
- declare enum MessageSigningProtocols {
488
- ECDSA = "ECDSA",
489
- BIP322 = "BIP322"
497
+
498
+ declare const getBalanceMethodName = "getBalance";
499
+ declare const getBalanceParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
500
+ type GetBalanceParams = v.InferOutput<typeof getBalanceParamsSchema>;
501
+ declare const getBalanceResultSchema: v.ObjectSchema<{
502
+ /**
503
+ * The confirmed balance of the wallet in sats. Using a string due to chrome
504
+ * messages not supporting bigint
505
+ * (https://issues.chromium.org/issues/40116184).
506
+ */
507
+ readonly confirmed: v.StringSchema<undefined>;
508
+ /**
509
+ * The unconfirmed balance of the wallet in sats. Using a string due to chrome
510
+ * messages not supporting bigint
511
+ * (https://issues.chromium.org/issues/40116184).
512
+ */
513
+ readonly unconfirmed: v.StringSchema<undefined>;
514
+ /**
515
+ * The total balance (both confirmed and unconfrimed UTXOs) of the wallet in
516
+ * sats. Using a string due to chrome messages not supporting bigint
517
+ * (https://issues.chromium.org/issues/40116184).
518
+ */
519
+ readonly total: v.StringSchema<undefined>;
520
+ }, undefined>;
521
+ type GetBalanceResult = v.InferOutput<typeof getBalanceResultSchema>;
522
+ declare const getBalanceRequestMessageSchema: v.ObjectSchema<{
523
+ readonly method: v.LiteralSchema<"getBalance", undefined>;
524
+ readonly id: v.StringSchema<undefined>;
525
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
526
+ readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, undefined>;
527
+ }, undefined>;
528
+ type GetBalanceRequestMessage = v.InferOutput<typeof getBalanceRequestMessageSchema>;
529
+ type GetBalance = MethodParamsAndResult<GetBalanceParams, GetBalanceResult>;
530
+
531
+ declare enum ProviderPlatform {
532
+ Web = "web",
533
+ Mobile = "mobile"
490
534
  }
535
+ declare const getInfoMethodName = "getInfo";
536
+ declare const getInfoParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
537
+ type GetInfoParams = v.InferOutput<typeof getInfoParamsSchema>;
538
+ declare const getInfoResultSchema: v.ObjectSchema<{
539
+ /**
540
+ * Version of the wallet.
541
+ */
542
+ readonly version: v.StringSchema<undefined>;
543
+ /**
544
+ * The platform the wallet is running on (web or mobile).
545
+ */
546
+ readonly platform: v.OptionalSchema<v.EnumSchema<typeof ProviderPlatform, undefined>, undefined>;
547
+ /**
548
+ * [WBIP](https://wbips.netlify.app/wbips/WBIP002) methods supported by the wallet.
549
+ */
550
+ readonly methods: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
551
+ /**
552
+ * List of WBIP standards supported by the wallet. Not currently used.
553
+ */
554
+ readonly supports: v.ArraySchema<v.StringSchema<undefined>, undefined>;
555
+ }, undefined>;
556
+ type GetInfoResult = v.InferOutput<typeof getInfoResultSchema>;
557
+ declare const getInfoRequestMessageSchema: v.ObjectSchema<{
558
+ readonly method: v.LiteralSchema<"getInfo", undefined>;
559
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
560
+ readonly id: v.StringSchema<undefined>;
561
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
562
+ }, undefined>;
563
+ type GetInfoRequestMessage = v.InferOutput<typeof getInfoRequestMessageSchema>;
564
+ type GetInfo = MethodParamsAndResult<v.InferOutput<typeof getInfoParamsSchema>, v.InferOutput<typeof getInfoResultSchema>>;
565
+
566
+ declare const sendTransferMethodName = "sendTransfer";
567
+ declare const sendTransferParamsSchema: v.ObjectSchema<{
568
+ /**
569
+ * Array of recipients to send to.
570
+ * The amount to send to each recipient is in satoshis.
571
+ */
572
+ readonly recipients: v.ArraySchema<v.ObjectSchema<{
573
+ readonly address: v.StringSchema<undefined>;
574
+ readonly amount: v.NumberSchema<undefined>;
575
+ }, undefined>, undefined>;
576
+ }, undefined>;
577
+ type SendTransferParams = v.InferOutput<typeof sendTransferParamsSchema>;
578
+ declare const sendTransferResultSchema: v.ObjectSchema<{
579
+ /**
580
+ * The transaction id as a hex-encoded string.
581
+ */
582
+ readonly txid: v.StringSchema<undefined>;
583
+ }, undefined>;
584
+ type SendTransferResult = v.InferOutput<typeof sendTransferResultSchema>;
585
+ declare const sendTransferRequestMessageSchema: v.ObjectSchema<{
586
+ readonly method: v.LiteralSchema<"sendTransfer", undefined>;
587
+ readonly params: v.ObjectSchema<{
588
+ /**
589
+ * Array of recipients to send to.
590
+ * The amount to send to each recipient is in satoshis.
591
+ */
592
+ readonly recipients: v.ArraySchema<v.ObjectSchema<{
593
+ readonly address: v.StringSchema<undefined>;
594
+ readonly amount: v.NumberSchema<undefined>;
595
+ }, undefined>, undefined>;
596
+ }, undefined>;
597
+ readonly id: v.StringSchema<undefined>;
598
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
599
+ }, undefined>;
600
+ type SendTransferRequestMessage = v.InferOutput<typeof sendTransferRequestMessageSchema>;
601
+ type SendTransfer = MethodParamsAndResult<SendTransferParams, SendTransferResult>;
602
+
603
+ declare const signMessageMethodName = "signMessage";
491
604
  declare const signMessageParamsSchema: v.ObjectSchema<{
492
605
  /**
493
606
  * The address used for signing.
@@ -543,42 +656,68 @@ declare const signMessageRequestMessageSchema: v.ObjectSchema<{
543
656
  }, undefined>;
544
657
  type SignMessageRequestMessage = v.InferOutput<typeof signMessageRequestMessageSchema>;
545
658
  type SignMessage = MethodParamsAndResult<v.InferOutput<typeof signMessageParamsSchema>, v.InferOutput<typeof signMessageResultSchema>>;
546
- declare const sendTransferMethodName = "sendTransfer";
547
- declare const sendTransferParamsSchema: v.ObjectSchema<{
659
+
660
+ declare const signMultipleMessagesMethodName = "signMultipleMessages";
661
+ declare const signMultipleMessagesParamsSchema: v.ArraySchema<v.ObjectSchema<{
548
662
  /**
549
- * Array of recipients to send to.
550
- * The amount to send to each recipient is in satoshis.
663
+ * The address used for signing.
664
+ **/
665
+ readonly address: v.StringSchema<undefined>;
666
+ /**
667
+ * The message to sign.
668
+ **/
669
+ readonly message: v.StringSchema<undefined>;
670
+ /**
671
+ * The protocol to use for signing the message.
551
672
  */
552
- readonly recipients: v.ArraySchema<v.ObjectSchema<{
553
- readonly address: v.StringSchema<undefined>;
554
- readonly amount: v.NumberSchema<undefined>;
555
- }, undefined>, undefined>;
556
- }, undefined>;
557
- type SendTransferParams = v.InferOutput<typeof sendTransferParamsSchema>;
558
- declare const sendTransferResultSchema: v.ObjectSchema<{
673
+ readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
674
+ }, undefined>, undefined>;
675
+ type SignMultipleMessagesParams = v.InferOutput<typeof signMultipleMessagesParamsSchema>;
676
+ declare const signMultipleMessagesResultSchema: v.ArraySchema<v.ObjectSchema<{
559
677
  /**
560
- * The transaction id as a hex-encoded string.
678
+ * The signature of the message.
561
679
  */
562
- readonly txid: v.StringSchema<undefined>;
563
- }, undefined>;
564
- type SendTransferResult = v.InferOutput<typeof sendTransferResultSchema>;
565
- declare const sendTransferRequestMessageSchema: v.ObjectSchema<{
566
- readonly method: v.LiteralSchema<"sendTransfer", undefined>;
567
- readonly params: v.ObjectSchema<{
680
+ readonly signature: v.StringSchema<undefined>;
681
+ /**
682
+ * The original message which was signed.
683
+ */
684
+ readonly message: v.StringSchema<undefined>;
685
+ /**
686
+ * Hash of the message.
687
+ */
688
+ readonly messageHash: v.StringSchema<undefined>;
689
+ /**
690
+ * The address used for signing.
691
+ */
692
+ readonly address: v.StringSchema<undefined>;
693
+ /**
694
+ * The protocol to use for signing the message.
695
+ */
696
+ readonly protocol: v.EnumSchema<typeof MessageSigningProtocols, undefined>;
697
+ }, undefined>, undefined>;
698
+ type SignMultipleMessagesResult = v.InferOutput<typeof signMultipleMessagesResultSchema>;
699
+ declare const signMultipleMessagesRequestMessageSchema: v.ObjectSchema<{
700
+ readonly method: v.LiteralSchema<"signMultipleMessages", undefined>;
701
+ readonly params: v.ArraySchema<v.ObjectSchema<{
568
702
  /**
569
- * Array of recipients to send to.
570
- * The amount to send to each recipient is in satoshis.
703
+ * The address used for signing.
704
+ **/
705
+ readonly address: v.StringSchema<undefined>;
706
+ /**
707
+ * The message to sign.
708
+ **/
709
+ readonly message: v.StringSchema<undefined>;
710
+ /**
711
+ * The protocol to use for signing the message.
571
712
  */
572
- readonly recipients: v.ArraySchema<v.ObjectSchema<{
573
- readonly address: v.StringSchema<undefined>;
574
- readonly amount: v.NumberSchema<undefined>;
575
- }, undefined>, undefined>;
576
- }, undefined>;
713
+ readonly protocol: v.OptionalSchema<v.EnumSchema<typeof MessageSigningProtocols, undefined>, undefined>;
714
+ }, undefined>, undefined>;
577
715
  readonly id: v.StringSchema<undefined>;
578
716
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
579
717
  }, undefined>;
580
- type SendTransferRequestMessage = v.InferOutput<typeof sendTransferRequestMessageSchema>;
581
- type SendTransfer = MethodParamsAndResult<SendTransferParams, SendTransferResult>;
718
+ type SignMultipleMessagesRequestMessage = v.InferOutput<typeof signMultipleMessagesRequestMessageSchema>;
719
+ type SignMultipleMessages = MethodParamsAndResult<v.InferOutput<typeof signMultipleMessagesParamsSchema>, v.InferOutput<typeof signMultipleMessagesResultSchema>>;
720
+
582
721
  declare const signPsbtMethodName = "signPsbt";
583
722
  declare const signPsbtParamsSchema: v.ObjectSchema<{
584
723
  /**
@@ -630,77 +769,6 @@ declare const signPsbtRequestMessageSchema: v.ObjectSchema<{
630
769
  }, undefined>;
631
770
  type SignPsbtRequestMessage = v.InferOutput<typeof signPsbtRequestMessageSchema>;
632
771
  type SignPsbt = MethodParamsAndResult<SignPsbtParams, SignPsbtResult>;
633
- declare const getAccountsMethodName = "getAccounts";
634
- declare const getAccountsParamsSchema: v.ObjectSchema<{
635
- /**
636
- * The purposes for which to generate addresses. See
637
- * {@linkcode AddressPurpose} for available purposes.
638
- */
639
- readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
640
- /**
641
- * A message to be displayed to the user in the request prompt.
642
- */
643
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
644
- }, undefined>;
645
- type GetAccountsParams = v.InferOutput<typeof getAccountsParamsSchema>;
646
- declare const getAccountsResultSchema: v.ArraySchema<v.ObjectSchema<{
647
- readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
648
- readonly address: v.StringSchema<undefined>;
649
- readonly publicKey: v.StringSchema<undefined>;
650
- readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
651
- readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
652
- }, undefined>, undefined>;
653
- type GetAccountsResult = v.InferOutput<typeof getAccountsResultSchema>;
654
- declare const getAccountsRequestMessageSchema: v.ObjectSchema<{
655
- readonly method: v.LiteralSchema<"getAccounts", undefined>;
656
- readonly params: v.ObjectSchema<{
657
- /**
658
- * The purposes for which to generate addresses. See
659
- * {@linkcode AddressPurpose} for available purposes.
660
- */
661
- readonly purposes: v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>;
662
- /**
663
- * A message to be displayed to the user in the request prompt.
664
- */
665
- readonly message: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
666
- }, undefined>;
667
- readonly id: v.StringSchema<undefined>;
668
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
669
- }, undefined>;
670
- type GetAccountsRequestMessage = v.InferOutput<typeof getAccountsRequestMessageSchema>;
671
- type GetAccounts = MethodParamsAndResult<v.InferOutput<typeof getAccountsParamsSchema>, v.InferOutput<typeof getAccountsResultSchema>>;
672
- declare const getBalanceMethodName = "getBalance";
673
- declare const getBalanceParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
674
- type GetBalanceParams = v.InferOutput<typeof getBalanceParamsSchema>;
675
- declare const getBalanceResultSchema: v.ObjectSchema<{
676
- /**
677
- * The confirmed balance of the wallet in sats. Using a string due to chrome
678
- * messages not supporting bigint
679
- * (https://issues.chromium.org/issues/40116184).
680
- */
681
- readonly confirmed: v.StringSchema<undefined>;
682
- /**
683
- * The unconfirmed 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
- readonly unconfirmed: v.StringSchema<undefined>;
688
- /**
689
- * The total balance (both confirmed and unconfrimed UTXOs) of the wallet in
690
- * sats. Using a string due to chrome messages not supporting bigint
691
- * (https://issues.chromium.org/issues/40116184).
692
- */
693
- readonly total: v.StringSchema<undefined>;
694
- }, undefined>;
695
- type GetBalanceResult = v.InferOutput<typeof getBalanceResultSchema>;
696
- declare const getBalanceRequestMessageSchema: v.ObjectSchema<{
697
- readonly method: v.LiteralSchema<"getBalance", undefined>;
698
- readonly id: v.StringSchema<undefined>;
699
- readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
700
- readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, undefined>;
701
- }, undefined>;
702
- type GetBalanceRequestMessage = v.InferOutput<typeof getBalanceRequestMessageSchema>;
703
- type GetBalance = MethodParamsAndResult<GetBalanceParams, GetBalanceResult>;
704
772
 
705
773
  declare const getInscriptionsMethodName = "ord_getInscriptions";
706
774
  declare const getInscriptionsParamsSchema: v.ObjectSchema<{
@@ -2731,4 +2799,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
2731
2799
  declare const DefaultAdaptersInfo: Record<string, Provider>;
2732
2800
  declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
2733
2801
 
2734
- export { type AccountChangeCallback, type AccountChangeEvent, type AddListener, type AddNetwork, type AddNetworkParams, type AddNetworkRequestMessage, type AddNetworkResult, type Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type Capability, type ChangeNetwork, type ChangeNetworkById, type ChangeNetworkByIdParams, type ChangeNetworkByIdRequestMessage, type ChangeNetworkByIdResult, type ChangeNetworkParams, type ChangeNetworkRequestMessage, type ChangeNetworkResult, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type Disconnect, type DisconnectCallback, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetInscriptionsParams, type GetInscriptionsRequestMessage, type GetInscriptionsResult, type GetNetwork, type GetNetworkParams, type GetNetworkRequestMessage, type GetNetworkResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, type ListenerInfo, MessageSigningProtocols, type MethodParamsAndResult, type NetworkChangeCallback, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, PermissionRequestParams, type PermissionWithoutClientId, type Provider, ProviderPlatform, type PsbtPayload, type Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesEstimateEtch, type RunesEstimateEtchParams, type RunesEstimateEtchResult, type RunesEstimateMint, type RunesEstimateRbfOrder, type RunesEtch, type RunesEtchParams, type RunesEtchRequestMessage, type RunesEtchResult, type RunesGetBalance, type RunesGetBalanceParams, type RunesGetBalanceResult, type RunesGetOrder, type RunesMint, type RunesMintParams, type RunesMintRequestMessage, type RunesMintResult, type RunesRbfOrder, type RunesRequestMethod, type RunesRequests, type RunesTransfer, type RunesTransferRequestMessage, type RunesTransferResult, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendInscriptionsParams, type SendInscriptionsRequestMessage, type SendInscriptionsResult, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type SparkFlashnetClawbackFunds, type SparkFlashnetClawbackFundsParams, type SparkFlashnetClawbackFundsRequestMessage, type SparkFlashnetClawbackFundsResult, type SparkFlashnetExecuteRouteSwap, type SparkFlashnetExecuteRouteSwapParams, type SparkFlashnetExecuteRouteSwapRequestMessage, type SparkFlashnetExecuteRouteSwapResult, type SparkFlashnetExecuteSwap, type SparkFlashnetExecuteSwapParams, type SparkFlashnetExecuteSwapRequestMessage, type SparkFlashnetExecuteSwapResult, type SparkFlashnetGetJwt, type SparkFlashnetGetJwtParams, type SparkFlashnetGetJwtRequestMessage, type SparkFlashnetGetJwtResult, type SparkFlashnetSignIntent, type SparkFlashnetSignIntentParams, type SparkFlashnetSignIntentRequestMessage, type SparkFlashnetSignIntentResult, type SparkFlashnetSignStructuredMessage, type SparkFlashnetSignStructuredMessageParams, type SparkFlashnetSignStructuredMessageRequestMessage, type SparkFlashnetSignStructuredMessageResult, type SparkGetAddresses, type SparkGetAddressesParams, type SparkGetAddressesRequestMessage, type SparkGetAddressesResult, type SparkGetBalance, type SparkGetBalanceParams, type SparkGetBalanceRequestMessage, type SparkGetBalanceResult, type SparkGetClawbackEligibleTransfers, type SparkGetClawbackEligibleTransfersParams, type SparkGetClawbackEligibleTransfersRequestMessage, type SparkGetClawbackEligibleTransfersResult, SparkNetworkType, type SparkRequestMethod, type SparkRequests, type SparkSignMessage, type SparkSignMessageParams, type SparkSignMessageRequestMessage, type SparkSignMessageResult, type SparkTransfer, type SparkTransferParams, type SparkTransferRequestMessage, type SparkTransferResult, type SparkTransferToken, type SparkTransferTokenParams, type SparkTransferTokenRequestMessage, type SparkTransferTokenResult, StacksNetworkType, StarknetNetworkType, type StxCallContract, type StxCallContractParams, type StxCallContractRequestMessage, type StxCallContractResult, type StxDeployContract, type StxDeployContractParams, type StxDeployContractRequestMessage, type StxDeployContractResult, type StxGetAccounts, type StxGetAccountsParams, type StxGetAccountsRequestMessage, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignMessage, type StxSignMessageParams, type StxSignMessageRequestMessage, type StxSignMessageResult, type StxSignStructuredMessage, type StxSignStructuredMessageParams, type StxSignStructuredMessageRequestMessage, type StxSignStructuredMessageResult, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxSignTransactions, type StxSignTransactionsParams, type StxSignTransactionsRequestMessage, type StxSignTransactionsResult, type StxTransferStx, type StxTransferStxParams, type StxTransferStxRequestMessage, type StxTransferStxResult, type SupportedWallet, type TransferRunesParams, type WalletEvent, type WalletRequests, type WalletType, accountActionsSchema, accountChangeEventName, accountChangeSchema, accountPermissionSchema, addListener, addNetworkMethodName, addNetworkParamsSchema, addNetworkRequestMessageSchema, addNetworkResultSchema, addressSchema, changeNetworkByIdMethodName, changeNetworkByIdParamsSchema, changeNetworkByIdRequestMessageSchema, changeNetworkByIdResultSchema, changeNetworkMethodName, changeNetworkParamsSchema, changeNetworkRequestMessageSchema, changeNetworkResultSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsRequestMessageSchema, getInscriptionsResultSchema, getNetworkMethodName, getNetworkParamsSchema, getNetworkRequestMessageSchema, getNetworkResultSchema, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permission, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, type runesEstimateMintParams, type runesEstimateMintResult, runesEtchMethodName, runesEtchParamsSchema, runesEtchRequestMessageSchema, runesEtchResultSchema, runesGetBalanceMethodName, runesGetBalanceParamsSchema, type runesGetBalanceRequestMessage, runesGetBalanceRequestMessageSchema, runesGetBalanceResultSchema, runesMintMethodName, runesMintParamsSchema, runesMintRequestMessageSchema, runesMintResultSchema, runesTransferMethodName, runesTransferParamsSchema, runesTransferRequestMessageSchema, runesTransferResultSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsRequestMessageSchema, sendInscriptionsResultSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, sparkFlashnetAddLiquidityIntentSchema, sparkFlashnetClawbackFundsMethodName, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestMessageSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackIntentSchema, sparkFlashnetConfirmInitialDepositIntentSchema, sparkFlashnetCreateConstantProductPoolIntentSchema, sparkFlashnetCreateSingleSidedPoolIntentSchema, sparkFlashnetExecuteRouteSwapMethodName, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestMessageSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteSwapMethodName, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestMessageSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetGetJwtMethodName, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestMessageSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetRemoveLiquidityIntentSchema, sparkFlashnetRouteSwapIntentSchema, sparkFlashnetSignIntentMethodName, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestMessageSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignStructuredMessageMethodName, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestMessageSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSwapIntentSchema, sparkGetAddressesMethodName, sparkGetAddressesParamsSchema, sparkGetAddressesRequestMessageSchema, sparkGetAddressesResultSchema, sparkGetBalanceMethodName, sparkGetBalanceParamsSchema, sparkGetBalanceRequestMessageSchema, sparkGetBalanceResultSchema, sparkGetClawbackEligibleTransfersMethodName, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestMessageSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkSignMessageMethodName, sparkSignMessageParamsSchema, sparkSignMessageRequestMessageSchema, sparkSignMessageResultSchema, sparkTransferMethodName, sparkTransferParamsSchema, sparkTransferRequestMessageSchema, sparkTransferResultSchema, sparkTransferTokenMethodName, sparkTransferTokenParamsSchema, sparkTransferTokenRequestMessageSchema, sparkTransferTokenResultSchema, stxCallContractMethodName, stxCallContractParamsSchema, stxCallContractRequestMessageSchema, stxCallContractResultSchema, stxDeployContractMethodName, stxDeployContractParamsSchema, stxDeployContractRequestMessageSchema, stxDeployContractResultSchema, stxGetAccountsMethodName, stxGetAccountsParamsSchema, stxGetAccountsRequestMessageSchema, stxGetAccountsResultSchema, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignMessageMethodName, stxSignMessageParamsSchema, stxSignMessageRequestMessageSchema, stxSignMessageResultSchema, stxSignStructuredMessageMethodName, stxSignStructuredMessageParamsSchema, stxSignStructuredMessageRequestMessageSchema, stxSignStructuredMessageResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, stxSignTransactionsMethodName, stxSignTransactionsParamsSchema, stxSignTransactionsRequestMessageSchema, stxSignTransactionsResultSchema, stxTransferStxMethodName, stxTransferStxParamsSchema, stxTransferStxRequestMessageSchema, stxTransferStxResultSchema, walletActionsSchema, walletEventSchema, walletPermissionSchema, walletTypeSchema, walletTypes };
2802
+ export { type AccountChangeCallback, type AccountChangeEvent, type AddListener, type AddNetwork, type AddNetworkParams, type AddNetworkRequestMessage, type AddNetworkResult, type Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type Capability, type ChangeNetwork, type ChangeNetworkById, type ChangeNetworkByIdParams, type ChangeNetworkByIdRequestMessage, type ChangeNetworkByIdResult, type ChangeNetworkParams, type ChangeNetworkRequestMessage, type ChangeNetworkResult, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type Disconnect, type DisconnectCallback, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetInscriptionsParams, type GetInscriptionsRequestMessage, type GetInscriptionsResult, type GetNetwork, type GetNetworkParams, type GetNetworkRequestMessage, type GetNetworkResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, type ListenerInfo, MessageSigningProtocols, type MethodParamsAndResult, type NetworkChangeCallback, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, PermissionRequestParams, type PermissionWithoutClientId, type Provider, ProviderPlatform, type PsbtPayload, type Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesEstimateEtch, type RunesEstimateEtchParams, type RunesEstimateEtchResult, type RunesEstimateMint, type RunesEstimateRbfOrder, type RunesEtch, type RunesEtchParams, type RunesEtchRequestMessage, type RunesEtchResult, type RunesGetBalance, type RunesGetBalanceParams, type RunesGetBalanceResult, type RunesGetOrder, type RunesMint, type RunesMintParams, type RunesMintRequestMessage, type RunesMintResult, type RunesRbfOrder, type RunesRequestMethod, type RunesRequests, type RunesTransfer, type RunesTransferRequestMessage, type RunesTransferResult, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendInscriptionsParams, type SendInscriptionsRequestMessage, type SendInscriptionsResult, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultipleMessages, type SignMultipleMessagesParams, type SignMultipleMessagesRequestMessage, type SignMultipleMessagesResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type SparkFlashnetClawbackFunds, type SparkFlashnetClawbackFundsParams, type SparkFlashnetClawbackFundsRequestMessage, type SparkFlashnetClawbackFundsResult, type SparkFlashnetExecuteRouteSwap, type SparkFlashnetExecuteRouteSwapParams, type SparkFlashnetExecuteRouteSwapRequestMessage, type SparkFlashnetExecuteRouteSwapResult, type SparkFlashnetExecuteSwap, type SparkFlashnetExecuteSwapParams, type SparkFlashnetExecuteSwapRequestMessage, type SparkFlashnetExecuteSwapResult, type SparkFlashnetGetJwt, type SparkFlashnetGetJwtParams, type SparkFlashnetGetJwtRequestMessage, type SparkFlashnetGetJwtResult, type SparkFlashnetSignIntent, type SparkFlashnetSignIntentParams, type SparkFlashnetSignIntentRequestMessage, type SparkFlashnetSignIntentResult, type SparkFlashnetSignStructuredMessage, type SparkFlashnetSignStructuredMessageParams, type SparkFlashnetSignStructuredMessageRequestMessage, type SparkFlashnetSignStructuredMessageResult, type SparkGetAddresses, type SparkGetAddressesParams, type SparkGetAddressesRequestMessage, type SparkGetAddressesResult, type SparkGetBalance, type SparkGetBalanceParams, type SparkGetBalanceRequestMessage, type SparkGetBalanceResult, type SparkGetClawbackEligibleTransfers, type SparkGetClawbackEligibleTransfersParams, type SparkGetClawbackEligibleTransfersRequestMessage, type SparkGetClawbackEligibleTransfersResult, SparkNetworkType, type SparkRequestMethod, type SparkRequests, type SparkSignMessage, type SparkSignMessageParams, type SparkSignMessageRequestMessage, type SparkSignMessageResult, type SparkTransfer, type SparkTransferParams, type SparkTransferRequestMessage, type SparkTransferResult, type SparkTransferToken, type SparkTransferTokenParams, type SparkTransferTokenRequestMessage, type SparkTransferTokenResult, StacksNetworkType, StarknetNetworkType, type StxCallContract, type StxCallContractParams, type StxCallContractRequestMessage, type StxCallContractResult, type StxDeployContract, type StxDeployContractParams, type StxDeployContractRequestMessage, type StxDeployContractResult, type StxGetAccounts, type StxGetAccountsParams, type StxGetAccountsRequestMessage, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignMessage, type StxSignMessageParams, type StxSignMessageRequestMessage, type StxSignMessageResult, type StxSignStructuredMessage, type StxSignStructuredMessageParams, type StxSignStructuredMessageRequestMessage, type StxSignStructuredMessageResult, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxSignTransactions, type StxSignTransactionsParams, type StxSignTransactionsRequestMessage, type StxSignTransactionsResult, type StxTransferStx, type StxTransferStxParams, type StxTransferStxRequestMessage, type StxTransferStxResult, type SupportedWallet, type TransferRunesParams, type WalletEvent, type WalletRequests, type WalletType, accountActionsSchema, accountChangeEventName, accountChangeSchema, accountPermissionSchema, addListener, addNetworkMethodName, addNetworkParamsSchema, addNetworkRequestMessageSchema, addNetworkResultSchema, addressSchema, changeNetworkByIdMethodName, changeNetworkByIdParamsSchema, changeNetworkByIdRequestMessageSchema, changeNetworkByIdResultSchema, changeNetworkMethodName, changeNetworkParamsSchema, changeNetworkRequestMessageSchema, changeNetworkResultSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsRequestMessageSchema, getInscriptionsResultSchema, getNetworkMethodName, getNetworkParamsSchema, getNetworkRequestMessageSchema, getNetworkResultSchema, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permission, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, type runesEstimateMintParams, type runesEstimateMintResult, runesEtchMethodName, runesEtchParamsSchema, runesEtchRequestMessageSchema, runesEtchResultSchema, runesGetBalanceMethodName, runesGetBalanceParamsSchema, type runesGetBalanceRequestMessage, runesGetBalanceRequestMessageSchema, runesGetBalanceResultSchema, runesMintMethodName, runesMintParamsSchema, runesMintRequestMessageSchema, runesMintResultSchema, runesTransferMethodName, runesTransferParamsSchema, runesTransferRequestMessageSchema, runesTransferResultSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsRequestMessageSchema, sendInscriptionsResultSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleMessagesMethodName, signMultipleMessagesParamsSchema, signMultipleMessagesRequestMessageSchema, signMultipleMessagesResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, sparkFlashnetAddLiquidityIntentSchema, sparkFlashnetClawbackFundsMethodName, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestMessageSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackIntentSchema, sparkFlashnetConfirmInitialDepositIntentSchema, sparkFlashnetCreateConstantProductPoolIntentSchema, sparkFlashnetCreateSingleSidedPoolIntentSchema, sparkFlashnetExecuteRouteSwapMethodName, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestMessageSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteSwapMethodName, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestMessageSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetGetJwtMethodName, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestMessageSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetRemoveLiquidityIntentSchema, sparkFlashnetRouteSwapIntentSchema, sparkFlashnetSignIntentMethodName, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestMessageSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignStructuredMessageMethodName, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestMessageSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSwapIntentSchema, sparkGetAddressesMethodName, sparkGetAddressesParamsSchema, sparkGetAddressesRequestMessageSchema, sparkGetAddressesResultSchema, sparkGetBalanceMethodName, sparkGetBalanceParamsSchema, sparkGetBalanceRequestMessageSchema, sparkGetBalanceResultSchema, sparkGetClawbackEligibleTransfersMethodName, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestMessageSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkSignMessageMethodName, sparkSignMessageParamsSchema, sparkSignMessageRequestMessageSchema, sparkSignMessageResultSchema, sparkTransferMethodName, sparkTransferParamsSchema, sparkTransferRequestMessageSchema, sparkTransferResultSchema, sparkTransferTokenMethodName, sparkTransferTokenParamsSchema, sparkTransferTokenRequestMessageSchema, sparkTransferTokenResultSchema, stxCallContractMethodName, stxCallContractParamsSchema, stxCallContractRequestMessageSchema, stxCallContractResultSchema, stxDeployContractMethodName, stxDeployContractParamsSchema, stxDeployContractRequestMessageSchema, stxDeployContractResultSchema, stxGetAccountsMethodName, stxGetAccountsParamsSchema, stxGetAccountsRequestMessageSchema, stxGetAccountsResultSchema, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignMessageMethodName, stxSignMessageParamsSchema, stxSignMessageRequestMessageSchema, stxSignMessageResultSchema, stxSignStructuredMessageMethodName, stxSignStructuredMessageParamsSchema, stxSignStructuredMessageRequestMessageSchema, stxSignStructuredMessageResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, stxSignTransactionsMethodName, stxSignTransactionsParamsSchema, stxSignTransactionsRequestMessageSchema, stxSignTransactionsResultSchema, stxTransferStxMethodName, stxTransferStxParamsSchema, stxTransferStxRequestMessageSchema, stxTransferStxResultSchema, walletActionsSchema, walletEventSchema, walletPermissionSchema, walletTypeSchema, walletTypes };