@sats-connect/core 0.4.0-954ad8d → 0.4.0-97f6fb5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +585 -538
- package/dist/index.d.ts +585 -538
- package/dist/index.js +651 -255
- package/dist/index.mjs +609 -245
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -42,15 +42,15 @@ type SignMessageOptions = RequestOptions<SignMessagePayload, SignMessageResponse
|
|
|
42
42
|
|
|
43
43
|
declare const signMessage: (options: SignMessageOptions) => Promise<void>;
|
|
44
44
|
|
|
45
|
-
interface Recipient
|
|
45
|
+
interface Recipient {
|
|
46
46
|
address: string;
|
|
47
47
|
amountSats: bigint;
|
|
48
48
|
}
|
|
49
|
-
type SerializedRecipient = Omit<Recipient
|
|
49
|
+
type SerializedRecipient = Omit<Recipient, 'amountSats'> & {
|
|
50
50
|
amountSats: string;
|
|
51
51
|
};
|
|
52
52
|
interface SendBtcTransactionPayload extends RequestPayload {
|
|
53
|
-
recipients: Recipient
|
|
53
|
+
recipients: Recipient[];
|
|
54
54
|
senderAddress: string;
|
|
55
55
|
message?: string;
|
|
56
56
|
}
|
|
@@ -313,9 +313,9 @@ declare const addressSchema: v.ObjectSchema<{
|
|
|
313
313
|
readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
|
|
314
314
|
readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
|
|
315
315
|
}, undefined>;
|
|
316
|
-
type Address
|
|
316
|
+
type Address = v.InferOutput<typeof addressSchema>;
|
|
317
317
|
interface GetAddressResponse {
|
|
318
|
-
addresses: Address
|
|
318
|
+
addresses: Address[];
|
|
319
319
|
}
|
|
320
320
|
type GetAddressOptions = RequestOptions<GetAddressPayload, GetAddressResponse>;
|
|
321
321
|
|
|
@@ -623,6 +623,7 @@ declare const getInscriptionsParamsSchema: v.ObjectSchema<{
|
|
|
623
623
|
readonly offset: v.NumberSchema<undefined>;
|
|
624
624
|
readonly limit: v.NumberSchema<undefined>;
|
|
625
625
|
}, undefined>;
|
|
626
|
+
type GetInscriptionsParams = v.InferOutput<typeof getInscriptionsParamsSchema>;
|
|
626
627
|
declare const getInscriptionsResultSchema: v.ObjectSchema<{
|
|
627
628
|
readonly total: v.NumberSchema<undefined>;
|
|
628
629
|
readonly limit: v.NumberSchema<undefined>;
|
|
@@ -641,7 +642,8 @@ declare const getInscriptionsResultSchema: v.ObjectSchema<{
|
|
|
641
642
|
readonly output: v.StringSchema<undefined>;
|
|
642
643
|
}, undefined>, undefined>;
|
|
643
644
|
}, undefined>;
|
|
644
|
-
|
|
645
|
+
type GetInscriptionsResult = v.InferOutput<typeof getInscriptionsResultSchema>;
|
|
646
|
+
declare const getInscriptionsRequestMessageSchema: v.ObjectSchema<{
|
|
645
647
|
readonly method: v.LiteralSchema<"ord_getInscriptions", undefined>;
|
|
646
648
|
readonly params: v.ObjectSchema<{
|
|
647
649
|
readonly offset: v.NumberSchema<undefined>;
|
|
@@ -650,7 +652,8 @@ declare const getInscriptionsSchema: v.ObjectSchema<{
|
|
|
650
652
|
readonly id: v.StringSchema<undefined>;
|
|
651
653
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
652
654
|
}, undefined>;
|
|
653
|
-
type
|
|
655
|
+
type GetInscriptionsRequestMessage = v.InferOutput<typeof getInscriptionsRequestMessageSchema>;
|
|
656
|
+
type GetInscriptions = MethodParamsAndResult<GetInscriptionsParams, GetInscriptionsResult>;
|
|
654
657
|
declare const sendInscriptionsMethodName = "ord_sendInscriptions";
|
|
655
658
|
declare const sendInscriptionsParamsSchema: v.ObjectSchema<{
|
|
656
659
|
readonly transfers: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -658,10 +661,12 @@ declare const sendInscriptionsParamsSchema: v.ObjectSchema<{
|
|
|
658
661
|
readonly inscriptionId: v.StringSchema<undefined>;
|
|
659
662
|
}, undefined>, undefined>;
|
|
660
663
|
}, undefined>;
|
|
664
|
+
type SendInscriptionsParams = v.InferOutput<typeof sendInscriptionsParamsSchema>;
|
|
661
665
|
declare const sendInscriptionsResultSchema: v.ObjectSchema<{
|
|
662
666
|
readonly txid: v.StringSchema<undefined>;
|
|
663
667
|
}, undefined>;
|
|
664
|
-
|
|
668
|
+
type SendInscriptionsResult = v.InferOutput<typeof sendInscriptionsResultSchema>;
|
|
669
|
+
declare const sendInscriptionsRequestMessageSchema: v.ObjectSchema<{
|
|
665
670
|
readonly method: v.LiteralSchema<"ord_sendInscriptions", undefined>;
|
|
666
671
|
readonly params: v.ObjectSchema<{
|
|
667
672
|
readonly transfers: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -672,7 +677,8 @@ declare const sendInscriptionsSchema: v.ObjectSchema<{
|
|
|
672
677
|
readonly id: v.StringSchema<undefined>;
|
|
673
678
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
674
679
|
}, undefined>;
|
|
675
|
-
type
|
|
680
|
+
type SendInscriptionsRequestMessage = v.InferOutput<typeof sendInscriptionsRequestMessageSchema>;
|
|
681
|
+
type SendInscriptions = MethodParamsAndResult<SendInscriptionsParams, SendInscriptionsResult>;
|
|
676
682
|
|
|
677
683
|
type CreateMintOrderRequest = {
|
|
678
684
|
runeName: string;
|
|
@@ -740,55 +746,95 @@ type RBFOrderResponse = {
|
|
|
740
746
|
fundingAddress: string;
|
|
741
747
|
};
|
|
742
748
|
|
|
743
|
-
interface
|
|
744
|
-
network?: BitcoinNetworkType;
|
|
745
|
-
}
|
|
746
|
-
type EstimateRunesMintResult = EstimateOrderResponse;
|
|
747
|
-
type EstimateRunesMint = MethodParamsAndResult<EstimateRunesMintParams, EstimateRunesMintResult>;
|
|
748
|
-
interface MintRunesParams extends CreateMintOrderRequest {
|
|
749
|
+
interface RunesEstimateEtchParams extends EstimateEtchOrderRequest {
|
|
749
750
|
network?: BitcoinNetworkType;
|
|
750
751
|
}
|
|
751
|
-
type
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
};
|
|
756
|
-
type MintRunes = MethodParamsAndResult<MintRunesParams, MintRunesResult>;
|
|
757
|
-
interface EstimateRunesEtchParams extends EstimateEtchOrderRequest {
|
|
758
|
-
network?: BitcoinNetworkType;
|
|
759
|
-
}
|
|
760
|
-
type EstimateRunesEtchResult = EstimateOrderResponse;
|
|
761
|
-
type EstimateRunesEtch = MethodParamsAndResult<EstimateRunesEtchParams, EstimateRunesEtchResult>;
|
|
762
|
-
interface EtchRunesParams extends CreateEtchOrderRequest {
|
|
763
|
-
network?: BitcoinNetworkType;
|
|
764
|
-
}
|
|
765
|
-
type EtchRunesResult = {
|
|
766
|
-
orderId: string;
|
|
767
|
-
fundTransactionId: string;
|
|
768
|
-
fundingAddress: string;
|
|
769
|
-
};
|
|
770
|
-
type EtchRunes = MethodParamsAndResult<EtchRunesParams, EtchRunesResult>;
|
|
771
|
-
interface GetOrderParams extends GetOrderRequest {
|
|
772
|
-
network?: BitcoinNetworkType;
|
|
773
|
-
}
|
|
774
|
-
type GetOrder = MethodParamsAndResult<GetOrderParams, GetOrderResponse>;
|
|
775
|
-
interface EstimateRbfOrderParams extends RBFOrderRequest {
|
|
752
|
+
type RunesEstimateEtchResult = EstimateOrderResponse;
|
|
753
|
+
type RunesEstimateEtch = MethodParamsAndResult<RunesEstimateEtchParams, RunesEstimateEtchResult>;
|
|
754
|
+
|
|
755
|
+
interface runesEstimateMintParams extends EstimateMintOrderRequest {
|
|
776
756
|
network?: BitcoinNetworkType;
|
|
777
757
|
}
|
|
778
|
-
type
|
|
779
|
-
|
|
758
|
+
type runesEstimateMintResult = EstimateOrderResponse;
|
|
759
|
+
type RunesEstimateMint = MethodParamsAndResult<runesEstimateMintParams, runesEstimateMintResult>;
|
|
760
|
+
|
|
761
|
+
interface RunesEstimateRbfOrderParams extends RBFOrderRequest {
|
|
780
762
|
network?: BitcoinNetworkType;
|
|
781
763
|
}
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
764
|
+
type RunesEstimateRbfOrder = MethodParamsAndResult<RunesEstimateRbfOrderParams, RBFOrderResponse>;
|
|
765
|
+
|
|
766
|
+
declare const runesEtchMethodName = "runes_etch";
|
|
767
|
+
declare const runesEtchParamsSchema: v.ObjectSchema<{
|
|
768
|
+
readonly runeName: v.StringSchema<undefined>;
|
|
769
|
+
readonly divisibility: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
770
|
+
readonly symbol: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
771
|
+
readonly premine: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
772
|
+
readonly isMintable: v.BooleanSchema<undefined>;
|
|
773
|
+
readonly delegateInscriptionId: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
774
|
+
readonly destinationAddress: v.StringSchema<undefined>;
|
|
775
|
+
readonly refundAddress: v.StringSchema<undefined>;
|
|
776
|
+
readonly feeRate: v.NumberSchema<undefined>;
|
|
777
|
+
readonly appServiceFee: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
778
|
+
readonly appServiceFeeAddress: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
779
|
+
readonly terms: v.OptionalSchema<v.ObjectSchema<{
|
|
780
|
+
readonly amount: v.StringSchema<undefined>;
|
|
781
|
+
readonly cap: v.StringSchema<undefined>;
|
|
782
|
+
readonly heightStart: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
783
|
+
readonly heightEnd: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
784
|
+
readonly offsetStart: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
785
|
+
readonly offsetEnd: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
786
|
+
}, undefined>, never>;
|
|
787
|
+
readonly inscriptionDetails: v.OptionalSchema<v.ObjectSchema<{
|
|
788
|
+
readonly contentType: v.StringSchema<undefined>;
|
|
789
|
+
readonly contentBase64: v.StringSchema<undefined>;
|
|
790
|
+
}, undefined>, never>;
|
|
791
|
+
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, never>;
|
|
792
|
+
}, undefined>;
|
|
793
|
+
type RunesEtchParams = v.InferOutput<typeof runesEtchParamsSchema>;
|
|
794
|
+
declare const runesEtchResultSchema: v.ObjectSchema<{
|
|
795
|
+
readonly orderId: v.StringSchema<undefined>;
|
|
796
|
+
readonly fundTransactionId: v.StringSchema<undefined>;
|
|
797
|
+
readonly fundingAddress: v.StringSchema<undefined>;
|
|
798
|
+
}, undefined>;
|
|
799
|
+
type RunesEtchResult = v.InferOutput<typeof runesEtchResultSchema>;
|
|
800
|
+
declare const runesEtchRequestMessageSchema: v.ObjectSchema<{
|
|
801
|
+
readonly method: v.LiteralSchema<"runes_etch", undefined>;
|
|
802
|
+
readonly params: v.ObjectSchema<{
|
|
803
|
+
readonly runeName: v.StringSchema<undefined>;
|
|
804
|
+
readonly divisibility: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
805
|
+
readonly symbol: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
806
|
+
readonly premine: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
807
|
+
readonly isMintable: v.BooleanSchema<undefined>;
|
|
808
|
+
readonly delegateInscriptionId: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
809
|
+
readonly destinationAddress: v.StringSchema<undefined>;
|
|
810
|
+
readonly refundAddress: v.StringSchema<undefined>;
|
|
811
|
+
readonly feeRate: v.NumberSchema<undefined>;
|
|
812
|
+
readonly appServiceFee: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
813
|
+
readonly appServiceFeeAddress: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
814
|
+
readonly terms: v.OptionalSchema<v.ObjectSchema<{
|
|
815
|
+
readonly amount: v.StringSchema<undefined>;
|
|
816
|
+
readonly cap: v.StringSchema<undefined>;
|
|
817
|
+
readonly heightStart: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
818
|
+
readonly heightEnd: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
819
|
+
readonly offsetStart: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
820
|
+
readonly offsetEnd: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
821
|
+
}, undefined>, never>;
|
|
822
|
+
readonly inscriptionDetails: v.OptionalSchema<v.ObjectSchema<{
|
|
823
|
+
readonly contentType: v.StringSchema<undefined>;
|
|
824
|
+
readonly contentBase64: v.StringSchema<undefined>;
|
|
825
|
+
}, undefined>, never>;
|
|
826
|
+
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, never>;
|
|
827
|
+
}, undefined>;
|
|
828
|
+
readonly id: v.StringSchema<undefined>;
|
|
829
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
830
|
+
}, undefined>;
|
|
831
|
+
type RunesEtchRequestMessage = v.InferOutput<typeof runesEtchRequestMessageSchema>;
|
|
832
|
+
type RunesEtch = MethodParamsAndResult<v.InferOutput<typeof runesEtchParamsSchema>, v.InferOutput<typeof runesEtchResultSchema>>;
|
|
833
|
+
|
|
834
|
+
declare const runesGetBalanceMethodName = "runes_getBalance";
|
|
835
|
+
declare const runesGetBalanceParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
836
|
+
type RunesGetBalanceParams = v.InferOutput<typeof runesGetBalanceParamsSchema>;
|
|
837
|
+
declare const runesGetBalanceResultSchema: v.ObjectSchema<{
|
|
792
838
|
readonly balances: v.ArraySchema<v.ObjectSchema<{
|
|
793
839
|
readonly runeName: v.StringSchema<undefined>;
|
|
794
840
|
readonly amount: v.StringSchema<undefined>;
|
|
@@ -797,25 +843,81 @@ declare const getRunesBalanceResultSchema: v.ObjectSchema<{
|
|
|
797
843
|
readonly inscriptionId: v.NullishSchema<v.StringSchema<undefined>, never>;
|
|
798
844
|
}, undefined>, undefined>;
|
|
799
845
|
}, undefined>;
|
|
800
|
-
type
|
|
801
|
-
declare const
|
|
846
|
+
type RunesGetBalanceResult = v.InferOutput<typeof runesGetBalanceResultSchema>;
|
|
847
|
+
declare const runesGetBalanceRequestMessageSchema: v.ObjectSchema<{
|
|
802
848
|
readonly method: v.LiteralSchema<"runes_getBalance", undefined>;
|
|
803
849
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
804
850
|
readonly id: v.StringSchema<undefined>;
|
|
805
851
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
806
852
|
}, undefined>;
|
|
807
|
-
type
|
|
808
|
-
type
|
|
809
|
-
|
|
810
|
-
|
|
853
|
+
type runesGetBalanceRequestMessage = v.InferOutput<typeof runesGetBalanceRequestMessageSchema>;
|
|
854
|
+
type RunesGetBalance = MethodParamsAndResult<RunesGetBalanceParams, RunesGetBalanceResult>;
|
|
855
|
+
|
|
856
|
+
interface RunesGetOrderParams extends GetOrderRequest {
|
|
857
|
+
network?: BitcoinNetworkType;
|
|
858
|
+
}
|
|
859
|
+
type RunesGetOrder = MethodParamsAndResult<RunesGetOrderParams, GetOrderResponse>;
|
|
860
|
+
|
|
861
|
+
declare const runesMintMethodName = "runes_mint";
|
|
862
|
+
declare const runesMintParamsSchema: v.ObjectSchema<{
|
|
863
|
+
readonly appServiceFee: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
864
|
+
readonly appServiceFeeAddress: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
865
|
+
readonly destinationAddress: v.StringSchema<undefined>;
|
|
866
|
+
readonly feeRate: v.NumberSchema<undefined>;
|
|
867
|
+
readonly refundAddress: v.StringSchema<undefined>;
|
|
868
|
+
readonly repeats: v.NumberSchema<undefined>;
|
|
869
|
+
readonly runeName: v.StringSchema<undefined>;
|
|
870
|
+
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, never>;
|
|
871
|
+
}, undefined>;
|
|
872
|
+
type RunesMintParams = v.InferOutput<typeof runesMintParamsSchema>;
|
|
873
|
+
declare const runesMintResultSchema: v.ObjectSchema<{
|
|
874
|
+
readonly orderId: v.StringSchema<undefined>;
|
|
875
|
+
readonly fundTransactionId: v.StringSchema<undefined>;
|
|
876
|
+
readonly fundingAddress: v.StringSchema<undefined>;
|
|
877
|
+
}, undefined>;
|
|
878
|
+
type RunesMintResult = v.InferOutput<typeof runesMintResultSchema>;
|
|
879
|
+
declare const runesMintRequestMessageSchema: v.ObjectSchema<{
|
|
880
|
+
readonly method: v.LiteralSchema<"runes_mint", undefined>;
|
|
881
|
+
readonly params: v.ObjectSchema<{
|
|
882
|
+
readonly appServiceFee: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
883
|
+
readonly appServiceFeeAddress: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
884
|
+
readonly destinationAddress: v.StringSchema<undefined>;
|
|
885
|
+
readonly feeRate: v.NumberSchema<undefined>;
|
|
886
|
+
readonly refundAddress: v.StringSchema<undefined>;
|
|
887
|
+
readonly repeats: v.NumberSchema<undefined>;
|
|
888
|
+
readonly runeName: v.StringSchema<undefined>;
|
|
889
|
+
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, never>;
|
|
890
|
+
}, undefined>;
|
|
891
|
+
readonly id: v.StringSchema<undefined>;
|
|
892
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
893
|
+
}, undefined>;
|
|
894
|
+
type RunesMintRequestMessage = v.InferOutput<typeof runesMintRequestMessageSchema>;
|
|
895
|
+
type RunesMint = MethodParamsAndResult<v.InferOutput<typeof runesMintParamsSchema>, v.InferOutput<typeof runesMintResultSchema>>;
|
|
896
|
+
|
|
897
|
+
interface RunesRbfOrderParams extends RBFOrderRequest {
|
|
898
|
+
network?: BitcoinNetworkType;
|
|
899
|
+
}
|
|
900
|
+
interface RunesRbfOrderResult {
|
|
901
|
+
orderId: string;
|
|
902
|
+
fundRBFTransactionId: string;
|
|
903
|
+
fundingAddress: string;
|
|
904
|
+
}
|
|
905
|
+
type RunesRbfOrder = MethodParamsAndResult<RunesRbfOrderParams, RunesRbfOrderResult>;
|
|
906
|
+
|
|
907
|
+
declare const runesTransferMethodName = "runes_transfer";
|
|
908
|
+
declare const runesTransferParamsSchema: v.ObjectSchema<{
|
|
811
909
|
readonly recipients: v.ArraySchema<v.ObjectSchema<{
|
|
812
910
|
readonly runeName: v.StringSchema<undefined>;
|
|
813
911
|
readonly amount: v.StringSchema<undefined>;
|
|
814
912
|
readonly address: v.StringSchema<undefined>;
|
|
815
913
|
}, undefined>, undefined>;
|
|
816
914
|
}, undefined>;
|
|
817
|
-
type TransferRunesParams = v.InferOutput<typeof
|
|
818
|
-
declare const
|
|
915
|
+
type TransferRunesParams = v.InferOutput<typeof runesTransferParamsSchema>;
|
|
916
|
+
declare const runesTransferResultSchema: v.ObjectSchema<{
|
|
917
|
+
readonly txid: v.StringSchema<undefined>;
|
|
918
|
+
}, undefined>;
|
|
919
|
+
type RunesTransferResult = v.InferOutput<typeof runesTransferResultSchema>;
|
|
920
|
+
declare const runesTransferRequestMessageSchema: v.ObjectSchema<{
|
|
819
921
|
readonly method: v.LiteralSchema<"runes_transfer", undefined>;
|
|
820
922
|
readonly params: v.ObjectSchema<{
|
|
821
923
|
readonly recipients: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -827,134 +929,24 @@ declare const transferRunesRequestSchema: v.ObjectSchema<{
|
|
|
827
929
|
readonly id: v.StringSchema<undefined>;
|
|
828
930
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
829
931
|
}, undefined>;
|
|
830
|
-
type
|
|
831
|
-
|
|
832
|
-
readonly txid: v.StringSchema<undefined>;
|
|
833
|
-
}, undefined>;
|
|
834
|
-
type TransferRunesResult = v.InferOutput<typeof TransferRunesResultSchema>;
|
|
835
|
-
type TransferRunes = MethodParamsAndResult<TransferRunesParams, TransferRunesResult>;
|
|
932
|
+
type RunesTransferRequestMessage = v.InferOutput<typeof runesTransferRequestMessageSchema>;
|
|
933
|
+
type RunesTransfer = MethodParamsAndResult<TransferRunesParams, RunesTransferResult>;
|
|
836
934
|
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
* When sending a transfer STX request to a wallet, users can generally
|
|
840
|
-
* choose from which accout they want to send the STX tokens from. In
|
|
841
|
-
* cases where applications want the transfer to be made from a specific
|
|
842
|
-
* account, they can provide the `pubkey` of the address they'd like the
|
|
843
|
-
* transfer to be made from. It is up to wallet providers to handle this
|
|
844
|
-
* field as they see fit.
|
|
845
|
-
*/
|
|
846
|
-
pubkey: string;
|
|
847
|
-
}
|
|
848
|
-
interface Address {
|
|
849
|
-
/**
|
|
850
|
-
* A Crockford base-32 encoded Stacks address.
|
|
851
|
-
*/
|
|
852
|
-
address: string;
|
|
853
|
-
}
|
|
854
|
-
interface PostConditions {
|
|
855
|
-
/**
|
|
856
|
-
* A hex-encoded string representing the post conditions.
|
|
857
|
-
*
|
|
858
|
-
* A post condition may be converted to it's hex representation using the `serializePostCondition` helper from the `@stacks/transactions` package,
|
|
859
|
-
*
|
|
860
|
-
* ```js
|
|
861
|
-
* import { serializePostCondition } from '@stacks/transactions';
|
|
862
|
-
*
|
|
863
|
-
* const postCondition = somePostCondition;
|
|
864
|
-
* const hexPostCondition = serializePostCondition(postCondition).toString('hex');
|
|
865
|
-
* ```
|
|
866
|
-
*/
|
|
867
|
-
postConditions: Array<string>;
|
|
868
|
-
}
|
|
869
|
-
interface PostConditionMode {
|
|
870
|
-
/**
|
|
871
|
-
* The mode of the post conditions.
|
|
872
|
-
*/
|
|
873
|
-
postConditionMode: number;
|
|
874
|
-
}
|
|
875
|
-
interface ParameterFormatVersion {
|
|
876
|
-
/**
|
|
877
|
-
* Version of parameter format.
|
|
878
|
-
*/
|
|
879
|
-
version: string;
|
|
880
|
-
}
|
|
881
|
-
interface Recipient {
|
|
935
|
+
declare const stxCallContractMethodName = "stx_callContract";
|
|
936
|
+
declare const stxCallContractParamsSchema: v.ObjectSchema<{
|
|
882
937
|
/**
|
|
883
|
-
* The
|
|
884
|
-
*/
|
|
885
|
-
recipient: string;
|
|
886
|
-
}
|
|
887
|
-
interface Amount {
|
|
888
|
-
/**
|
|
889
|
-
* Amount of STX tokens to transfer in microstacks as a string. Anything
|
|
890
|
-
* parseable by `BigInt` is acceptable.
|
|
891
|
-
*
|
|
892
|
-
* Example,
|
|
893
|
-
*
|
|
894
|
-
* ```js
|
|
895
|
-
* const amount1 = 1234;
|
|
896
|
-
* const amount2 = 1234n;
|
|
897
|
-
* const amount3 = '1234';
|
|
898
|
-
* ```
|
|
899
|
-
*/
|
|
900
|
-
amount: number | string;
|
|
901
|
-
}
|
|
902
|
-
interface Memo {
|
|
903
|
-
/**
|
|
904
|
-
* A string representing the memo.
|
|
905
|
-
*/
|
|
906
|
-
memo: string;
|
|
907
|
-
}
|
|
908
|
-
interface TxId {
|
|
909
|
-
/**
|
|
910
|
-
* The ID of the transaction.
|
|
911
|
-
*/
|
|
912
|
-
txid: string;
|
|
913
|
-
}
|
|
914
|
-
interface Transaction {
|
|
915
|
-
/**
|
|
916
|
-
* A Stacks transaction as a hex-encoded string.
|
|
917
|
-
*/
|
|
918
|
-
transaction: string;
|
|
919
|
-
}
|
|
920
|
-
interface Message {
|
|
921
|
-
/**
|
|
922
|
-
* Message payload to be signed.
|
|
923
|
-
*/
|
|
924
|
-
message: string;
|
|
925
|
-
}
|
|
926
|
-
interface Signature {
|
|
927
|
-
/**
|
|
928
|
-
* Signature of the message.
|
|
929
|
-
*/
|
|
930
|
-
signature: string;
|
|
931
|
-
}
|
|
932
|
-
interface PublicKey {
|
|
933
|
-
/**
|
|
934
|
-
* Public key as hex-encoded string.
|
|
935
|
-
*/
|
|
936
|
-
publicKey: string;
|
|
937
|
-
}
|
|
938
|
-
interface Domain {
|
|
939
|
-
/**
|
|
940
|
-
* The domain to be signed.
|
|
941
|
-
*/
|
|
942
|
-
domain: string;
|
|
943
|
-
}
|
|
944
|
-
interface CallContractParams {
|
|
945
|
-
/**
|
|
946
|
-
* The contract's Crockford base-32 encoded Stacks address and name.
|
|
938
|
+
* The contract principal.
|
|
947
939
|
*
|
|
948
940
|
* E.g. `"SPKE...GD5C.my-contract"`
|
|
949
941
|
*/
|
|
950
|
-
contract:
|
|
942
|
+
readonly contract: v.StringSchema<undefined>;
|
|
951
943
|
/**
|
|
952
944
|
* The name of the function to call.
|
|
953
945
|
*
|
|
954
946
|
* Note: spec changes ongoing,
|
|
955
947
|
* https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
|
|
956
948
|
*/
|
|
957
|
-
functionName:
|
|
949
|
+
readonly functionName: v.StringSchema<undefined>;
|
|
958
950
|
/**
|
|
959
951
|
* The function's arguments. The arguments are expected to be hex-encoded
|
|
960
952
|
* strings of Clarity values.
|
|
@@ -969,42 +961,131 @@ interface CallContractParams {
|
|
|
969
961
|
* const hexArgs = functionArgs.map(cvToString);
|
|
970
962
|
* ```
|
|
971
963
|
*/
|
|
972
|
-
arguments
|
|
973
|
-
}
|
|
974
|
-
type
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
964
|
+
readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
|
|
965
|
+
}, undefined>;
|
|
966
|
+
type StxCallContractParams = v.InferOutput<typeof stxCallContractParamsSchema>;
|
|
967
|
+
declare const stxCallContractResultSchema: v.ObjectSchema<{
|
|
968
|
+
/**
|
|
969
|
+
* The ID of the transaction.
|
|
970
|
+
*/
|
|
971
|
+
readonly txid: v.StringSchema<undefined>;
|
|
972
|
+
/**
|
|
973
|
+
* A Stacks transaction as a hex-encoded string.
|
|
974
|
+
*/
|
|
975
|
+
readonly transaction: v.StringSchema<undefined>;
|
|
976
|
+
}, undefined>;
|
|
977
|
+
type StxCallContractResult = v.InferOutput<typeof stxCallContractResultSchema>;
|
|
978
|
+
declare const stxCallContractRequestMessageSchema: v.ObjectSchema<{
|
|
979
|
+
readonly method: v.LiteralSchema<"stx_callContract", undefined>;
|
|
980
|
+
readonly params: v.ObjectSchema<{
|
|
981
|
+
/**
|
|
982
|
+
* The contract principal.
|
|
983
|
+
*
|
|
984
|
+
* E.g. `"SPKE...GD5C.my-contract"`
|
|
985
|
+
*/
|
|
986
|
+
readonly contract: v.StringSchema<undefined>;
|
|
987
|
+
/**
|
|
988
|
+
* The name of the function to call.
|
|
989
|
+
*
|
|
990
|
+
* Note: spec changes ongoing,
|
|
991
|
+
* https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
|
|
992
|
+
*/
|
|
993
|
+
readonly functionName: v.StringSchema<undefined>;
|
|
994
|
+
/**
|
|
995
|
+
* The function's arguments. The arguments are expected to be hex-encoded
|
|
996
|
+
* strings of Clarity values.
|
|
997
|
+
*
|
|
998
|
+
* To convert Clarity values to their hex representation, the `cvToString`
|
|
999
|
+
* helper from the `@stacks/transactions` package may be helpful.
|
|
1000
|
+
*
|
|
1001
|
+
* ```js
|
|
1002
|
+
* import { cvToString } from '@stacks/transactions';
|
|
1003
|
+
*
|
|
1004
|
+
* const functionArgs = [someClarityValue1, someClarityValue2];
|
|
1005
|
+
* const hexArgs = functionArgs.map(cvToString);
|
|
1006
|
+
* ```
|
|
1007
|
+
*/
|
|
1008
|
+
readonly arguments: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
|
|
1009
|
+
}, undefined>;
|
|
1010
|
+
readonly id: v.StringSchema<undefined>;
|
|
1011
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1012
|
+
}, undefined>;
|
|
1013
|
+
type StxCallContractRequestMessage = v.InferOutput<typeof stxCallContractRequestMessageSchema>;
|
|
1014
|
+
type StxCallContract = MethodParamsAndResult<StxCallContractParams, StxCallContractResult>;
|
|
1015
|
+
|
|
1016
|
+
declare const stxDeployContractMethodName = "stx_deployContract";
|
|
1017
|
+
declare const stxDeployContractParamsSchema: v.ObjectSchema<{
|
|
986
1018
|
/**
|
|
987
1019
|
* Name of the contract.
|
|
988
1020
|
*/
|
|
989
|
-
name:
|
|
1021
|
+
readonly name: v.StringSchema<undefined>;
|
|
990
1022
|
/**
|
|
991
|
-
* The code of the Clarity contract.
|
|
1023
|
+
* The source code of the Clarity contract.
|
|
992
1024
|
*/
|
|
993
|
-
clarityCode:
|
|
1025
|
+
readonly clarityCode: v.StringSchema<undefined>;
|
|
994
1026
|
/**
|
|
995
1027
|
* The version of the Clarity contract.
|
|
996
1028
|
*/
|
|
997
|
-
clarityVersion
|
|
998
|
-
}
|
|
999
|
-
type
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1029
|
+
readonly clarityVersion: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1030
|
+
}, undefined>;
|
|
1031
|
+
type StxDeployContractParams = v.InferOutput<typeof stxDeployContractParamsSchema>;
|
|
1032
|
+
declare const stxDeployContractResultSchema: v.ObjectSchema<{
|
|
1033
|
+
/**
|
|
1034
|
+
* The ID of the transaction.
|
|
1035
|
+
*/
|
|
1036
|
+
readonly txid: v.StringSchema<undefined>;
|
|
1037
|
+
/**
|
|
1038
|
+
* A Stacks transaction as a hex-encoded string.
|
|
1039
|
+
*/
|
|
1040
|
+
readonly transaction: v.StringSchema<undefined>;
|
|
1041
|
+
}, undefined>;
|
|
1042
|
+
type StxDeployContractResult = v.InferOutput<typeof stxDeployContractResultSchema>;
|
|
1043
|
+
declare const stxDeployContractRequestMessageSchema: v.ObjectSchema<{
|
|
1044
|
+
readonly method: v.LiteralSchema<"stx_deployContract", undefined>;
|
|
1045
|
+
readonly params: v.ObjectSchema<{
|
|
1046
|
+
/**
|
|
1047
|
+
* Name of the contract.
|
|
1048
|
+
*/
|
|
1049
|
+
readonly name: v.StringSchema<undefined>;
|
|
1050
|
+
/**
|
|
1051
|
+
* The source code of the Clarity contract.
|
|
1052
|
+
*/
|
|
1053
|
+
readonly clarityCode: v.StringSchema<undefined>;
|
|
1054
|
+
/**
|
|
1055
|
+
* The version of the Clarity contract.
|
|
1056
|
+
*/
|
|
1057
|
+
readonly clarityVersion: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1058
|
+
}, undefined>;
|
|
1059
|
+
readonly id: v.StringSchema<undefined>;
|
|
1060
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1061
|
+
}, undefined>;
|
|
1062
|
+
type StxDeployContractRequestMessage = v.InferOutput<typeof stxDeployContractRequestMessageSchema>;
|
|
1063
|
+
type StxDeployContract = MethodParamsAndResult<StxDeployContractParams, StxDeployContractResult>;
|
|
1064
|
+
|
|
1065
|
+
declare const stxGetAccountsMethodName = "stx_getAccounts";
|
|
1066
|
+
declare const stxGetAccountsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1067
|
+
type StxGetAccountsParams = v.InferOutput<typeof stxGetAccountsParamsSchema>;
|
|
1068
|
+
declare const stxGetAccountsResultSchema: v.ObjectSchema<{
|
|
1069
|
+
/**
|
|
1070
|
+
* The addresses generated for the given purposes.
|
|
1071
|
+
*/
|
|
1072
|
+
readonly addresses: v.ArraySchema<v.ObjectSchema<{
|
|
1073
|
+
readonly address: v.StringSchema<undefined>;
|
|
1074
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
1075
|
+
readonly gaiaHubUrl: v.StringSchema<undefined>;
|
|
1076
|
+
readonly gaiaAppKey: v.StringSchema<undefined>;
|
|
1077
|
+
}, undefined>, undefined>;
|
|
1078
|
+
}, undefined>;
|
|
1079
|
+
type StxGetAccountsResult = v.InferOutput<typeof stxGetAccountsResultSchema>;
|
|
1080
|
+
declare const stxGetAccountsRequestMessageSchema: v.ObjectSchema<{
|
|
1081
|
+
readonly method: v.LiteralSchema<"stx_getAccounts", undefined>;
|
|
1082
|
+
readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1083
|
+
readonly id: v.StringSchema<undefined>;
|
|
1084
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1085
|
+
}, undefined>;
|
|
1086
|
+
type StxGetAccountsRequestMessage = v.InferOutput<typeof stxGetAccountsRequestMessageSchema>;
|
|
1087
|
+
type StxGetAccounts = MethodParamsAndResult<StxGetAccountsParams, StxGetAccountsResult>;
|
|
1088
|
+
|
|
1008
1089
|
declare const stxGetAddressesMethodName = "stx_getAddresses";
|
|
1009
1090
|
declare const stxGetAddressesParamsSchema: v.NullishSchema<v.ObjectSchema<{
|
|
1010
1091
|
/**
|
|
@@ -1038,6 +1119,113 @@ declare const stxGetAddressesRequestMessageSchema: v.ObjectSchema<{
|
|
|
1038
1119
|
}, undefined>;
|
|
1039
1120
|
type StxGetAddressesRequestMessage = v.InferOutput<typeof stxGetAddressesRequestMessageSchema>;
|
|
1040
1121
|
type StxGetAddresses = MethodParamsAndResult<v.InferOutput<typeof stxGetAddressesParamsSchema>, v.InferOutput<typeof stxGetAddressesResultSchema>>;
|
|
1122
|
+
|
|
1123
|
+
declare const stxSignMessageMethodName = "stx_signMessage";
|
|
1124
|
+
declare const stxSignMessageParamsSchema: v.ObjectSchema<{
|
|
1125
|
+
/**
|
|
1126
|
+
* The message to sign.
|
|
1127
|
+
*/
|
|
1128
|
+
readonly message: v.StringSchema<undefined>;
|
|
1129
|
+
/**
|
|
1130
|
+
* The public key to sign the message with.
|
|
1131
|
+
*/
|
|
1132
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
1133
|
+
/**
|
|
1134
|
+
* The format version of the parameter.
|
|
1135
|
+
*/
|
|
1136
|
+
readonly parameterFormatVersion: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
1137
|
+
}, undefined>;
|
|
1138
|
+
type StxSignMessageParams = v.InferOutput<typeof stxSignMessageParamsSchema>;
|
|
1139
|
+
declare const stxSignMessageResultSchema: v.ObjectSchema<{
|
|
1140
|
+
/**
|
|
1141
|
+
* The signature of the message.
|
|
1142
|
+
*/
|
|
1143
|
+
readonly signature: v.StringSchema<undefined>;
|
|
1144
|
+
/**
|
|
1145
|
+
* The public key used to sign the message.
|
|
1146
|
+
*/
|
|
1147
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
1148
|
+
}, undefined>;
|
|
1149
|
+
type StxSignMessageResult = v.InferOutput<typeof stxSignMessageResultSchema>;
|
|
1150
|
+
declare const stxSignMessageRequestMessageSchema: v.ObjectSchema<{
|
|
1151
|
+
readonly method: v.LiteralSchema<"stx_signMessage", undefined>;
|
|
1152
|
+
readonly params: v.ObjectSchema<{
|
|
1153
|
+
/**
|
|
1154
|
+
* The message to sign.
|
|
1155
|
+
*/
|
|
1156
|
+
readonly message: v.StringSchema<undefined>;
|
|
1157
|
+
/**
|
|
1158
|
+
* The public key to sign the message with.
|
|
1159
|
+
*/
|
|
1160
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
1161
|
+
/**
|
|
1162
|
+
* The format version of the parameter.
|
|
1163
|
+
*/
|
|
1164
|
+
readonly parameterFormatVersion: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
1165
|
+
}, undefined>;
|
|
1166
|
+
readonly id: v.StringSchema<undefined>;
|
|
1167
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1168
|
+
}, undefined>;
|
|
1169
|
+
type StxSignMessageRequestMessage = v.InferOutput<typeof stxSignMessageRequestMessageSchema>;
|
|
1170
|
+
type StxSignMessage = MethodParamsAndResult<StxSignMessageParams, StxSignMessageResult>;
|
|
1171
|
+
|
|
1172
|
+
declare const stxSignStructuredMessageMethodName = "stx_signStructuredMessage";
|
|
1173
|
+
declare const stxSignStructuredMessageParamsSchema: v.ObjectSchema<{
|
|
1174
|
+
/**
|
|
1175
|
+
* The domain to be signed.
|
|
1176
|
+
*/
|
|
1177
|
+
readonly domain: v.StringSchema<undefined>;
|
|
1178
|
+
/**
|
|
1179
|
+
* Message payload to be signed.
|
|
1180
|
+
*/
|
|
1181
|
+
readonly message: v.StringSchema<undefined>;
|
|
1182
|
+
/**
|
|
1183
|
+
* The format version of the parameter.
|
|
1184
|
+
*/
|
|
1185
|
+
readonly parameterFormatVersion: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
1186
|
+
/**
|
|
1187
|
+
* The public key to sign the message with.
|
|
1188
|
+
*/
|
|
1189
|
+
readonly publicKey: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1190
|
+
}, undefined>;
|
|
1191
|
+
type StxSignStructuredMessageParams = v.InferOutput<typeof stxSignStructuredMessageParamsSchema>;
|
|
1192
|
+
declare const stxSignStructuredMessageResultSchema: v.ObjectSchema<{
|
|
1193
|
+
/**
|
|
1194
|
+
* Signature of the message.
|
|
1195
|
+
*/
|
|
1196
|
+
readonly signature: v.StringSchema<undefined>;
|
|
1197
|
+
/**
|
|
1198
|
+
* Public key as hex-encoded string.
|
|
1199
|
+
*/
|
|
1200
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
1201
|
+
}, undefined>;
|
|
1202
|
+
type StxSignStructuredMessageResult = v.InferOutput<typeof stxSignStructuredMessageResultSchema>;
|
|
1203
|
+
declare const stxSignStructuredMessageRequestMessageSchema: v.ObjectSchema<{
|
|
1204
|
+
readonly method: v.LiteralSchema<"stx_signStructuredMessage", undefined>;
|
|
1205
|
+
readonly params: v.ObjectSchema<{
|
|
1206
|
+
/**
|
|
1207
|
+
* The domain to be signed.
|
|
1208
|
+
*/
|
|
1209
|
+
readonly domain: v.StringSchema<undefined>;
|
|
1210
|
+
/**
|
|
1211
|
+
* Message payload to be signed.
|
|
1212
|
+
*/
|
|
1213
|
+
readonly message: v.StringSchema<undefined>;
|
|
1214
|
+
/**
|
|
1215
|
+
* The format version of the parameter.
|
|
1216
|
+
*/
|
|
1217
|
+
readonly parameterFormatVersion: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
1218
|
+
/**
|
|
1219
|
+
* The public key to sign the message with.
|
|
1220
|
+
*/
|
|
1221
|
+
readonly publicKey: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1222
|
+
}, undefined>;
|
|
1223
|
+
readonly id: v.StringSchema<undefined>;
|
|
1224
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1225
|
+
}, undefined>;
|
|
1226
|
+
type StxSignStructuredMessageRequestMessage = v.InferOutput<typeof stxSignStructuredMessageRequestMessageSchema>;
|
|
1227
|
+
type StxSignStructuredMessage = MethodParamsAndResult<StxSignStructuredMessageParams, StxSignStructuredMessageResult>;
|
|
1228
|
+
|
|
1041
1229
|
declare const stxSignTransactionMethodName = "stx_signTransaction";
|
|
1042
1230
|
declare const stxSignTransactionParamsSchema: v.ObjectSchema<{
|
|
1043
1231
|
/**
|
|
@@ -1085,6 +1273,125 @@ declare const stxSignTransactionRequestMessageSchema: v.ObjectSchema<{
|
|
|
1085
1273
|
type StxSignTransactionRequestMessage = v.InferOutput<typeof stxSignTransactionRequestMessageSchema>;
|
|
1086
1274
|
type StxSignTransaction = MethodParamsAndResult<StxSignTransactionParams, StxSignTransactionResult>;
|
|
1087
1275
|
|
|
1276
|
+
declare const stxTransferStxMethodName = "stx_transferStx";
|
|
1277
|
+
declare const stxTransferStxParamsSchema: v.ObjectSchema<{
|
|
1278
|
+
/**
|
|
1279
|
+
* Amount of STX tokens to transfer in microstacks as a string. Anything
|
|
1280
|
+
* parseable by `BigInt` is acceptable.
|
|
1281
|
+
*
|
|
1282
|
+
* Example,
|
|
1283
|
+
*
|
|
1284
|
+
* ```js
|
|
1285
|
+
* const amount1 = 1234;
|
|
1286
|
+
* const amount2 = 1234n;
|
|
1287
|
+
* const amount3 = '1234';
|
|
1288
|
+
* ```
|
|
1289
|
+
*/
|
|
1290
|
+
readonly amount: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1291
|
+
/**
|
|
1292
|
+
* The recipeint's principal.
|
|
1293
|
+
*/
|
|
1294
|
+
readonly recipient: v.StringSchema<undefined>;
|
|
1295
|
+
/**
|
|
1296
|
+
* A string representing the memo.
|
|
1297
|
+
*/
|
|
1298
|
+
readonly memo: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1299
|
+
/**
|
|
1300
|
+
* Version of parameter format.
|
|
1301
|
+
*/
|
|
1302
|
+
readonly version: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1303
|
+
/**
|
|
1304
|
+
* The mode of the post conditions.
|
|
1305
|
+
*/
|
|
1306
|
+
readonly postConditionMode: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
1307
|
+
/**
|
|
1308
|
+
* A hex-encoded string representing the post conditions.
|
|
1309
|
+
*
|
|
1310
|
+
* A post condition may be converted to it's hex representation using the `serializePostCondition` helper from the `@stacks/transactions` package,
|
|
1311
|
+
*
|
|
1312
|
+
* ```js
|
|
1313
|
+
* import { serializePostCondition } from '@stacks/transactions';
|
|
1314
|
+
*
|
|
1315
|
+
* const postCondition = somePostCondition;
|
|
1316
|
+
* const hexPostCondition = serializePostCondition(postCondition).toString('hex');
|
|
1317
|
+
* ```
|
|
1318
|
+
*/
|
|
1319
|
+
readonly postConditions: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
|
|
1320
|
+
/**
|
|
1321
|
+
* The public key to sign the transaction with. The wallet may use any key
|
|
1322
|
+
* when not provided.
|
|
1323
|
+
*/
|
|
1324
|
+
readonly pubkey: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1325
|
+
}, undefined>;
|
|
1326
|
+
type StxTransferStxParams = v.InferOutput<typeof stxTransferStxParamsSchema>;
|
|
1327
|
+
declare const stxTransferStxResultSchema: v.ObjectSchema<{
|
|
1328
|
+
/**
|
|
1329
|
+
* The ID of the transaction.
|
|
1330
|
+
*/
|
|
1331
|
+
readonly txid: v.StringSchema<undefined>;
|
|
1332
|
+
/**
|
|
1333
|
+
* A Stacks transaction as a hex-encoded string.
|
|
1334
|
+
*/
|
|
1335
|
+
readonly transaction: v.StringSchema<undefined>;
|
|
1336
|
+
}, undefined>;
|
|
1337
|
+
type StxTransferStxResult = v.InferOutput<typeof stxTransferStxResultSchema>;
|
|
1338
|
+
declare const stxTransferStxRequestMessageSchema: v.ObjectSchema<{
|
|
1339
|
+
readonly method: v.LiteralSchema<"stx_transferStx", undefined>;
|
|
1340
|
+
readonly params: v.ObjectSchema<{
|
|
1341
|
+
/**
|
|
1342
|
+
* Amount of STX tokens to transfer in microstacks as a string. Anything
|
|
1343
|
+
* parseable by `BigInt` is acceptable.
|
|
1344
|
+
*
|
|
1345
|
+
* Example,
|
|
1346
|
+
*
|
|
1347
|
+
* ```js
|
|
1348
|
+
* const amount1 = 1234;
|
|
1349
|
+
* const amount2 = 1234n;
|
|
1350
|
+
* const amount3 = '1234';
|
|
1351
|
+
* ```
|
|
1352
|
+
*/
|
|
1353
|
+
readonly amount: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1354
|
+
/**
|
|
1355
|
+
* The recipeint's principal.
|
|
1356
|
+
*/
|
|
1357
|
+
readonly recipient: v.StringSchema<undefined>;
|
|
1358
|
+
/**
|
|
1359
|
+
* A string representing the memo.
|
|
1360
|
+
*/
|
|
1361
|
+
readonly memo: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1362
|
+
/**
|
|
1363
|
+
* Version of parameter format.
|
|
1364
|
+
*/
|
|
1365
|
+
readonly version: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1366
|
+
/**
|
|
1367
|
+
* The mode of the post conditions.
|
|
1368
|
+
*/
|
|
1369
|
+
readonly postConditionMode: v.OptionalSchema<v.NumberSchema<undefined>, never>;
|
|
1370
|
+
/**
|
|
1371
|
+
* A hex-encoded string representing the post conditions.
|
|
1372
|
+
*
|
|
1373
|
+
* A post condition may be converted to it's hex representation using the `serializePostCondition` helper from the `@stacks/transactions` package,
|
|
1374
|
+
*
|
|
1375
|
+
* ```js
|
|
1376
|
+
* import { serializePostCondition } from '@stacks/transactions';
|
|
1377
|
+
*
|
|
1378
|
+
* const postCondition = somePostCondition;
|
|
1379
|
+
* const hexPostCondition = serializePostCondition(postCondition).toString('hex');
|
|
1380
|
+
* ```
|
|
1381
|
+
*/
|
|
1382
|
+
readonly postConditions: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
|
|
1383
|
+
/**
|
|
1384
|
+
* The public key to sign the transaction with. The wallet may use any key
|
|
1385
|
+
* when not provided.
|
|
1386
|
+
*/
|
|
1387
|
+
readonly pubkey: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1388
|
+
}, undefined>;
|
|
1389
|
+
readonly id: v.StringSchema<undefined>;
|
|
1390
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1391
|
+
}, undefined>;
|
|
1392
|
+
type StxTransferStxRequestMessage = v.InferOutput<typeof stxTransferStxRequestMessageSchema>;
|
|
1393
|
+
type StxTransferStx = MethodParamsAndResult<StxTransferStxParams, StxTransferStxResult>;
|
|
1394
|
+
|
|
1088
1395
|
/**
|
|
1089
1396
|
* Permissions with the clientId field omitted and optional actions. Used for
|
|
1090
1397
|
* permission requests, since the wallet performs authentication based on the
|
|
@@ -1092,146 +1399,42 @@ type StxSignTransaction = MethodParamsAndResult<StxSignTransactionParams, StxSig
|
|
|
1092
1399
|
* themselves.
|
|
1093
1400
|
*/
|
|
1094
1401
|
declare const permissionTemplate: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1095
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1096
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1097
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1098
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1099
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1100
|
-
readonly entries: {
|
|
1101
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1102
|
-
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1103
|
-
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1104
|
-
};
|
|
1105
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1106
|
-
read?: boolean | undefined;
|
|
1107
|
-
autoSign?: boolean | undefined;
|
|
1108
|
-
rename?: boolean | undefined;
|
|
1109
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1110
|
-
readonly _types?: {
|
|
1111
|
-
readonly input: {
|
|
1112
|
-
read?: boolean | undefined;
|
|
1113
|
-
autoSign?: boolean | undefined;
|
|
1114
|
-
rename?: boolean | undefined;
|
|
1115
|
-
};
|
|
1116
|
-
readonly output: {
|
|
1117
|
-
read?: boolean | undefined;
|
|
1118
|
-
autoSign?: boolean | undefined;
|
|
1119
|
-
rename?: boolean | undefined;
|
|
1120
|
-
};
|
|
1121
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1122
|
-
} | undefined;
|
|
1123
|
-
};
|
|
1124
1402
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1125
1403
|
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1404
|
+
readonly actions: v.ObjectSchema<{
|
|
1405
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1406
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1407
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1408
|
+
}, undefined>;
|
|
1126
1409
|
}, undefined>, v.ObjectSchema<{
|
|
1127
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1128
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1129
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1130
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1131
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1132
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1133
|
-
readonly entries: {
|
|
1134
|
-
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1135
|
-
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1136
|
-
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1137
|
-
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1138
|
-
};
|
|
1139
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1140
|
-
addPrivateKey?: boolean | undefined;
|
|
1141
|
-
openPopup?: boolean | undefined;
|
|
1142
|
-
openFullPage?: boolean | undefined;
|
|
1143
|
-
readAllAccounts?: boolean | undefined;
|
|
1144
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1145
|
-
readonly _types?: {
|
|
1146
|
-
readonly input: {
|
|
1147
|
-
addPrivateKey?: boolean | undefined;
|
|
1148
|
-
openPopup?: boolean | undefined;
|
|
1149
|
-
openFullPage?: boolean | undefined;
|
|
1150
|
-
readAllAccounts?: boolean | undefined;
|
|
1151
|
-
};
|
|
1152
|
-
readonly output: {
|
|
1153
|
-
addPrivateKey?: boolean | undefined;
|
|
1154
|
-
openPopup?: boolean | undefined;
|
|
1155
|
-
openFullPage?: boolean | undefined;
|
|
1156
|
-
readAllAccounts?: boolean | undefined;
|
|
1157
|
-
};
|
|
1158
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1159
|
-
} | undefined;
|
|
1160
|
-
};
|
|
1161
1410
|
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1162
1411
|
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1412
|
+
readonly actions: v.ObjectSchema<{
|
|
1413
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1414
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1415
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1416
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1417
|
+
}, undefined>;
|
|
1163
1418
|
}, undefined>], undefined>;
|
|
1164
1419
|
type PermissionWithoutClientId = v.InferOutput<typeof permissionTemplate>;
|
|
1165
1420
|
declare const requestPermissionsMethodName = "wallet_requestPermissions";
|
|
1166
1421
|
declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1167
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1168
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1169
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1170
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1171
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1172
|
-
readonly entries: {
|
|
1173
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1174
|
-
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1175
|
-
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1176
|
-
};
|
|
1177
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1178
|
-
read?: boolean | undefined;
|
|
1179
|
-
autoSign?: boolean | undefined;
|
|
1180
|
-
rename?: boolean | undefined;
|
|
1181
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1182
|
-
readonly _types?: {
|
|
1183
|
-
readonly input: {
|
|
1184
|
-
read?: boolean | undefined;
|
|
1185
|
-
autoSign?: boolean | undefined;
|
|
1186
|
-
rename?: boolean | undefined;
|
|
1187
|
-
};
|
|
1188
|
-
readonly output: {
|
|
1189
|
-
read?: boolean | undefined;
|
|
1190
|
-
autoSign?: boolean | undefined;
|
|
1191
|
-
rename?: boolean | undefined;
|
|
1192
|
-
};
|
|
1193
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1194
|
-
} | undefined;
|
|
1195
|
-
};
|
|
1196
1422
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1197
1423
|
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1424
|
+
readonly actions: v.ObjectSchema<{
|
|
1425
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1426
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1427
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1428
|
+
}, undefined>;
|
|
1198
1429
|
}, undefined>, v.ObjectSchema<{
|
|
1199
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1200
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1201
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1202
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1203
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1204
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1205
|
-
readonly entries: {
|
|
1206
|
-
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1207
|
-
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1208
|
-
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1209
|
-
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1210
|
-
};
|
|
1211
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1212
|
-
addPrivateKey?: boolean | undefined;
|
|
1213
|
-
openPopup?: boolean | undefined;
|
|
1214
|
-
openFullPage?: boolean | undefined;
|
|
1215
|
-
readAllAccounts?: boolean | undefined;
|
|
1216
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1217
|
-
readonly _types?: {
|
|
1218
|
-
readonly input: {
|
|
1219
|
-
addPrivateKey?: boolean | undefined;
|
|
1220
|
-
openPopup?: boolean | undefined;
|
|
1221
|
-
openFullPage?: boolean | undefined;
|
|
1222
|
-
readAllAccounts?: boolean | undefined;
|
|
1223
|
-
};
|
|
1224
|
-
readonly output: {
|
|
1225
|
-
addPrivateKey?: boolean | undefined;
|
|
1226
|
-
openPopup?: boolean | undefined;
|
|
1227
|
-
openFullPage?: boolean | undefined;
|
|
1228
|
-
readAllAccounts?: boolean | undefined;
|
|
1229
|
-
};
|
|
1230
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1231
|
-
} | undefined;
|
|
1232
|
-
};
|
|
1233
1430
|
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1234
1431
|
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1432
|
+
readonly actions: v.ObjectSchema<{
|
|
1433
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1434
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1435
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1436
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1437
|
+
}, undefined>;
|
|
1235
1438
|
}, undefined>], undefined>, undefined>, never>;
|
|
1236
1439
|
type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
|
|
1237
1440
|
declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
|
|
@@ -1239,74 +1442,22 @@ type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSch
|
|
|
1239
1442
|
declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
1240
1443
|
readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
|
|
1241
1444
|
readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1242
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1243
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1244
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1245
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1246
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1247
|
-
readonly entries: {
|
|
1248
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1249
|
-
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1250
|
-
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1251
|
-
};
|
|
1252
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1253
|
-
read?: boolean | undefined;
|
|
1254
|
-
autoSign?: boolean | undefined;
|
|
1255
|
-
rename?: boolean | undefined;
|
|
1256
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1257
|
-
readonly _types?: {
|
|
1258
|
-
readonly input: {
|
|
1259
|
-
read?: boolean | undefined;
|
|
1260
|
-
autoSign?: boolean | undefined;
|
|
1261
|
-
rename?: boolean | undefined;
|
|
1262
|
-
};
|
|
1263
|
-
readonly output: {
|
|
1264
|
-
read?: boolean | undefined;
|
|
1265
|
-
autoSign?: boolean | undefined;
|
|
1266
|
-
rename?: boolean | undefined;
|
|
1267
|
-
};
|
|
1268
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1269
|
-
} | undefined;
|
|
1270
|
-
};
|
|
1271
1445
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1272
1446
|
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1447
|
+
readonly actions: v.ObjectSchema<{
|
|
1448
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1449
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1450
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1451
|
+
}, undefined>;
|
|
1273
1452
|
}, undefined>, v.ObjectSchema<{
|
|
1274
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1275
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1276
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1277
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1278
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1279
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1280
|
-
readonly entries: {
|
|
1281
|
-
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1282
|
-
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1283
|
-
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1284
|
-
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1285
|
-
};
|
|
1286
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1287
|
-
addPrivateKey?: boolean | undefined;
|
|
1288
|
-
openPopup?: boolean | undefined;
|
|
1289
|
-
openFullPage?: boolean | undefined;
|
|
1290
|
-
readAllAccounts?: boolean | undefined;
|
|
1291
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1292
|
-
readonly _types?: {
|
|
1293
|
-
readonly input: {
|
|
1294
|
-
addPrivateKey?: boolean | undefined;
|
|
1295
|
-
openPopup?: boolean | undefined;
|
|
1296
|
-
openFullPage?: boolean | undefined;
|
|
1297
|
-
readAllAccounts?: boolean | undefined;
|
|
1298
|
-
};
|
|
1299
|
-
readonly output: {
|
|
1300
|
-
addPrivateKey?: boolean | undefined;
|
|
1301
|
-
openPopup?: boolean | undefined;
|
|
1302
|
-
openFullPage?: boolean | undefined;
|
|
1303
|
-
readAllAccounts?: boolean | undefined;
|
|
1304
|
-
};
|
|
1305
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1306
|
-
} | undefined;
|
|
1307
|
-
};
|
|
1308
1453
|
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1309
1454
|
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1455
|
+
readonly actions: v.ObjectSchema<{
|
|
1456
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1457
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1458
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1459
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1460
|
+
}, undefined>;
|
|
1310
1461
|
}, undefined>], undefined>, undefined>, never>;
|
|
1311
1462
|
readonly id: v.StringSchema<undefined>;
|
|
1312
1463
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
@@ -1360,19 +1511,19 @@ declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSchema<"
|
|
|
1360
1511
|
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1361
1512
|
readonly clientId: v.StringSchema<undefined>;
|
|
1362
1513
|
readonly actions: v.ObjectSchema<{
|
|
1363
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1364
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1365
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1514
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1515
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1516
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1366
1517
|
}, undefined>;
|
|
1367
1518
|
}, undefined>, v.ObjectSchema<{
|
|
1368
1519
|
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1369
1520
|
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1370
1521
|
readonly clientId: v.StringSchema<undefined>;
|
|
1371
1522
|
readonly actions: v.ObjectSchema<{
|
|
1372
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1373
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1374
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1375
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1523
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1524
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1525
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1526
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1376
1527
|
}, undefined>;
|
|
1377
1528
|
}, undefined>], undefined>, undefined>;
|
|
1378
1529
|
type GetCurrentPermissionsResult = v.InferOutput<typeof getCurrentPermissionsResultSchema>;
|
|
@@ -1409,74 +1560,22 @@ type GetAccount = MethodParamsAndResult<GetAccountParams, GetAccountResult>;
|
|
|
1409
1560
|
declare const connectMethodName = "wallet_connect";
|
|
1410
1561
|
declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
|
|
1411
1562
|
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1412
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1413
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1414
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1415
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1416
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1417
|
-
readonly entries: {
|
|
1418
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1419
|
-
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1420
|
-
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1421
|
-
};
|
|
1422
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1423
|
-
read?: boolean | undefined;
|
|
1424
|
-
autoSign?: boolean | undefined;
|
|
1425
|
-
rename?: boolean | undefined;
|
|
1426
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1427
|
-
readonly _types?: {
|
|
1428
|
-
readonly input: {
|
|
1429
|
-
read?: boolean | undefined;
|
|
1430
|
-
autoSign?: boolean | undefined;
|
|
1431
|
-
rename?: boolean | undefined;
|
|
1432
|
-
};
|
|
1433
|
-
readonly output: {
|
|
1434
|
-
read?: boolean | undefined;
|
|
1435
|
-
autoSign?: boolean | undefined;
|
|
1436
|
-
rename?: boolean | undefined;
|
|
1437
|
-
};
|
|
1438
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1439
|
-
} | undefined;
|
|
1440
|
-
};
|
|
1441
1563
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1442
1564
|
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1565
|
+
readonly actions: v.ObjectSchema<{
|
|
1566
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1567
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1568
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1569
|
+
}, undefined>;
|
|
1443
1570
|
}, undefined>, v.ObjectSchema<{
|
|
1444
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1445
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1446
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1447
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1448
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1449
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1450
|
-
readonly entries: {
|
|
1451
|
-
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1452
|
-
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1453
|
-
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1454
|
-
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1455
|
-
};
|
|
1456
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1457
|
-
addPrivateKey?: boolean | undefined;
|
|
1458
|
-
openPopup?: boolean | undefined;
|
|
1459
|
-
openFullPage?: boolean | undefined;
|
|
1460
|
-
readAllAccounts?: boolean | undefined;
|
|
1461
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1462
|
-
readonly _types?: {
|
|
1463
|
-
readonly input: {
|
|
1464
|
-
addPrivateKey?: boolean | undefined;
|
|
1465
|
-
openPopup?: boolean | undefined;
|
|
1466
|
-
openFullPage?: boolean | undefined;
|
|
1467
|
-
readAllAccounts?: boolean | undefined;
|
|
1468
|
-
};
|
|
1469
|
-
readonly output: {
|
|
1470
|
-
addPrivateKey?: boolean | undefined;
|
|
1471
|
-
openPopup?: boolean | undefined;
|
|
1472
|
-
openFullPage?: boolean | undefined;
|
|
1473
|
-
readAllAccounts?: boolean | undefined;
|
|
1474
|
-
};
|
|
1475
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1476
|
-
} | undefined;
|
|
1477
|
-
};
|
|
1478
1571
|
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1479
1572
|
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1573
|
+
readonly actions: v.ObjectSchema<{
|
|
1574
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1575
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1576
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1577
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1578
|
+
}, undefined>;
|
|
1480
1579
|
}, undefined>], undefined>, undefined>, never>;
|
|
1481
1580
|
}, undefined>, never>;
|
|
1482
1581
|
type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
|
|
@@ -1495,74 +1594,22 @@ declare const connectRequestMessageSchema: v.ObjectSchema<{
|
|
|
1495
1594
|
readonly method: v.LiteralSchema<"wallet_connect", undefined>;
|
|
1496
1595
|
readonly params: v.NullishSchema<v.ObjectSchema<{
|
|
1497
1596
|
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1498
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1499
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1500
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1501
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1502
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1503
|
-
readonly entries: {
|
|
1504
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1505
|
-
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1506
|
-
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1507
|
-
};
|
|
1508
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1509
|
-
read?: boolean | undefined;
|
|
1510
|
-
autoSign?: boolean | undefined;
|
|
1511
|
-
rename?: boolean | undefined;
|
|
1512
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1513
|
-
readonly _types?: {
|
|
1514
|
-
readonly input: {
|
|
1515
|
-
read?: boolean | undefined;
|
|
1516
|
-
autoSign?: boolean | undefined;
|
|
1517
|
-
rename?: boolean | undefined;
|
|
1518
|
-
};
|
|
1519
|
-
readonly output: {
|
|
1520
|
-
read?: boolean | undefined;
|
|
1521
|
-
autoSign?: boolean | undefined;
|
|
1522
|
-
rename?: boolean | undefined;
|
|
1523
|
-
};
|
|
1524
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1525
|
-
} | undefined;
|
|
1526
|
-
};
|
|
1527
1597
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1528
1598
|
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1599
|
+
readonly actions: v.ObjectSchema<{
|
|
1600
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1601
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1602
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1603
|
+
}, undefined>;
|
|
1529
1604
|
}, undefined>, v.ObjectSchema<{
|
|
1530
|
-
readonly actions: Omit<v.ObjectSchema<{
|
|
1531
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1532
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1533
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1534
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1535
|
-
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1536
|
-
readonly entries: {
|
|
1537
|
-
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1538
|
-
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1539
|
-
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1540
|
-
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1541
|
-
};
|
|
1542
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1543
|
-
addPrivateKey?: boolean | undefined;
|
|
1544
|
-
openPopup?: boolean | undefined;
|
|
1545
|
-
openFullPage?: boolean | undefined;
|
|
1546
|
-
readAllAccounts?: boolean | undefined;
|
|
1547
|
-
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1548
|
-
readonly _types?: {
|
|
1549
|
-
readonly input: {
|
|
1550
|
-
addPrivateKey?: boolean | undefined;
|
|
1551
|
-
openPopup?: boolean | undefined;
|
|
1552
|
-
openFullPage?: boolean | undefined;
|
|
1553
|
-
readAllAccounts?: boolean | undefined;
|
|
1554
|
-
};
|
|
1555
|
-
readonly output: {
|
|
1556
|
-
addPrivateKey?: boolean | undefined;
|
|
1557
|
-
openPopup?: boolean | undefined;
|
|
1558
|
-
openFullPage?: boolean | undefined;
|
|
1559
|
-
readAllAccounts?: boolean | undefined;
|
|
1560
|
-
};
|
|
1561
|
-
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1562
|
-
} | undefined;
|
|
1563
|
-
};
|
|
1564
1605
|
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1565
1606
|
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1607
|
+
readonly actions: v.ObjectSchema<{
|
|
1608
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1609
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1610
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1611
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1612
|
+
}, undefined>;
|
|
1566
1613
|
}, undefined>], undefined>, undefined>, never>;
|
|
1567
1614
|
}, undefined>, never>;
|
|
1568
1615
|
readonly id: v.StringSchema<undefined>;
|
|
@@ -1580,7 +1627,7 @@ interface StxRequests {
|
|
|
1580
1627
|
stx_deployContract: StxDeployContract;
|
|
1581
1628
|
stx_getAccounts: StxGetAccounts;
|
|
1582
1629
|
stx_getAddresses: StxGetAddresses;
|
|
1583
|
-
stx_signMessage:
|
|
1630
|
+
stx_signMessage: StxSignMessage;
|
|
1584
1631
|
stx_signStructuredMessage: StxSignStructuredMessage;
|
|
1585
1632
|
stx_signTransaction: StxSignTransaction;
|
|
1586
1633
|
stx_transferStx: StxTransferStx;
|
|
@@ -1597,15 +1644,15 @@ interface BtcRequests {
|
|
|
1597
1644
|
}
|
|
1598
1645
|
type BtcRequestMethod = keyof BtcRequests;
|
|
1599
1646
|
interface RunesRequests {
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
runes_etch:
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
runes_transfer:
|
|
1647
|
+
runes_estimateEtch: RunesEstimateEtch;
|
|
1648
|
+
runes_estimateMint: RunesEstimateMint;
|
|
1649
|
+
runes_estimateRbfOrder: RunesEstimateRbfOrder;
|
|
1650
|
+
runes_etch: RunesEtch;
|
|
1651
|
+
runes_getBalance: RunesGetBalance;
|
|
1652
|
+
runes_getOrder: RunesGetOrder;
|
|
1653
|
+
runes_mint: RunesMint;
|
|
1654
|
+
runes_rbfOrder: RunesRbfOrder;
|
|
1655
|
+
runes_transfer: RunesTransfer;
|
|
1609
1656
|
}
|
|
1610
1657
|
type RunesRequestMethod = keyof RunesRequests;
|
|
1611
1658
|
interface OrdinalsRequests {
|
|
@@ -1650,4 +1697,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
1650
1697
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
1651
1698
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
1652
1699
|
|
|
1653
|
-
export { type AccountChangeEvent, type AddListener, type Address
|
|
1700
|
+
export { type AccountChangeEvent, type AddListener, type Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type Capability, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type Disconnect, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetInscriptionsParams, type GetInscriptionsRequestMessage, type GetInscriptionsResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, MessageSigningProtocols, type MethodParamsAndResult, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, type PermissionWithoutClientId, type Provider, type PsbtPayload, type Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesEstimateEtch, type RunesEstimateEtchParams, type RunesEstimateEtchResult, type RunesEstimateMint, type RunesEstimateRbfOrder, type RunesEtch, type RunesEtchParams, type RunesEtchRequestMessage, type RunesEtchResult, type RunesGetBalance, type RunesGetBalanceParams, type RunesGetBalanceResult, type RunesGetOrder, type RunesMint, type RunesMintParams, type RunesMintRequestMessage, type RunesMintResult, type RunesRbfOrder, type RunesRequestMethod, type RunesRequests, type RunesTransfer, type RunesTransferRequestMessage, type RunesTransferResult, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendInscriptionsParams, type SendInscriptionsRequestMessage, type SendInscriptionsResult, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type StxCallContract, type StxCallContractParams, type StxCallContractRequestMessage, type StxCallContractResult, type StxDeployContract, type StxDeployContractParams, type StxDeployContractRequestMessage, type StxDeployContractResult, type StxGetAccounts, type StxGetAccountsParams, type StxGetAccountsRequestMessage, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignMessage, type StxSignMessageParams, type StxSignMessageRequestMessage, type StxSignMessageResult, type StxSignStructuredMessage, type StxSignStructuredMessageParams, type StxSignStructuredMessageRequestMessage, type StxSignStructuredMessageResult, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxTransferStx, type StxTransferStxParams, type StxTransferStxRequestMessage, type StxTransferStxResult, type SupportedWallet, type TransferRunesParams, type WalletEvent, type WalletRequests, type WalletType, accountChangeEventName, accountChangeSchema, addListener, addressSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsRequestMessageSchema, getInscriptionsResultSchema, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permissionTemplate, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, type runesEstimateMintParams, type runesEstimateMintResult, runesEtchMethodName, runesEtchParamsSchema, runesEtchRequestMessageSchema, runesEtchResultSchema, runesGetBalanceMethodName, runesGetBalanceParamsSchema, type runesGetBalanceRequestMessage, runesGetBalanceRequestMessageSchema, runesGetBalanceResultSchema, runesMintMethodName, runesMintParamsSchema, runesMintRequestMessageSchema, runesMintResultSchema, runesTransferMethodName, runesTransferParamsSchema, runesTransferRequestMessageSchema, runesTransferResultSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsRequestMessageSchema, sendInscriptionsResultSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, stxCallContractMethodName, stxCallContractParamsSchema, stxCallContractRequestMessageSchema, stxCallContractResultSchema, stxDeployContractMethodName, stxDeployContractParamsSchema, stxDeployContractRequestMessageSchema, stxDeployContractResultSchema, stxGetAccountsMethodName, stxGetAccountsParamsSchema, stxGetAccountsRequestMessageSchema, stxGetAccountsResultSchema, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignMessageMethodName, stxSignMessageParamsSchema, stxSignMessageRequestMessageSchema, stxSignMessageResultSchema, stxSignStructuredMessageMethodName, stxSignStructuredMessageParamsSchema, stxSignStructuredMessageRequestMessageSchema, stxSignStructuredMessageResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, stxTransferStxMethodName, stxTransferStxParamsSchema, stxTransferStxRequestMessageSchema, stxTransferStxResultSchema, walletEventSchema, walletTypeSchema, walletTypes };
|