@sats-connect/core 0.17.3-fecf12a → 0.17.4-021a85c
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 +241 -407
- package/dist/index.mjs +1 -46
- package/package.json +1 -1
- package/dist/index.cjs +0 -3703
- package/dist/index.d.cts +0 -14100
package/dist/index.d.mts
CHANGED
|
@@ -82,8 +82,6 @@ declare const walletMethods: {
|
|
|
82
82
|
readonly wallet_openReceive: "wallet_openReceive";
|
|
83
83
|
readonly wallet_renouncePermissions: "wallet_renouncePermissions";
|
|
84
84
|
readonly wallet_requestPermissions: "wallet_requestPermissions";
|
|
85
|
-
readonly wallet_sign: "wallet_sign";
|
|
86
|
-
readonly wallet_getEdDsaPublicKey: "wallet_getEdDsaPublicKey";
|
|
87
85
|
readonly wallet_switchNetwork: "wallet_switchNetwork";
|
|
88
86
|
};
|
|
89
87
|
type WalletMethod = (typeof walletMethods)[keyof typeof walletMethods];
|
|
@@ -106,8 +104,6 @@ declare const methods: {
|
|
|
106
104
|
wallet_openReceive: "wallet_openReceive";
|
|
107
105
|
wallet_renouncePermissions: "wallet_renouncePermissions";
|
|
108
106
|
wallet_requestPermissions: "wallet_requestPermissions";
|
|
109
|
-
wallet_sign: "wallet_sign";
|
|
110
|
-
wallet_getEdDsaPublicKey: "wallet_getEdDsaPublicKey";
|
|
111
107
|
wallet_switchNetwork: "wallet_switchNetwork";
|
|
112
108
|
ord_getInscriptions: "ord_getInscriptions";
|
|
113
109
|
ord_sendInscriptions: "ord_sendInscriptions";
|
|
@@ -5463,15 +5459,13 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5463
5459
|
}, "id" | "source">;
|
|
5464
5460
|
readonly "~standard": v.StandardProps<{
|
|
5465
5461
|
name: string;
|
|
5466
|
-
chain: "bitcoin";
|
|
5467
|
-
blockExplorerUrl?: string | undefined;
|
|
5468
5462
|
mode: string;
|
|
5463
|
+
blockExplorerUrl?: string | undefined;
|
|
5464
|
+
chain: "bitcoin";
|
|
5469
5465
|
xverseApiUrl: string;
|
|
5470
5466
|
electrsApiUrl: string;
|
|
5471
5467
|
}, {
|
|
5472
5468
|
name: string;
|
|
5473
|
-
chain: "bitcoin";
|
|
5474
|
-
blockExplorerUrl?: string | undefined;
|
|
5475
5469
|
mode: v.EnumValues<{
|
|
5476
5470
|
readonly mainnet: "mainnet";
|
|
5477
5471
|
readonly testnet: "testnet";
|
|
@@ -5479,13 +5473,13 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5479
5473
|
readonly signet: "signet";
|
|
5480
5474
|
readonly regtest: "regtest";
|
|
5481
5475
|
}>;
|
|
5476
|
+
blockExplorerUrl?: string | undefined;
|
|
5477
|
+
chain: "bitcoin";
|
|
5482
5478
|
xverseApiUrl: string;
|
|
5483
5479
|
electrsApiUrl: string;
|
|
5484
5480
|
}>;
|
|
5485
5481
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5486
5482
|
name: string;
|
|
5487
|
-
chain: "bitcoin";
|
|
5488
|
-
blockExplorerUrl?: string | undefined;
|
|
5489
5483
|
mode: v.EnumValues<{
|
|
5490
5484
|
readonly mainnet: "mainnet";
|
|
5491
5485
|
readonly testnet: "testnet";
|
|
@@ -5493,22 +5487,22 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5493
5487
|
readonly signet: "signet";
|
|
5494
5488
|
readonly regtest: "regtest";
|
|
5495
5489
|
}>;
|
|
5490
|
+
blockExplorerUrl?: string | undefined;
|
|
5491
|
+
chain: "bitcoin";
|
|
5496
5492
|
xverseApiUrl: string;
|
|
5497
5493
|
electrsApiUrl: string;
|
|
5498
5494
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5499
5495
|
readonly "~types"?: {
|
|
5500
5496
|
readonly input: {
|
|
5501
5497
|
name: string;
|
|
5502
|
-
chain: "bitcoin";
|
|
5503
|
-
blockExplorerUrl?: string | undefined;
|
|
5504
5498
|
mode: string;
|
|
5499
|
+
blockExplorerUrl?: string | undefined;
|
|
5500
|
+
chain: "bitcoin";
|
|
5505
5501
|
xverseApiUrl: string;
|
|
5506
5502
|
electrsApiUrl: string;
|
|
5507
5503
|
};
|
|
5508
5504
|
readonly output: {
|
|
5509
5505
|
name: string;
|
|
5510
|
-
chain: "bitcoin";
|
|
5511
|
-
blockExplorerUrl?: string | undefined;
|
|
5512
5506
|
mode: v.EnumValues<{
|
|
5513
5507
|
readonly mainnet: "mainnet";
|
|
5514
5508
|
readonly testnet: "testnet";
|
|
@@ -5516,6 +5510,8 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5516
5510
|
readonly signet: "signet";
|
|
5517
5511
|
readonly regtest: "regtest";
|
|
5518
5512
|
}>;
|
|
5513
|
+
blockExplorerUrl?: string | undefined;
|
|
5514
|
+
chain: "bitcoin";
|
|
5519
5515
|
xverseApiUrl: string;
|
|
5520
5516
|
electrsApiUrl: string;
|
|
5521
5517
|
};
|
|
@@ -5553,46 +5549,46 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5553
5549
|
}, "id" | "source">;
|
|
5554
5550
|
readonly "~standard": v.StandardProps<{
|
|
5555
5551
|
name: string;
|
|
5556
|
-
chain: "spark";
|
|
5557
|
-
blockExplorerUrl?: string | undefined;
|
|
5558
5552
|
mode: string;
|
|
5553
|
+
blockExplorerUrl?: string | undefined;
|
|
5554
|
+
chain: "spark";
|
|
5559
5555
|
electrsApiUrl: string;
|
|
5560
5556
|
}, {
|
|
5561
5557
|
name: string;
|
|
5562
|
-
chain: "spark";
|
|
5563
|
-
blockExplorerUrl?: string | undefined;
|
|
5564
5558
|
mode: v.EnumValues<{
|
|
5565
5559
|
readonly mainnet: "mainnet";
|
|
5566
5560
|
readonly regtest: "regtest";
|
|
5567
5561
|
}>;
|
|
5562
|
+
blockExplorerUrl?: string | undefined;
|
|
5563
|
+
chain: "spark";
|
|
5568
5564
|
electrsApiUrl: string;
|
|
5569
5565
|
}>;
|
|
5570
5566
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5571
5567
|
name: string;
|
|
5572
|
-
chain: "spark";
|
|
5573
|
-
blockExplorerUrl?: string | undefined;
|
|
5574
5568
|
mode: v.EnumValues<{
|
|
5575
5569
|
readonly mainnet: "mainnet";
|
|
5576
5570
|
readonly regtest: "regtest";
|
|
5577
5571
|
}>;
|
|
5572
|
+
blockExplorerUrl?: string | undefined;
|
|
5573
|
+
chain: "spark";
|
|
5578
5574
|
electrsApiUrl: string;
|
|
5579
5575
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5580
5576
|
readonly "~types"?: {
|
|
5581
5577
|
readonly input: {
|
|
5582
5578
|
name: string;
|
|
5583
|
-
chain: "spark";
|
|
5584
|
-
blockExplorerUrl?: string | undefined;
|
|
5585
5579
|
mode: string;
|
|
5580
|
+
blockExplorerUrl?: string | undefined;
|
|
5581
|
+
chain: "spark";
|
|
5586
5582
|
electrsApiUrl: string;
|
|
5587
5583
|
};
|
|
5588
5584
|
readonly output: {
|
|
5589
5585
|
name: string;
|
|
5590
|
-
chain: "spark";
|
|
5591
|
-
blockExplorerUrl?: string | undefined;
|
|
5592
5586
|
mode: v.EnumValues<{
|
|
5593
5587
|
readonly mainnet: "mainnet";
|
|
5594
5588
|
readonly regtest: "regtest";
|
|
5595
5589
|
}>;
|
|
5590
|
+
blockExplorerUrl?: string | undefined;
|
|
5591
|
+
chain: "spark";
|
|
5596
5592
|
electrsApiUrl: string;
|
|
5597
5593
|
};
|
|
5598
5594
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -5635,56 +5631,56 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5635
5631
|
}, "id" | "source">;
|
|
5636
5632
|
readonly "~standard": v.StandardProps<{
|
|
5637
5633
|
name: string;
|
|
5638
|
-
chain: "stacks";
|
|
5639
|
-
blockExplorerUrl?: string | undefined;
|
|
5640
5634
|
mode: string;
|
|
5635
|
+
blockExplorerUrl?: string | undefined;
|
|
5636
|
+
chain: "stacks";
|
|
5641
5637
|
xverseApiUrl: string;
|
|
5642
5638
|
stacksApiUrl: string;
|
|
5643
5639
|
}, {
|
|
5644
5640
|
name: string;
|
|
5645
|
-
chain: "stacks";
|
|
5646
|
-
blockExplorerUrl?: string | undefined;
|
|
5647
5641
|
mode: v.EnumValues<{
|
|
5648
5642
|
readonly mainnet: "mainnet";
|
|
5649
5643
|
readonly testnet: "testnet";
|
|
5650
5644
|
readonly devnet: "devnet";
|
|
5651
5645
|
readonly mocknet: "mocknet";
|
|
5652
5646
|
}>;
|
|
5647
|
+
blockExplorerUrl?: string | undefined;
|
|
5648
|
+
chain: "stacks";
|
|
5653
5649
|
xverseApiUrl: string;
|
|
5654
5650
|
stacksApiUrl: string;
|
|
5655
5651
|
}>;
|
|
5656
5652
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5657
5653
|
name: string;
|
|
5658
|
-
chain: "stacks";
|
|
5659
|
-
blockExplorerUrl?: string | undefined;
|
|
5660
5654
|
mode: v.EnumValues<{
|
|
5661
5655
|
readonly mainnet: "mainnet";
|
|
5662
5656
|
readonly testnet: "testnet";
|
|
5663
5657
|
readonly devnet: "devnet";
|
|
5664
5658
|
readonly mocknet: "mocknet";
|
|
5665
5659
|
}>;
|
|
5660
|
+
blockExplorerUrl?: string | undefined;
|
|
5661
|
+
chain: "stacks";
|
|
5666
5662
|
xverseApiUrl: string;
|
|
5667
5663
|
stacksApiUrl: string;
|
|
5668
5664
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5669
5665
|
readonly "~types"?: {
|
|
5670
5666
|
readonly input: {
|
|
5671
5667
|
name: string;
|
|
5672
|
-
chain: "stacks";
|
|
5673
|
-
blockExplorerUrl?: string | undefined;
|
|
5674
5668
|
mode: string;
|
|
5669
|
+
blockExplorerUrl?: string | undefined;
|
|
5670
|
+
chain: "stacks";
|
|
5675
5671
|
xverseApiUrl: string;
|
|
5676
5672
|
stacksApiUrl: string;
|
|
5677
5673
|
};
|
|
5678
5674
|
readonly output: {
|
|
5679
5675
|
name: string;
|
|
5680
|
-
chain: "stacks";
|
|
5681
|
-
blockExplorerUrl?: string | undefined;
|
|
5682
5676
|
mode: v.EnumValues<{
|
|
5683
5677
|
readonly mainnet: "mainnet";
|
|
5684
5678
|
readonly testnet: "testnet";
|
|
5685
5679
|
readonly devnet: "devnet";
|
|
5686
5680
|
readonly mocknet: "mocknet";
|
|
5687
5681
|
}>;
|
|
5682
|
+
blockExplorerUrl?: string | undefined;
|
|
5683
|
+
chain: "stacks";
|
|
5688
5684
|
xverseApiUrl: string;
|
|
5689
5685
|
stacksApiUrl: string;
|
|
5690
5686
|
};
|
|
@@ -5724,50 +5720,50 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5724
5720
|
}, "id" | "source">;
|
|
5725
5721
|
readonly "~standard": v.StandardProps<{
|
|
5726
5722
|
name: string;
|
|
5727
|
-
chain: "starknet";
|
|
5728
|
-
blockExplorerUrl?: string | undefined;
|
|
5729
5723
|
mode: string;
|
|
5724
|
+
blockExplorerUrl?: string | undefined;
|
|
5725
|
+
chain: "starknet";
|
|
5730
5726
|
xverseApiUrl: string;
|
|
5731
5727
|
rpcApiUrl: string;
|
|
5732
5728
|
}, {
|
|
5733
5729
|
name: string;
|
|
5734
|
-
chain: "starknet";
|
|
5735
|
-
blockExplorerUrl?: string | undefined;
|
|
5736
5730
|
mode: v.EnumValues<{
|
|
5737
5731
|
readonly mainnet: "mainnet";
|
|
5738
5732
|
readonly sepolia: "sepolia";
|
|
5739
5733
|
}>;
|
|
5734
|
+
blockExplorerUrl?: string | undefined;
|
|
5735
|
+
chain: "starknet";
|
|
5740
5736
|
xverseApiUrl: string;
|
|
5741
5737
|
rpcApiUrl: string;
|
|
5742
5738
|
}>;
|
|
5743
5739
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5744
5740
|
name: string;
|
|
5745
|
-
chain: "starknet";
|
|
5746
|
-
blockExplorerUrl?: string | undefined;
|
|
5747
5741
|
mode: v.EnumValues<{
|
|
5748
5742
|
readonly mainnet: "mainnet";
|
|
5749
5743
|
readonly sepolia: "sepolia";
|
|
5750
5744
|
}>;
|
|
5745
|
+
blockExplorerUrl?: string | undefined;
|
|
5746
|
+
chain: "starknet";
|
|
5751
5747
|
xverseApiUrl: string;
|
|
5752
5748
|
rpcApiUrl: string;
|
|
5753
5749
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5754
5750
|
readonly "~types"?: {
|
|
5755
5751
|
readonly input: {
|
|
5756
5752
|
name: string;
|
|
5757
|
-
chain: "starknet";
|
|
5758
|
-
blockExplorerUrl?: string | undefined;
|
|
5759
5753
|
mode: string;
|
|
5754
|
+
blockExplorerUrl?: string | undefined;
|
|
5755
|
+
chain: "starknet";
|
|
5760
5756
|
xverseApiUrl: string;
|
|
5761
5757
|
rpcApiUrl: string;
|
|
5762
5758
|
};
|
|
5763
5759
|
readonly output: {
|
|
5764
5760
|
name: string;
|
|
5765
|
-
chain: "starknet";
|
|
5766
|
-
blockExplorerUrl?: string | undefined;
|
|
5767
5761
|
mode: v.EnumValues<{
|
|
5768
5762
|
readonly mainnet: "mainnet";
|
|
5769
5763
|
readonly sepolia: "sepolia";
|
|
5770
5764
|
}>;
|
|
5765
|
+
blockExplorerUrl?: string | undefined;
|
|
5766
|
+
chain: "starknet";
|
|
5771
5767
|
xverseApiUrl: string;
|
|
5772
5768
|
rpcApiUrl: string;
|
|
5773
5769
|
};
|
|
@@ -5825,15 +5821,13 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5825
5821
|
}, "id" | "source">;
|
|
5826
5822
|
readonly "~standard": v.StandardProps<{
|
|
5827
5823
|
name: string;
|
|
5828
|
-
chain: "bitcoin";
|
|
5829
|
-
blockExplorerUrl?: string | undefined;
|
|
5830
5824
|
mode: string;
|
|
5825
|
+
blockExplorerUrl?: string | undefined;
|
|
5826
|
+
chain: "bitcoin";
|
|
5831
5827
|
xverseApiUrl: string;
|
|
5832
5828
|
electrsApiUrl: string;
|
|
5833
5829
|
}, {
|
|
5834
5830
|
name: string;
|
|
5835
|
-
chain: "bitcoin";
|
|
5836
|
-
blockExplorerUrl?: string | undefined;
|
|
5837
5831
|
mode: v.EnumValues<{
|
|
5838
5832
|
readonly mainnet: "mainnet";
|
|
5839
5833
|
readonly testnet: "testnet";
|
|
@@ -5841,13 +5835,13 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5841
5835
|
readonly signet: "signet";
|
|
5842
5836
|
readonly regtest: "regtest";
|
|
5843
5837
|
}>;
|
|
5838
|
+
blockExplorerUrl?: string | undefined;
|
|
5839
|
+
chain: "bitcoin";
|
|
5844
5840
|
xverseApiUrl: string;
|
|
5845
5841
|
electrsApiUrl: string;
|
|
5846
5842
|
}>;
|
|
5847
5843
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5848
5844
|
name: string;
|
|
5849
|
-
chain: "bitcoin";
|
|
5850
|
-
blockExplorerUrl?: string | undefined;
|
|
5851
5845
|
mode: v.EnumValues<{
|
|
5852
5846
|
readonly mainnet: "mainnet";
|
|
5853
5847
|
readonly testnet: "testnet";
|
|
@@ -5855,22 +5849,22 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5855
5849
|
readonly signet: "signet";
|
|
5856
5850
|
readonly regtest: "regtest";
|
|
5857
5851
|
}>;
|
|
5852
|
+
blockExplorerUrl?: string | undefined;
|
|
5853
|
+
chain: "bitcoin";
|
|
5858
5854
|
xverseApiUrl: string;
|
|
5859
5855
|
electrsApiUrl: string;
|
|
5860
5856
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5861
5857
|
readonly "~types"?: {
|
|
5862
5858
|
readonly input: {
|
|
5863
5859
|
name: string;
|
|
5864
|
-
chain: "bitcoin";
|
|
5865
|
-
blockExplorerUrl?: string | undefined;
|
|
5866
5860
|
mode: string;
|
|
5861
|
+
blockExplorerUrl?: string | undefined;
|
|
5862
|
+
chain: "bitcoin";
|
|
5867
5863
|
xverseApiUrl: string;
|
|
5868
5864
|
electrsApiUrl: string;
|
|
5869
5865
|
};
|
|
5870
5866
|
readonly output: {
|
|
5871
5867
|
name: string;
|
|
5872
|
-
chain: "bitcoin";
|
|
5873
|
-
blockExplorerUrl?: string | undefined;
|
|
5874
5868
|
mode: v.EnumValues<{
|
|
5875
5869
|
readonly mainnet: "mainnet";
|
|
5876
5870
|
readonly testnet: "testnet";
|
|
@@ -5878,6 +5872,8 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5878
5872
|
readonly signet: "signet";
|
|
5879
5873
|
readonly regtest: "regtest";
|
|
5880
5874
|
}>;
|
|
5875
|
+
blockExplorerUrl?: string | undefined;
|
|
5876
|
+
chain: "bitcoin";
|
|
5881
5877
|
xverseApiUrl: string;
|
|
5882
5878
|
electrsApiUrl: string;
|
|
5883
5879
|
};
|
|
@@ -5915,46 +5911,46 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5915
5911
|
}, "id" | "source">;
|
|
5916
5912
|
readonly "~standard": v.StandardProps<{
|
|
5917
5913
|
name: string;
|
|
5918
|
-
chain: "spark";
|
|
5919
|
-
blockExplorerUrl?: string | undefined;
|
|
5920
5914
|
mode: string;
|
|
5915
|
+
blockExplorerUrl?: string | undefined;
|
|
5916
|
+
chain: "spark";
|
|
5921
5917
|
electrsApiUrl: string;
|
|
5922
5918
|
}, {
|
|
5923
5919
|
name: string;
|
|
5924
|
-
chain: "spark";
|
|
5925
|
-
blockExplorerUrl?: string | undefined;
|
|
5926
5920
|
mode: v.EnumValues<{
|
|
5927
5921
|
readonly mainnet: "mainnet";
|
|
5928
5922
|
readonly regtest: "regtest";
|
|
5929
5923
|
}>;
|
|
5924
|
+
blockExplorerUrl?: string | undefined;
|
|
5925
|
+
chain: "spark";
|
|
5930
5926
|
electrsApiUrl: string;
|
|
5931
5927
|
}>;
|
|
5932
5928
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5933
5929
|
name: string;
|
|
5934
|
-
chain: "spark";
|
|
5935
|
-
blockExplorerUrl?: string | undefined;
|
|
5936
5930
|
mode: v.EnumValues<{
|
|
5937
5931
|
readonly mainnet: "mainnet";
|
|
5938
5932
|
readonly regtest: "regtest";
|
|
5939
5933
|
}>;
|
|
5934
|
+
blockExplorerUrl?: string | undefined;
|
|
5935
|
+
chain: "spark";
|
|
5940
5936
|
electrsApiUrl: string;
|
|
5941
5937
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5942
5938
|
readonly "~types"?: {
|
|
5943
5939
|
readonly input: {
|
|
5944
5940
|
name: string;
|
|
5945
|
-
chain: "spark";
|
|
5946
|
-
blockExplorerUrl?: string | undefined;
|
|
5947
5941
|
mode: string;
|
|
5942
|
+
blockExplorerUrl?: string | undefined;
|
|
5943
|
+
chain: "spark";
|
|
5948
5944
|
electrsApiUrl: string;
|
|
5949
5945
|
};
|
|
5950
5946
|
readonly output: {
|
|
5951
5947
|
name: string;
|
|
5952
|
-
chain: "spark";
|
|
5953
|
-
blockExplorerUrl?: string | undefined;
|
|
5954
5948
|
mode: v.EnumValues<{
|
|
5955
5949
|
readonly mainnet: "mainnet";
|
|
5956
5950
|
readonly regtest: "regtest";
|
|
5957
5951
|
}>;
|
|
5952
|
+
blockExplorerUrl?: string | undefined;
|
|
5953
|
+
chain: "spark";
|
|
5958
5954
|
electrsApiUrl: string;
|
|
5959
5955
|
};
|
|
5960
5956
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -5997,56 +5993,56 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5997
5993
|
}, "id" | "source">;
|
|
5998
5994
|
readonly "~standard": v.StandardProps<{
|
|
5999
5995
|
name: string;
|
|
6000
|
-
chain: "stacks";
|
|
6001
|
-
blockExplorerUrl?: string | undefined;
|
|
6002
5996
|
mode: string;
|
|
5997
|
+
blockExplorerUrl?: string | undefined;
|
|
5998
|
+
chain: "stacks";
|
|
6003
5999
|
xverseApiUrl: string;
|
|
6004
6000
|
stacksApiUrl: string;
|
|
6005
6001
|
}, {
|
|
6006
6002
|
name: string;
|
|
6007
|
-
chain: "stacks";
|
|
6008
|
-
blockExplorerUrl?: string | undefined;
|
|
6009
6003
|
mode: v.EnumValues<{
|
|
6010
6004
|
readonly mainnet: "mainnet";
|
|
6011
6005
|
readonly testnet: "testnet";
|
|
6012
6006
|
readonly devnet: "devnet";
|
|
6013
6007
|
readonly mocknet: "mocknet";
|
|
6014
6008
|
}>;
|
|
6009
|
+
blockExplorerUrl?: string | undefined;
|
|
6010
|
+
chain: "stacks";
|
|
6015
6011
|
xverseApiUrl: string;
|
|
6016
6012
|
stacksApiUrl: string;
|
|
6017
6013
|
}>;
|
|
6018
6014
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
6019
6015
|
name: string;
|
|
6020
|
-
chain: "stacks";
|
|
6021
|
-
blockExplorerUrl?: string | undefined;
|
|
6022
6016
|
mode: v.EnumValues<{
|
|
6023
6017
|
readonly mainnet: "mainnet";
|
|
6024
6018
|
readonly testnet: "testnet";
|
|
6025
6019
|
readonly devnet: "devnet";
|
|
6026
6020
|
readonly mocknet: "mocknet";
|
|
6027
6021
|
}>;
|
|
6022
|
+
blockExplorerUrl?: string | undefined;
|
|
6023
|
+
chain: "stacks";
|
|
6028
6024
|
xverseApiUrl: string;
|
|
6029
6025
|
stacksApiUrl: string;
|
|
6030
6026
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
6031
6027
|
readonly "~types"?: {
|
|
6032
6028
|
readonly input: {
|
|
6033
6029
|
name: string;
|
|
6034
|
-
chain: "stacks";
|
|
6035
|
-
blockExplorerUrl?: string | undefined;
|
|
6036
6030
|
mode: string;
|
|
6031
|
+
blockExplorerUrl?: string | undefined;
|
|
6032
|
+
chain: "stacks";
|
|
6037
6033
|
xverseApiUrl: string;
|
|
6038
6034
|
stacksApiUrl: string;
|
|
6039
6035
|
};
|
|
6040
6036
|
readonly output: {
|
|
6041
6037
|
name: string;
|
|
6042
|
-
chain: "stacks";
|
|
6043
|
-
blockExplorerUrl?: string | undefined;
|
|
6044
6038
|
mode: v.EnumValues<{
|
|
6045
6039
|
readonly mainnet: "mainnet";
|
|
6046
6040
|
readonly testnet: "testnet";
|
|
6047
6041
|
readonly devnet: "devnet";
|
|
6048
6042
|
readonly mocknet: "mocknet";
|
|
6049
6043
|
}>;
|
|
6044
|
+
blockExplorerUrl?: string | undefined;
|
|
6045
|
+
chain: "stacks";
|
|
6050
6046
|
xverseApiUrl: string;
|
|
6051
6047
|
stacksApiUrl: string;
|
|
6052
6048
|
};
|
|
@@ -6086,50 +6082,50 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
6086
6082
|
}, "id" | "source">;
|
|
6087
6083
|
readonly "~standard": v.StandardProps<{
|
|
6088
6084
|
name: string;
|
|
6089
|
-
chain: "starknet";
|
|
6090
|
-
blockExplorerUrl?: string | undefined;
|
|
6091
6085
|
mode: string;
|
|
6086
|
+
blockExplorerUrl?: string | undefined;
|
|
6087
|
+
chain: "starknet";
|
|
6092
6088
|
xverseApiUrl: string;
|
|
6093
6089
|
rpcApiUrl: string;
|
|
6094
6090
|
}, {
|
|
6095
6091
|
name: string;
|
|
6096
|
-
chain: "starknet";
|
|
6097
|
-
blockExplorerUrl?: string | undefined;
|
|
6098
6092
|
mode: v.EnumValues<{
|
|
6099
6093
|
readonly mainnet: "mainnet";
|
|
6100
6094
|
readonly sepolia: "sepolia";
|
|
6101
6095
|
}>;
|
|
6096
|
+
blockExplorerUrl?: string | undefined;
|
|
6097
|
+
chain: "starknet";
|
|
6102
6098
|
xverseApiUrl: string;
|
|
6103
6099
|
rpcApiUrl: string;
|
|
6104
6100
|
}>;
|
|
6105
6101
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
6106
6102
|
name: string;
|
|
6107
|
-
chain: "starknet";
|
|
6108
|
-
blockExplorerUrl?: string | undefined;
|
|
6109
6103
|
mode: v.EnumValues<{
|
|
6110
6104
|
readonly mainnet: "mainnet";
|
|
6111
6105
|
readonly sepolia: "sepolia";
|
|
6112
6106
|
}>;
|
|
6107
|
+
blockExplorerUrl?: string | undefined;
|
|
6108
|
+
chain: "starknet";
|
|
6113
6109
|
xverseApiUrl: string;
|
|
6114
6110
|
rpcApiUrl: string;
|
|
6115
6111
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
6116
6112
|
readonly "~types"?: {
|
|
6117
6113
|
readonly input: {
|
|
6118
6114
|
name: string;
|
|
6119
|
-
chain: "starknet";
|
|
6120
|
-
blockExplorerUrl?: string | undefined;
|
|
6121
6115
|
mode: string;
|
|
6116
|
+
blockExplorerUrl?: string | undefined;
|
|
6117
|
+
chain: "starknet";
|
|
6122
6118
|
xverseApiUrl: string;
|
|
6123
6119
|
rpcApiUrl: string;
|
|
6124
6120
|
};
|
|
6125
6121
|
readonly output: {
|
|
6126
6122
|
name: string;
|
|
6127
|
-
chain: "starknet";
|
|
6128
|
-
blockExplorerUrl?: string | undefined;
|
|
6129
6123
|
mode: v.EnumValues<{
|
|
6130
6124
|
readonly mainnet: "mainnet";
|
|
6131
6125
|
readonly sepolia: "sepolia";
|
|
6132
6126
|
}>;
|
|
6127
|
+
blockExplorerUrl?: string | undefined;
|
|
6128
|
+
chain: "starknet";
|
|
6133
6129
|
xverseApiUrl: string;
|
|
6134
6130
|
rpcApiUrl: string;
|
|
6135
6131
|
};
|
|
@@ -7267,39 +7263,6 @@ declare const walletGetCurrentPermissionsSuccessResponseSchema: v.ObjectSchema<{
|
|
|
7267
7263
|
}, undefined>;
|
|
7268
7264
|
type WalletGetCurrentPermissionsSuccessResponse = v.InferOutput<typeof walletGetCurrentPermissionsSuccessResponseSchema>;
|
|
7269
7265
|
//#endregion
|
|
7270
|
-
//#region src/request/rpc/objects/namespaces/wallet/methods/getEdDsaPublicKey/request.d.ts
|
|
7271
|
-
declare const walletGetEdDsaPublicKeyParamsSchema: v.ObjectSchema<{}, undefined>;
|
|
7272
|
-
type WalletGetEdDsaPublicKeyParams = v.InferOutput<typeof walletGetEdDsaPublicKeyParamsSchema>;
|
|
7273
|
-
declare const walletGetEdDsaPublicKeyRequestSchema: v.ObjectSchema<{
|
|
7274
|
-
readonly id: v.StringSchema<undefined>;
|
|
7275
|
-
readonly method: v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
7276
|
-
readonly params: v.ObjectSchema<{}, undefined>;
|
|
7277
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7278
|
-
}, undefined>;
|
|
7279
|
-
type WalletGetEdDsaPublicKeyRequest = v.InferOutput<typeof walletGetEdDsaPublicKeyRequestSchema>;
|
|
7280
|
-
//#endregion
|
|
7281
|
-
//#region src/request/rpc/objects/namespaces/wallet/methods/getEdDsaPublicKey/response.d.ts
|
|
7282
|
-
declare const walletGetEdDsaPublicKeyResultSchema: v.ObjectSchema<{
|
|
7283
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
7284
|
-
}, undefined>;
|
|
7285
|
-
type WalletGetEdDsaPublicKeyResult = v.InferOutput<typeof walletGetEdDsaPublicKeyResultSchema>;
|
|
7286
|
-
declare const walletGetEdDsaPublicKeySuccessResponseSchema: v.ObjectSchema<{
|
|
7287
|
-
readonly id: v.StringSchema<undefined>;
|
|
7288
|
-
readonly result: v.ObjectSchema<{
|
|
7289
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
7290
|
-
}, undefined>;
|
|
7291
|
-
readonly '~sats-connect-method': v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
7292
|
-
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
7293
|
-
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
7294
|
-
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
7295
|
-
readonly message: v.StringSchema<undefined>;
|
|
7296
|
-
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
7297
|
-
}, undefined>], undefined>, undefined>;
|
|
7298
|
-
}, undefined>, undefined>;
|
|
7299
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7300
|
-
}, undefined>;
|
|
7301
|
-
type WalletGetEdDsaPublicKeySuccessResponse = v.InferOutput<typeof walletGetEdDsaPublicKeySuccessResponseSchema>;
|
|
7302
|
-
//#endregion
|
|
7303
7266
|
//#region src/request/rpc/objects/namespaces/wallet/methods/getNetwork/request.d.ts
|
|
7304
7267
|
declare const walletGetNetworkParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
7305
7268
|
type WalletGetNetworkParams = v.InferOutput<typeof walletGetNetworkParamsSchema>;
|
|
@@ -7907,47 +7870,6 @@ declare const walletRequestPermissionsSuccessResponseSchema: v.ObjectSchema<{
|
|
|
7907
7870
|
}, undefined>;
|
|
7908
7871
|
type WalletRequestPermissionsSuccessResponse = v.InferOutput<typeof walletRequestPermissionsSuccessResponseSchema>;
|
|
7909
7872
|
//#endregion
|
|
7910
|
-
//#region src/request/rpc/objects/namespaces/wallet/methods/sign/request.d.ts
|
|
7911
|
-
declare const walletSignParamsSchema: v.VariantSchema<"algorithm", [v.ObjectSchema<{
|
|
7912
|
-
readonly algorithm: v.LiteralSchema<"EdDSA", undefined>;
|
|
7913
|
-
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
7914
|
-
}, undefined>], undefined>;
|
|
7915
|
-
type WalletSignParams = v.InferOutput<typeof walletSignParamsSchema>;
|
|
7916
|
-
declare const walletSignRequestSchema: v.ObjectSchema<{
|
|
7917
|
-
readonly id: v.StringSchema<undefined>;
|
|
7918
|
-
readonly method: v.LiteralSchema<"wallet_sign", undefined>;
|
|
7919
|
-
readonly params: v.VariantSchema<"algorithm", [v.ObjectSchema<{
|
|
7920
|
-
readonly algorithm: v.LiteralSchema<"EdDSA", undefined>;
|
|
7921
|
-
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
7922
|
-
}, undefined>], undefined>;
|
|
7923
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7924
|
-
}, undefined>;
|
|
7925
|
-
type WalletSignRequest = v.InferOutput<typeof walletSignRequestSchema>;
|
|
7926
|
-
//#endregion
|
|
7927
|
-
//#region src/request/rpc/objects/namespaces/wallet/methods/sign/response.d.ts
|
|
7928
|
-
declare const walletSignResultSchema: v.ObjectSchema<{
|
|
7929
|
-
readonly signature: v.StringSchema<undefined>;
|
|
7930
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
7931
|
-
}, undefined>;
|
|
7932
|
-
type WalletSignResult = v.InferOutput<typeof walletSignResultSchema>;
|
|
7933
|
-
declare const walletSignSuccessResponseSchema: v.ObjectSchema<{
|
|
7934
|
-
readonly id: v.StringSchema<undefined>;
|
|
7935
|
-
readonly result: v.ObjectSchema<{
|
|
7936
|
-
readonly signature: v.StringSchema<undefined>;
|
|
7937
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
7938
|
-
}, undefined>;
|
|
7939
|
-
readonly '~sats-connect-method': v.LiteralSchema<"wallet_sign", undefined>;
|
|
7940
|
-
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
7941
|
-
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
7942
|
-
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
7943
|
-
readonly message: v.StringSchema<undefined>;
|
|
7944
|
-
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
7945
|
-
}, undefined>], undefined>, undefined>;
|
|
7946
|
-
}, undefined>, undefined>;
|
|
7947
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7948
|
-
}, undefined>;
|
|
7949
|
-
type WalletSignSuccessResponse = v.InferOutput<typeof walletSignSuccessResponseSchema>;
|
|
7950
|
-
//#endregion
|
|
7951
7873
|
//#region src/request/rpc/objects/namespaces/wallet/methods/switchNetwork/request.d.ts
|
|
7952
7874
|
declare const walletSwitchNetworkParamsSchema: v.VariantSchema<"selector", [v.ObjectSchema<{
|
|
7953
7875
|
readonly selector: v.LiteralSchema<"id", undefined>;
|
|
@@ -8104,15 +8026,13 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8104
8026
|
}, "id" | "source">;
|
|
8105
8027
|
readonly "~standard": v.StandardProps<{
|
|
8106
8028
|
name: string;
|
|
8107
|
-
chain: "bitcoin";
|
|
8108
|
-
blockExplorerUrl?: string | undefined;
|
|
8109
8029
|
mode: string;
|
|
8030
|
+
blockExplorerUrl?: string | undefined;
|
|
8031
|
+
chain: "bitcoin";
|
|
8110
8032
|
xverseApiUrl: string;
|
|
8111
8033
|
electrsApiUrl: string;
|
|
8112
8034
|
}, {
|
|
8113
8035
|
name: string;
|
|
8114
|
-
chain: "bitcoin";
|
|
8115
|
-
blockExplorerUrl?: string | undefined;
|
|
8116
8036
|
mode: v.EnumValues<{
|
|
8117
8037
|
readonly mainnet: "mainnet";
|
|
8118
8038
|
readonly testnet: "testnet";
|
|
@@ -8120,13 +8040,13 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8120
8040
|
readonly signet: "signet";
|
|
8121
8041
|
readonly regtest: "regtest";
|
|
8122
8042
|
}>;
|
|
8043
|
+
blockExplorerUrl?: string | undefined;
|
|
8044
|
+
chain: "bitcoin";
|
|
8123
8045
|
xverseApiUrl: string;
|
|
8124
8046
|
electrsApiUrl: string;
|
|
8125
8047
|
}>;
|
|
8126
8048
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8127
8049
|
name: string;
|
|
8128
|
-
chain: "bitcoin";
|
|
8129
|
-
blockExplorerUrl?: string | undefined;
|
|
8130
8050
|
mode: v.EnumValues<{
|
|
8131
8051
|
readonly mainnet: "mainnet";
|
|
8132
8052
|
readonly testnet: "testnet";
|
|
@@ -8134,22 +8054,22 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8134
8054
|
readonly signet: "signet";
|
|
8135
8055
|
readonly regtest: "regtest";
|
|
8136
8056
|
}>;
|
|
8057
|
+
blockExplorerUrl?: string | undefined;
|
|
8058
|
+
chain: "bitcoin";
|
|
8137
8059
|
xverseApiUrl: string;
|
|
8138
8060
|
electrsApiUrl: string;
|
|
8139
8061
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8140
8062
|
readonly "~types"?: {
|
|
8141
8063
|
readonly input: {
|
|
8142
8064
|
name: string;
|
|
8143
|
-
chain: "bitcoin";
|
|
8144
|
-
blockExplorerUrl?: string | undefined;
|
|
8145
8065
|
mode: string;
|
|
8066
|
+
blockExplorerUrl?: string | undefined;
|
|
8067
|
+
chain: "bitcoin";
|
|
8146
8068
|
xverseApiUrl: string;
|
|
8147
8069
|
electrsApiUrl: string;
|
|
8148
8070
|
};
|
|
8149
8071
|
readonly output: {
|
|
8150
8072
|
name: string;
|
|
8151
|
-
chain: "bitcoin";
|
|
8152
|
-
blockExplorerUrl?: string | undefined;
|
|
8153
8073
|
mode: v.EnumValues<{
|
|
8154
8074
|
readonly mainnet: "mainnet";
|
|
8155
8075
|
readonly testnet: "testnet";
|
|
@@ -8157,6 +8077,8 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8157
8077
|
readonly signet: "signet";
|
|
8158
8078
|
readonly regtest: "regtest";
|
|
8159
8079
|
}>;
|
|
8080
|
+
blockExplorerUrl?: string | undefined;
|
|
8081
|
+
chain: "bitcoin";
|
|
8160
8082
|
xverseApiUrl: string;
|
|
8161
8083
|
electrsApiUrl: string;
|
|
8162
8084
|
};
|
|
@@ -8228,46 +8150,46 @@ declare const sparkNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8228
8150
|
}, "id" | "source">;
|
|
8229
8151
|
readonly "~standard": v.StandardProps<{
|
|
8230
8152
|
name: string;
|
|
8231
|
-
chain: "spark";
|
|
8232
|
-
blockExplorerUrl?: string | undefined;
|
|
8233
8153
|
mode: string;
|
|
8154
|
+
blockExplorerUrl?: string | undefined;
|
|
8155
|
+
chain: "spark";
|
|
8234
8156
|
electrsApiUrl: string;
|
|
8235
8157
|
}, {
|
|
8236
8158
|
name: string;
|
|
8237
|
-
chain: "spark";
|
|
8238
|
-
blockExplorerUrl?: string | undefined;
|
|
8239
8159
|
mode: v.EnumValues<{
|
|
8240
8160
|
readonly mainnet: "mainnet";
|
|
8241
8161
|
readonly regtest: "regtest";
|
|
8242
8162
|
}>;
|
|
8163
|
+
blockExplorerUrl?: string | undefined;
|
|
8164
|
+
chain: "spark";
|
|
8243
8165
|
electrsApiUrl: string;
|
|
8244
8166
|
}>;
|
|
8245
8167
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8246
8168
|
name: string;
|
|
8247
|
-
chain: "spark";
|
|
8248
|
-
blockExplorerUrl?: string | undefined;
|
|
8249
8169
|
mode: v.EnumValues<{
|
|
8250
8170
|
readonly mainnet: "mainnet";
|
|
8251
8171
|
readonly regtest: "regtest";
|
|
8252
8172
|
}>;
|
|
8173
|
+
blockExplorerUrl?: string | undefined;
|
|
8174
|
+
chain: "spark";
|
|
8253
8175
|
electrsApiUrl: string;
|
|
8254
8176
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8255
8177
|
readonly "~types"?: {
|
|
8256
8178
|
readonly input: {
|
|
8257
8179
|
name: string;
|
|
8258
|
-
chain: "spark";
|
|
8259
|
-
blockExplorerUrl?: string | undefined;
|
|
8260
8180
|
mode: string;
|
|
8181
|
+
blockExplorerUrl?: string | undefined;
|
|
8182
|
+
chain: "spark";
|
|
8261
8183
|
electrsApiUrl: string;
|
|
8262
8184
|
};
|
|
8263
8185
|
readonly output: {
|
|
8264
8186
|
name: string;
|
|
8265
|
-
chain: "spark";
|
|
8266
|
-
blockExplorerUrl?: string | undefined;
|
|
8267
8187
|
mode: v.EnumValues<{
|
|
8268
8188
|
readonly mainnet: "mainnet";
|
|
8269
8189
|
readonly regtest: "regtest";
|
|
8270
8190
|
}>;
|
|
8191
|
+
blockExplorerUrl?: string | undefined;
|
|
8192
|
+
chain: "spark";
|
|
8271
8193
|
electrsApiUrl: string;
|
|
8272
8194
|
};
|
|
8273
8195
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -8344,56 +8266,56 @@ declare const stacksNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8344
8266
|
}, "id" | "source">;
|
|
8345
8267
|
readonly "~standard": v.StandardProps<{
|
|
8346
8268
|
name: string;
|
|
8347
|
-
chain: "stacks";
|
|
8348
|
-
blockExplorerUrl?: string | undefined;
|
|
8349
8269
|
mode: string;
|
|
8270
|
+
blockExplorerUrl?: string | undefined;
|
|
8271
|
+
chain: "stacks";
|
|
8350
8272
|
xverseApiUrl: string;
|
|
8351
8273
|
stacksApiUrl: string;
|
|
8352
8274
|
}, {
|
|
8353
8275
|
name: string;
|
|
8354
|
-
chain: "stacks";
|
|
8355
|
-
blockExplorerUrl?: string | undefined;
|
|
8356
8276
|
mode: v.EnumValues<{
|
|
8357
8277
|
readonly mainnet: "mainnet";
|
|
8358
8278
|
readonly testnet: "testnet";
|
|
8359
8279
|
readonly devnet: "devnet";
|
|
8360
8280
|
readonly mocknet: "mocknet";
|
|
8361
8281
|
}>;
|
|
8282
|
+
blockExplorerUrl?: string | undefined;
|
|
8283
|
+
chain: "stacks";
|
|
8362
8284
|
xverseApiUrl: string;
|
|
8363
8285
|
stacksApiUrl: string;
|
|
8364
8286
|
}>;
|
|
8365
8287
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8366
8288
|
name: string;
|
|
8367
|
-
chain: "stacks";
|
|
8368
|
-
blockExplorerUrl?: string | undefined;
|
|
8369
8289
|
mode: v.EnumValues<{
|
|
8370
8290
|
readonly mainnet: "mainnet";
|
|
8371
8291
|
readonly testnet: "testnet";
|
|
8372
8292
|
readonly devnet: "devnet";
|
|
8373
8293
|
readonly mocknet: "mocknet";
|
|
8374
8294
|
}>;
|
|
8295
|
+
blockExplorerUrl?: string | undefined;
|
|
8296
|
+
chain: "stacks";
|
|
8375
8297
|
xverseApiUrl: string;
|
|
8376
8298
|
stacksApiUrl: string;
|
|
8377
8299
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8378
8300
|
readonly "~types"?: {
|
|
8379
8301
|
readonly input: {
|
|
8380
8302
|
name: string;
|
|
8381
|
-
chain: "stacks";
|
|
8382
|
-
blockExplorerUrl?: string | undefined;
|
|
8383
8303
|
mode: string;
|
|
8304
|
+
blockExplorerUrl?: string | undefined;
|
|
8305
|
+
chain: "stacks";
|
|
8384
8306
|
xverseApiUrl: string;
|
|
8385
8307
|
stacksApiUrl: string;
|
|
8386
8308
|
};
|
|
8387
8309
|
readonly output: {
|
|
8388
8310
|
name: string;
|
|
8389
|
-
chain: "stacks";
|
|
8390
|
-
blockExplorerUrl?: string | undefined;
|
|
8391
8311
|
mode: v.EnumValues<{
|
|
8392
8312
|
readonly mainnet: "mainnet";
|
|
8393
8313
|
readonly testnet: "testnet";
|
|
8394
8314
|
readonly devnet: "devnet";
|
|
8395
8315
|
readonly mocknet: "mocknet";
|
|
8396
8316
|
}>;
|
|
8317
|
+
blockExplorerUrl?: string | undefined;
|
|
8318
|
+
chain: "stacks";
|
|
8397
8319
|
xverseApiUrl: string;
|
|
8398
8320
|
stacksApiUrl: string;
|
|
8399
8321
|
};
|
|
@@ -8467,50 +8389,50 @@ declare const starknetNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8467
8389
|
}, "id" | "source">;
|
|
8468
8390
|
readonly "~standard": v.StandardProps<{
|
|
8469
8391
|
name: string;
|
|
8470
|
-
chain: "starknet";
|
|
8471
|
-
blockExplorerUrl?: string | undefined;
|
|
8472
8392
|
mode: string;
|
|
8393
|
+
blockExplorerUrl?: string | undefined;
|
|
8394
|
+
chain: "starknet";
|
|
8473
8395
|
xverseApiUrl: string;
|
|
8474
8396
|
rpcApiUrl: string;
|
|
8475
8397
|
}, {
|
|
8476
8398
|
name: string;
|
|
8477
|
-
chain: "starknet";
|
|
8478
|
-
blockExplorerUrl?: string | undefined;
|
|
8479
8399
|
mode: v.EnumValues<{
|
|
8480
8400
|
readonly mainnet: "mainnet";
|
|
8481
8401
|
readonly sepolia: "sepolia";
|
|
8482
8402
|
}>;
|
|
8403
|
+
blockExplorerUrl?: string | undefined;
|
|
8404
|
+
chain: "starknet";
|
|
8483
8405
|
xverseApiUrl: string;
|
|
8484
8406
|
rpcApiUrl: string;
|
|
8485
8407
|
}>;
|
|
8486
8408
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8487
8409
|
name: string;
|
|
8488
|
-
chain: "starknet";
|
|
8489
|
-
blockExplorerUrl?: string | undefined;
|
|
8490
8410
|
mode: v.EnumValues<{
|
|
8491
8411
|
readonly mainnet: "mainnet";
|
|
8492
8412
|
readonly sepolia: "sepolia";
|
|
8493
8413
|
}>;
|
|
8414
|
+
blockExplorerUrl?: string | undefined;
|
|
8415
|
+
chain: "starknet";
|
|
8494
8416
|
xverseApiUrl: string;
|
|
8495
8417
|
rpcApiUrl: string;
|
|
8496
8418
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8497
8419
|
readonly "~types"?: {
|
|
8498
8420
|
readonly input: {
|
|
8499
8421
|
name: string;
|
|
8500
|
-
chain: "starknet";
|
|
8501
|
-
blockExplorerUrl?: string | undefined;
|
|
8502
8422
|
mode: string;
|
|
8423
|
+
blockExplorerUrl?: string | undefined;
|
|
8424
|
+
chain: "starknet";
|
|
8503
8425
|
xverseApiUrl: string;
|
|
8504
8426
|
rpcApiUrl: string;
|
|
8505
8427
|
};
|
|
8506
8428
|
readonly output: {
|
|
8507
8429
|
name: string;
|
|
8508
|
-
chain: "starknet";
|
|
8509
|
-
blockExplorerUrl?: string | undefined;
|
|
8510
8430
|
mode: v.EnumValues<{
|
|
8511
8431
|
readonly mainnet: "mainnet";
|
|
8512
8432
|
readonly sepolia: "sepolia";
|
|
8513
8433
|
}>;
|
|
8434
|
+
blockExplorerUrl?: string | undefined;
|
|
8435
|
+
chain: "starknet";
|
|
8514
8436
|
xverseApiUrl: string;
|
|
8515
8437
|
rpcApiUrl: string;
|
|
8516
8438
|
};
|
|
@@ -8590,15 +8512,13 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8590
8512
|
}, "id" | "source">;
|
|
8591
8513
|
readonly "~standard": v.StandardProps<{
|
|
8592
8514
|
name: string;
|
|
8593
|
-
chain: "bitcoin";
|
|
8594
|
-
blockExplorerUrl?: string | undefined;
|
|
8595
8515
|
mode: string;
|
|
8516
|
+
blockExplorerUrl?: string | undefined;
|
|
8517
|
+
chain: "bitcoin";
|
|
8596
8518
|
xverseApiUrl: string;
|
|
8597
8519
|
electrsApiUrl: string;
|
|
8598
8520
|
}, {
|
|
8599
8521
|
name: string;
|
|
8600
|
-
chain: "bitcoin";
|
|
8601
|
-
blockExplorerUrl?: string | undefined;
|
|
8602
8522
|
mode: v.EnumValues<{
|
|
8603
8523
|
readonly mainnet: "mainnet";
|
|
8604
8524
|
readonly testnet: "testnet";
|
|
@@ -8606,13 +8526,13 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8606
8526
|
readonly signet: "signet";
|
|
8607
8527
|
readonly regtest: "regtest";
|
|
8608
8528
|
}>;
|
|
8529
|
+
blockExplorerUrl?: string | undefined;
|
|
8530
|
+
chain: "bitcoin";
|
|
8609
8531
|
xverseApiUrl: string;
|
|
8610
8532
|
electrsApiUrl: string;
|
|
8611
8533
|
}>;
|
|
8612
8534
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8613
8535
|
name: string;
|
|
8614
|
-
chain: "bitcoin";
|
|
8615
|
-
blockExplorerUrl?: string | undefined;
|
|
8616
8536
|
mode: v.EnumValues<{
|
|
8617
8537
|
readonly mainnet: "mainnet";
|
|
8618
8538
|
readonly testnet: "testnet";
|
|
@@ -8620,22 +8540,22 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8620
8540
|
readonly signet: "signet";
|
|
8621
8541
|
readonly regtest: "regtest";
|
|
8622
8542
|
}>;
|
|
8543
|
+
blockExplorerUrl?: string | undefined;
|
|
8544
|
+
chain: "bitcoin";
|
|
8623
8545
|
xverseApiUrl: string;
|
|
8624
8546
|
electrsApiUrl: string;
|
|
8625
8547
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8626
8548
|
readonly "~types"?: {
|
|
8627
8549
|
readonly input: {
|
|
8628
8550
|
name: string;
|
|
8629
|
-
chain: "bitcoin";
|
|
8630
|
-
blockExplorerUrl?: string | undefined;
|
|
8631
8551
|
mode: string;
|
|
8552
|
+
blockExplorerUrl?: string | undefined;
|
|
8553
|
+
chain: "bitcoin";
|
|
8632
8554
|
xverseApiUrl: string;
|
|
8633
8555
|
electrsApiUrl: string;
|
|
8634
8556
|
};
|
|
8635
8557
|
readonly output: {
|
|
8636
8558
|
name: string;
|
|
8637
|
-
chain: "bitcoin";
|
|
8638
|
-
blockExplorerUrl?: string | undefined;
|
|
8639
8559
|
mode: v.EnumValues<{
|
|
8640
8560
|
readonly mainnet: "mainnet";
|
|
8641
8561
|
readonly testnet: "testnet";
|
|
@@ -8643,6 +8563,8 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8643
8563
|
readonly signet: "signet";
|
|
8644
8564
|
readonly regtest: "regtest";
|
|
8645
8565
|
}>;
|
|
8566
|
+
blockExplorerUrl?: string | undefined;
|
|
8567
|
+
chain: "bitcoin";
|
|
8646
8568
|
xverseApiUrl: string;
|
|
8647
8569
|
electrsApiUrl: string;
|
|
8648
8570
|
};
|
|
@@ -8712,46 +8634,46 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8712
8634
|
}, "id" | "source">;
|
|
8713
8635
|
readonly "~standard": v.StandardProps<{
|
|
8714
8636
|
name: string;
|
|
8715
|
-
chain: "spark";
|
|
8716
|
-
blockExplorerUrl?: string | undefined;
|
|
8717
8637
|
mode: string;
|
|
8638
|
+
blockExplorerUrl?: string | undefined;
|
|
8639
|
+
chain: "spark";
|
|
8718
8640
|
electrsApiUrl: string;
|
|
8719
8641
|
}, {
|
|
8720
8642
|
name: string;
|
|
8721
|
-
chain: "spark";
|
|
8722
|
-
blockExplorerUrl?: string | undefined;
|
|
8723
8643
|
mode: v.EnumValues<{
|
|
8724
8644
|
readonly mainnet: "mainnet";
|
|
8725
8645
|
readonly regtest: "regtest";
|
|
8726
8646
|
}>;
|
|
8647
|
+
blockExplorerUrl?: string | undefined;
|
|
8648
|
+
chain: "spark";
|
|
8727
8649
|
electrsApiUrl: string;
|
|
8728
8650
|
}>;
|
|
8729
8651
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8730
8652
|
name: string;
|
|
8731
|
-
chain: "spark";
|
|
8732
|
-
blockExplorerUrl?: string | undefined;
|
|
8733
8653
|
mode: v.EnumValues<{
|
|
8734
8654
|
readonly mainnet: "mainnet";
|
|
8735
8655
|
readonly regtest: "regtest";
|
|
8736
8656
|
}>;
|
|
8657
|
+
blockExplorerUrl?: string | undefined;
|
|
8658
|
+
chain: "spark";
|
|
8737
8659
|
electrsApiUrl: string;
|
|
8738
8660
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8739
8661
|
readonly "~types"?: {
|
|
8740
8662
|
readonly input: {
|
|
8741
8663
|
name: string;
|
|
8742
|
-
chain: "spark";
|
|
8743
|
-
blockExplorerUrl?: string | undefined;
|
|
8744
8664
|
mode: string;
|
|
8665
|
+
blockExplorerUrl?: string | undefined;
|
|
8666
|
+
chain: "spark";
|
|
8745
8667
|
electrsApiUrl: string;
|
|
8746
8668
|
};
|
|
8747
8669
|
readonly output: {
|
|
8748
8670
|
name: string;
|
|
8749
|
-
chain: "spark";
|
|
8750
|
-
blockExplorerUrl?: string | undefined;
|
|
8751
8671
|
mode: v.EnumValues<{
|
|
8752
8672
|
readonly mainnet: "mainnet";
|
|
8753
8673
|
readonly regtest: "regtest";
|
|
8754
8674
|
}>;
|
|
8675
|
+
blockExplorerUrl?: string | undefined;
|
|
8676
|
+
chain: "spark";
|
|
8755
8677
|
electrsApiUrl: string;
|
|
8756
8678
|
};
|
|
8757
8679
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -8826,56 +8748,56 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8826
8748
|
}, "id" | "source">;
|
|
8827
8749
|
readonly "~standard": v.StandardProps<{
|
|
8828
8750
|
name: string;
|
|
8829
|
-
chain: "stacks";
|
|
8830
|
-
blockExplorerUrl?: string | undefined;
|
|
8831
8751
|
mode: string;
|
|
8752
|
+
blockExplorerUrl?: string | undefined;
|
|
8753
|
+
chain: "stacks";
|
|
8832
8754
|
xverseApiUrl: string;
|
|
8833
8755
|
stacksApiUrl: string;
|
|
8834
8756
|
}, {
|
|
8835
8757
|
name: string;
|
|
8836
|
-
chain: "stacks";
|
|
8837
|
-
blockExplorerUrl?: string | undefined;
|
|
8838
8758
|
mode: v.EnumValues<{
|
|
8839
8759
|
readonly mainnet: "mainnet";
|
|
8840
8760
|
readonly testnet: "testnet";
|
|
8841
8761
|
readonly devnet: "devnet";
|
|
8842
8762
|
readonly mocknet: "mocknet";
|
|
8843
8763
|
}>;
|
|
8764
|
+
blockExplorerUrl?: string | undefined;
|
|
8765
|
+
chain: "stacks";
|
|
8844
8766
|
xverseApiUrl: string;
|
|
8845
8767
|
stacksApiUrl: string;
|
|
8846
8768
|
}>;
|
|
8847
8769
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8848
8770
|
name: string;
|
|
8849
|
-
chain: "stacks";
|
|
8850
|
-
blockExplorerUrl?: string | undefined;
|
|
8851
8771
|
mode: v.EnumValues<{
|
|
8852
8772
|
readonly mainnet: "mainnet";
|
|
8853
8773
|
readonly testnet: "testnet";
|
|
8854
8774
|
readonly devnet: "devnet";
|
|
8855
8775
|
readonly mocknet: "mocknet";
|
|
8856
8776
|
}>;
|
|
8777
|
+
blockExplorerUrl?: string | undefined;
|
|
8778
|
+
chain: "stacks";
|
|
8857
8779
|
xverseApiUrl: string;
|
|
8858
8780
|
stacksApiUrl: string;
|
|
8859
8781
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8860
8782
|
readonly "~types"?: {
|
|
8861
8783
|
readonly input: {
|
|
8862
8784
|
name: string;
|
|
8863
|
-
chain: "stacks";
|
|
8864
|
-
blockExplorerUrl?: string | undefined;
|
|
8865
8785
|
mode: string;
|
|
8786
|
+
blockExplorerUrl?: string | undefined;
|
|
8787
|
+
chain: "stacks";
|
|
8866
8788
|
xverseApiUrl: string;
|
|
8867
8789
|
stacksApiUrl: string;
|
|
8868
8790
|
};
|
|
8869
8791
|
readonly output: {
|
|
8870
8792
|
name: string;
|
|
8871
|
-
chain: "stacks";
|
|
8872
|
-
blockExplorerUrl?: string | undefined;
|
|
8873
8793
|
mode: v.EnumValues<{
|
|
8874
8794
|
readonly mainnet: "mainnet";
|
|
8875
8795
|
readonly testnet: "testnet";
|
|
8876
8796
|
readonly devnet: "devnet";
|
|
8877
8797
|
readonly mocknet: "mocknet";
|
|
8878
8798
|
}>;
|
|
8799
|
+
blockExplorerUrl?: string | undefined;
|
|
8800
|
+
chain: "stacks";
|
|
8879
8801
|
xverseApiUrl: string;
|
|
8880
8802
|
stacksApiUrl: string;
|
|
8881
8803
|
};
|
|
@@ -8947,50 +8869,50 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8947
8869
|
}, "id" | "source">;
|
|
8948
8870
|
readonly "~standard": v.StandardProps<{
|
|
8949
8871
|
name: string;
|
|
8950
|
-
chain: "starknet";
|
|
8951
|
-
blockExplorerUrl?: string | undefined;
|
|
8952
8872
|
mode: string;
|
|
8873
|
+
blockExplorerUrl?: string | undefined;
|
|
8874
|
+
chain: "starknet";
|
|
8953
8875
|
xverseApiUrl: string;
|
|
8954
8876
|
rpcApiUrl: string;
|
|
8955
8877
|
}, {
|
|
8956
8878
|
name: string;
|
|
8957
|
-
chain: "starknet";
|
|
8958
|
-
blockExplorerUrl?: string | undefined;
|
|
8959
8879
|
mode: v.EnumValues<{
|
|
8960
8880
|
readonly mainnet: "mainnet";
|
|
8961
8881
|
readonly sepolia: "sepolia";
|
|
8962
8882
|
}>;
|
|
8883
|
+
blockExplorerUrl?: string | undefined;
|
|
8884
|
+
chain: "starknet";
|
|
8963
8885
|
xverseApiUrl: string;
|
|
8964
8886
|
rpcApiUrl: string;
|
|
8965
8887
|
}>;
|
|
8966
8888
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8967
8889
|
name: string;
|
|
8968
|
-
chain: "starknet";
|
|
8969
|
-
blockExplorerUrl?: string | undefined;
|
|
8970
8890
|
mode: v.EnumValues<{
|
|
8971
8891
|
readonly mainnet: "mainnet";
|
|
8972
8892
|
readonly sepolia: "sepolia";
|
|
8973
8893
|
}>;
|
|
8894
|
+
blockExplorerUrl?: string | undefined;
|
|
8895
|
+
chain: "starknet";
|
|
8974
8896
|
xverseApiUrl: string;
|
|
8975
8897
|
rpcApiUrl: string;
|
|
8976
8898
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8977
8899
|
readonly "~types"?: {
|
|
8978
8900
|
readonly input: {
|
|
8979
8901
|
name: string;
|
|
8980
|
-
chain: "starknet";
|
|
8981
|
-
blockExplorerUrl?: string | undefined;
|
|
8982
8902
|
mode: string;
|
|
8903
|
+
blockExplorerUrl?: string | undefined;
|
|
8904
|
+
chain: "starknet";
|
|
8983
8905
|
xverseApiUrl: string;
|
|
8984
8906
|
rpcApiUrl: string;
|
|
8985
8907
|
};
|
|
8986
8908
|
readonly output: {
|
|
8987
8909
|
name: string;
|
|
8988
|
-
chain: "starknet";
|
|
8989
|
-
blockExplorerUrl?: string | undefined;
|
|
8990
8910
|
mode: v.EnumValues<{
|
|
8991
8911
|
readonly mainnet: "mainnet";
|
|
8992
8912
|
readonly sepolia: "sepolia";
|
|
8993
8913
|
}>;
|
|
8914
|
+
blockExplorerUrl?: string | undefined;
|
|
8915
|
+
chain: "starknet";
|
|
8994
8916
|
xverseApiUrl: string;
|
|
8995
8917
|
rpcApiUrl: string;
|
|
8996
8918
|
};
|
|
@@ -9285,8 +9207,6 @@ type WalletRequests = ExactObject<WalletMethod, {
|
|
|
9285
9207
|
[walletMethods.wallet_openReceive]: WalletOpenReceiveRequest;
|
|
9286
9208
|
[walletMethods.wallet_renouncePermissions]: WalletRenouncePermissionsRequest;
|
|
9287
9209
|
[walletMethods.wallet_requestPermissions]: WalletRequestPermissionsRequest;
|
|
9288
|
-
[walletMethods.wallet_sign]: WalletSignRequest;
|
|
9289
|
-
[walletMethods.wallet_getEdDsaPublicKey]: WalletGetEdDsaPublicKeyRequest;
|
|
9290
9210
|
[walletMethods.wallet_switchNetwork]: WalletSwitchNetworkRequest;
|
|
9291
9211
|
}>;
|
|
9292
9212
|
declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
@@ -9361,15 +9281,13 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9361
9281
|
}, "id" | "source">;
|
|
9362
9282
|
readonly "~standard": v.StandardProps<{
|
|
9363
9283
|
name: string;
|
|
9364
|
-
chain: "bitcoin";
|
|
9365
|
-
blockExplorerUrl?: string | undefined;
|
|
9366
9284
|
mode: string;
|
|
9285
|
+
blockExplorerUrl?: string | undefined;
|
|
9286
|
+
chain: "bitcoin";
|
|
9367
9287
|
xverseApiUrl: string;
|
|
9368
9288
|
electrsApiUrl: string;
|
|
9369
9289
|
}, {
|
|
9370
9290
|
name: string;
|
|
9371
|
-
chain: "bitcoin";
|
|
9372
|
-
blockExplorerUrl?: string | undefined;
|
|
9373
9291
|
mode: v.EnumValues<{
|
|
9374
9292
|
readonly mainnet: "mainnet";
|
|
9375
9293
|
readonly testnet: "testnet";
|
|
@@ -9377,13 +9295,13 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9377
9295
|
readonly signet: "signet";
|
|
9378
9296
|
readonly regtest: "regtest";
|
|
9379
9297
|
}>;
|
|
9298
|
+
blockExplorerUrl?: string | undefined;
|
|
9299
|
+
chain: "bitcoin";
|
|
9380
9300
|
xverseApiUrl: string;
|
|
9381
9301
|
electrsApiUrl: string;
|
|
9382
9302
|
}>;
|
|
9383
9303
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9384
9304
|
name: string;
|
|
9385
|
-
chain: "bitcoin";
|
|
9386
|
-
blockExplorerUrl?: string | undefined;
|
|
9387
9305
|
mode: v.EnumValues<{
|
|
9388
9306
|
readonly mainnet: "mainnet";
|
|
9389
9307
|
readonly testnet: "testnet";
|
|
@@ -9391,22 +9309,22 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9391
9309
|
readonly signet: "signet";
|
|
9392
9310
|
readonly regtest: "regtest";
|
|
9393
9311
|
}>;
|
|
9312
|
+
blockExplorerUrl?: string | undefined;
|
|
9313
|
+
chain: "bitcoin";
|
|
9394
9314
|
xverseApiUrl: string;
|
|
9395
9315
|
electrsApiUrl: string;
|
|
9396
9316
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9397
9317
|
readonly "~types"?: {
|
|
9398
9318
|
readonly input: {
|
|
9399
9319
|
name: string;
|
|
9400
|
-
chain: "bitcoin";
|
|
9401
|
-
blockExplorerUrl?: string | undefined;
|
|
9402
9320
|
mode: string;
|
|
9321
|
+
blockExplorerUrl?: string | undefined;
|
|
9322
|
+
chain: "bitcoin";
|
|
9403
9323
|
xverseApiUrl: string;
|
|
9404
9324
|
electrsApiUrl: string;
|
|
9405
9325
|
};
|
|
9406
9326
|
readonly output: {
|
|
9407
9327
|
name: string;
|
|
9408
|
-
chain: "bitcoin";
|
|
9409
|
-
blockExplorerUrl?: string | undefined;
|
|
9410
9328
|
mode: v.EnumValues<{
|
|
9411
9329
|
readonly mainnet: "mainnet";
|
|
9412
9330
|
readonly testnet: "testnet";
|
|
@@ -9414,6 +9332,8 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9414
9332
|
readonly signet: "signet";
|
|
9415
9333
|
readonly regtest: "regtest";
|
|
9416
9334
|
}>;
|
|
9335
|
+
blockExplorerUrl?: string | undefined;
|
|
9336
|
+
chain: "bitcoin";
|
|
9417
9337
|
xverseApiUrl: string;
|
|
9418
9338
|
electrsApiUrl: string;
|
|
9419
9339
|
};
|
|
@@ -9451,46 +9371,46 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9451
9371
|
}, "id" | "source">;
|
|
9452
9372
|
readonly "~standard": v.StandardProps<{
|
|
9453
9373
|
name: string;
|
|
9454
|
-
chain: "spark";
|
|
9455
|
-
blockExplorerUrl?: string | undefined;
|
|
9456
9374
|
mode: string;
|
|
9375
|
+
blockExplorerUrl?: string | undefined;
|
|
9376
|
+
chain: "spark";
|
|
9457
9377
|
electrsApiUrl: string;
|
|
9458
9378
|
}, {
|
|
9459
9379
|
name: string;
|
|
9460
|
-
chain: "spark";
|
|
9461
|
-
blockExplorerUrl?: string | undefined;
|
|
9462
9380
|
mode: v.EnumValues<{
|
|
9463
9381
|
readonly mainnet: "mainnet";
|
|
9464
9382
|
readonly regtest: "regtest";
|
|
9465
9383
|
}>;
|
|
9384
|
+
blockExplorerUrl?: string | undefined;
|
|
9385
|
+
chain: "spark";
|
|
9466
9386
|
electrsApiUrl: string;
|
|
9467
9387
|
}>;
|
|
9468
9388
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9469
9389
|
name: string;
|
|
9470
|
-
chain: "spark";
|
|
9471
|
-
blockExplorerUrl?: string | undefined;
|
|
9472
9390
|
mode: v.EnumValues<{
|
|
9473
9391
|
readonly mainnet: "mainnet";
|
|
9474
9392
|
readonly regtest: "regtest";
|
|
9475
9393
|
}>;
|
|
9394
|
+
blockExplorerUrl?: string | undefined;
|
|
9395
|
+
chain: "spark";
|
|
9476
9396
|
electrsApiUrl: string;
|
|
9477
9397
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9478
9398
|
readonly "~types"?: {
|
|
9479
9399
|
readonly input: {
|
|
9480
9400
|
name: string;
|
|
9481
|
-
chain: "spark";
|
|
9482
|
-
blockExplorerUrl?: string | undefined;
|
|
9483
9401
|
mode: string;
|
|
9402
|
+
blockExplorerUrl?: string | undefined;
|
|
9403
|
+
chain: "spark";
|
|
9484
9404
|
electrsApiUrl: string;
|
|
9485
9405
|
};
|
|
9486
9406
|
readonly output: {
|
|
9487
9407
|
name: string;
|
|
9488
|
-
chain: "spark";
|
|
9489
|
-
blockExplorerUrl?: string | undefined;
|
|
9490
9408
|
mode: v.EnumValues<{
|
|
9491
9409
|
readonly mainnet: "mainnet";
|
|
9492
9410
|
readonly regtest: "regtest";
|
|
9493
9411
|
}>;
|
|
9412
|
+
blockExplorerUrl?: string | undefined;
|
|
9413
|
+
chain: "spark";
|
|
9494
9414
|
electrsApiUrl: string;
|
|
9495
9415
|
};
|
|
9496
9416
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -9533,56 +9453,56 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9533
9453
|
}, "id" | "source">;
|
|
9534
9454
|
readonly "~standard": v.StandardProps<{
|
|
9535
9455
|
name: string;
|
|
9536
|
-
chain: "stacks";
|
|
9537
|
-
blockExplorerUrl?: string | undefined;
|
|
9538
9456
|
mode: string;
|
|
9457
|
+
blockExplorerUrl?: string | undefined;
|
|
9458
|
+
chain: "stacks";
|
|
9539
9459
|
xverseApiUrl: string;
|
|
9540
9460
|
stacksApiUrl: string;
|
|
9541
9461
|
}, {
|
|
9542
9462
|
name: string;
|
|
9543
|
-
chain: "stacks";
|
|
9544
|
-
blockExplorerUrl?: string | undefined;
|
|
9545
9463
|
mode: v.EnumValues<{
|
|
9546
9464
|
readonly mainnet: "mainnet";
|
|
9547
9465
|
readonly testnet: "testnet";
|
|
9548
9466
|
readonly devnet: "devnet";
|
|
9549
9467
|
readonly mocknet: "mocknet";
|
|
9550
9468
|
}>;
|
|
9469
|
+
blockExplorerUrl?: string | undefined;
|
|
9470
|
+
chain: "stacks";
|
|
9551
9471
|
xverseApiUrl: string;
|
|
9552
9472
|
stacksApiUrl: string;
|
|
9553
9473
|
}>;
|
|
9554
9474
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9555
9475
|
name: string;
|
|
9556
|
-
chain: "stacks";
|
|
9557
|
-
blockExplorerUrl?: string | undefined;
|
|
9558
9476
|
mode: v.EnumValues<{
|
|
9559
9477
|
readonly mainnet: "mainnet";
|
|
9560
9478
|
readonly testnet: "testnet";
|
|
9561
9479
|
readonly devnet: "devnet";
|
|
9562
9480
|
readonly mocknet: "mocknet";
|
|
9563
9481
|
}>;
|
|
9482
|
+
blockExplorerUrl?: string | undefined;
|
|
9483
|
+
chain: "stacks";
|
|
9564
9484
|
xverseApiUrl: string;
|
|
9565
9485
|
stacksApiUrl: string;
|
|
9566
9486
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9567
9487
|
readonly "~types"?: {
|
|
9568
9488
|
readonly input: {
|
|
9569
9489
|
name: string;
|
|
9570
|
-
chain: "stacks";
|
|
9571
|
-
blockExplorerUrl?: string | undefined;
|
|
9572
9490
|
mode: string;
|
|
9491
|
+
blockExplorerUrl?: string | undefined;
|
|
9492
|
+
chain: "stacks";
|
|
9573
9493
|
xverseApiUrl: string;
|
|
9574
9494
|
stacksApiUrl: string;
|
|
9575
9495
|
};
|
|
9576
9496
|
readonly output: {
|
|
9577
9497
|
name: string;
|
|
9578
|
-
chain: "stacks";
|
|
9579
|
-
blockExplorerUrl?: string | undefined;
|
|
9580
9498
|
mode: v.EnumValues<{
|
|
9581
9499
|
readonly mainnet: "mainnet";
|
|
9582
9500
|
readonly testnet: "testnet";
|
|
9583
9501
|
readonly devnet: "devnet";
|
|
9584
9502
|
readonly mocknet: "mocknet";
|
|
9585
9503
|
}>;
|
|
9504
|
+
blockExplorerUrl?: string | undefined;
|
|
9505
|
+
chain: "stacks";
|
|
9586
9506
|
xverseApiUrl: string;
|
|
9587
9507
|
stacksApiUrl: string;
|
|
9588
9508
|
};
|
|
@@ -9622,50 +9542,50 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9622
9542
|
}, "id" | "source">;
|
|
9623
9543
|
readonly "~standard": v.StandardProps<{
|
|
9624
9544
|
name: string;
|
|
9625
|
-
chain: "starknet";
|
|
9626
|
-
blockExplorerUrl?: string | undefined;
|
|
9627
9545
|
mode: string;
|
|
9546
|
+
blockExplorerUrl?: string | undefined;
|
|
9547
|
+
chain: "starknet";
|
|
9628
9548
|
xverseApiUrl: string;
|
|
9629
9549
|
rpcApiUrl: string;
|
|
9630
9550
|
}, {
|
|
9631
9551
|
name: string;
|
|
9632
|
-
chain: "starknet";
|
|
9633
|
-
blockExplorerUrl?: string | undefined;
|
|
9634
9552
|
mode: v.EnumValues<{
|
|
9635
9553
|
readonly mainnet: "mainnet";
|
|
9636
9554
|
readonly sepolia: "sepolia";
|
|
9637
9555
|
}>;
|
|
9556
|
+
blockExplorerUrl?: string | undefined;
|
|
9557
|
+
chain: "starknet";
|
|
9638
9558
|
xverseApiUrl: string;
|
|
9639
9559
|
rpcApiUrl: string;
|
|
9640
9560
|
}>;
|
|
9641
9561
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9642
9562
|
name: string;
|
|
9643
|
-
chain: "starknet";
|
|
9644
|
-
blockExplorerUrl?: string | undefined;
|
|
9645
9563
|
mode: v.EnumValues<{
|
|
9646
9564
|
readonly mainnet: "mainnet";
|
|
9647
9565
|
readonly sepolia: "sepolia";
|
|
9648
9566
|
}>;
|
|
9567
|
+
blockExplorerUrl?: string | undefined;
|
|
9568
|
+
chain: "starknet";
|
|
9649
9569
|
xverseApiUrl: string;
|
|
9650
9570
|
rpcApiUrl: string;
|
|
9651
9571
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9652
9572
|
readonly "~types"?: {
|
|
9653
9573
|
readonly input: {
|
|
9654
9574
|
name: string;
|
|
9655
|
-
chain: "starknet";
|
|
9656
|
-
blockExplorerUrl?: string | undefined;
|
|
9657
9575
|
mode: string;
|
|
9576
|
+
blockExplorerUrl?: string | undefined;
|
|
9577
|
+
chain: "starknet";
|
|
9658
9578
|
xverseApiUrl: string;
|
|
9659
9579
|
rpcApiUrl: string;
|
|
9660
9580
|
};
|
|
9661
9581
|
readonly output: {
|
|
9662
9582
|
name: string;
|
|
9663
|
-
chain: "starknet";
|
|
9664
|
-
blockExplorerUrl?: string | undefined;
|
|
9665
9583
|
mode: v.EnumValues<{
|
|
9666
9584
|
readonly mainnet: "mainnet";
|
|
9667
9585
|
readonly sepolia: "sepolia";
|
|
9668
9586
|
}>;
|
|
9587
|
+
blockExplorerUrl?: string | undefined;
|
|
9588
|
+
chain: "starknet";
|
|
9669
9589
|
xverseApiUrl: string;
|
|
9670
9590
|
rpcApiUrl: string;
|
|
9671
9591
|
};
|
|
@@ -9812,19 +9732,6 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9812
9732
|
}, undefined>;
|
|
9813
9733
|
}, undefined>], undefined>, undefined>;
|
|
9814
9734
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9815
|
-
}, undefined>, v.ObjectSchema<{
|
|
9816
|
-
readonly id: v.StringSchema<undefined>;
|
|
9817
|
-
readonly method: v.LiteralSchema<"wallet_sign", undefined>;
|
|
9818
|
-
readonly params: v.VariantSchema<"algorithm", [v.ObjectSchema<{
|
|
9819
|
-
readonly algorithm: v.LiteralSchema<"EdDSA", undefined>;
|
|
9820
|
-
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
9821
|
-
}, undefined>], undefined>;
|
|
9822
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9823
|
-
}, undefined>, v.ObjectSchema<{
|
|
9824
|
-
readonly id: v.StringSchema<undefined>;
|
|
9825
|
-
readonly method: v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
9826
|
-
readonly params: v.ObjectSchema<{}, undefined>;
|
|
9827
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9828
9735
|
}, undefined>, v.ObjectSchema<{
|
|
9829
9736
|
readonly id: v.StringSchema<undefined>;
|
|
9830
9737
|
readonly method: v.LiteralSchema<"wallet_switchNetwork", undefined>;
|
|
@@ -9853,8 +9760,6 @@ type WalletSuccessResponses = ExactObject<WalletMethod, {
|
|
|
9853
9760
|
[walletMethods.wallet_openReceive]: WalletOpenReceiveSuccessResponse;
|
|
9854
9761
|
[walletMethods.wallet_renouncePermissions]: WalletRenouncePermissionsSuccessResponse;
|
|
9855
9762
|
[walletMethods.wallet_requestPermissions]: WalletRequestPermissionsSuccessResponse;
|
|
9856
|
-
[walletMethods.wallet_sign]: WalletSignSuccessResponse;
|
|
9857
|
-
[walletMethods.wallet_getEdDsaPublicKey]: WalletGetEdDsaPublicKeySuccessResponse;
|
|
9858
9763
|
[walletMethods.wallet_switchNetwork]: WalletChangeNetworkSuccessResponse;
|
|
9859
9764
|
}>;
|
|
9860
9765
|
declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method", [v.ObjectSchema<{
|
|
@@ -10641,35 +10546,6 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
|
|
|
10641
10546
|
}, undefined>], undefined>, undefined>;
|
|
10642
10547
|
}, undefined>, undefined>;
|
|
10643
10548
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10644
|
-
}, undefined>, v.ObjectSchema<{
|
|
10645
|
-
readonly id: v.StringSchema<undefined>;
|
|
10646
|
-
readonly result: v.ObjectSchema<{
|
|
10647
|
-
readonly signature: v.StringSchema<undefined>;
|
|
10648
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
10649
|
-
}, undefined>;
|
|
10650
|
-
readonly '~sats-connect-method': v.LiteralSchema<"wallet_sign", undefined>;
|
|
10651
|
-
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
10652
|
-
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
10653
|
-
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
10654
|
-
readonly message: v.StringSchema<undefined>;
|
|
10655
|
-
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
10656
|
-
}, undefined>], undefined>, undefined>;
|
|
10657
|
-
}, undefined>, undefined>;
|
|
10658
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10659
|
-
}, undefined>, v.ObjectSchema<{
|
|
10660
|
-
readonly id: v.StringSchema<undefined>;
|
|
10661
|
-
readonly result: v.ObjectSchema<{
|
|
10662
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
10663
|
-
}, undefined>;
|
|
10664
|
-
readonly '~sats-connect-method': v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
10665
|
-
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
10666
|
-
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
10667
|
-
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
10668
|
-
readonly message: v.StringSchema<undefined>;
|
|
10669
|
-
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
10670
|
-
}, undefined>], undefined>, undefined>;
|
|
10671
|
-
}, undefined>, undefined>;
|
|
10672
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10673
10549
|
}, undefined>, v.ObjectSchema<{
|
|
10674
10550
|
readonly id: v.StringSchema<undefined>;
|
|
10675
10551
|
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
@@ -11306,15 +11182,13 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11306
11182
|
}, "id" | "source">;
|
|
11307
11183
|
readonly "~standard": v.StandardProps<{
|
|
11308
11184
|
name: string;
|
|
11309
|
-
chain: "bitcoin";
|
|
11310
|
-
blockExplorerUrl?: string | undefined;
|
|
11311
11185
|
mode: string;
|
|
11186
|
+
blockExplorerUrl?: string | undefined;
|
|
11187
|
+
chain: "bitcoin";
|
|
11312
11188
|
xverseApiUrl: string;
|
|
11313
11189
|
electrsApiUrl: string;
|
|
11314
11190
|
}, {
|
|
11315
11191
|
name: string;
|
|
11316
|
-
chain: "bitcoin";
|
|
11317
|
-
blockExplorerUrl?: string | undefined;
|
|
11318
11192
|
mode: v.EnumValues<{
|
|
11319
11193
|
readonly mainnet: "mainnet";
|
|
11320
11194
|
readonly testnet: "testnet";
|
|
@@ -11322,13 +11196,13 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11322
11196
|
readonly signet: "signet";
|
|
11323
11197
|
readonly regtest: "regtest";
|
|
11324
11198
|
}>;
|
|
11199
|
+
blockExplorerUrl?: string | undefined;
|
|
11200
|
+
chain: "bitcoin";
|
|
11325
11201
|
xverseApiUrl: string;
|
|
11326
11202
|
electrsApiUrl: string;
|
|
11327
11203
|
}>;
|
|
11328
11204
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11329
11205
|
name: string;
|
|
11330
|
-
chain: "bitcoin";
|
|
11331
|
-
blockExplorerUrl?: string | undefined;
|
|
11332
11206
|
mode: v.EnumValues<{
|
|
11333
11207
|
readonly mainnet: "mainnet";
|
|
11334
11208
|
readonly testnet: "testnet";
|
|
@@ -11336,22 +11210,22 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11336
11210
|
readonly signet: "signet";
|
|
11337
11211
|
readonly regtest: "regtest";
|
|
11338
11212
|
}>;
|
|
11213
|
+
blockExplorerUrl?: string | undefined;
|
|
11214
|
+
chain: "bitcoin";
|
|
11339
11215
|
xverseApiUrl: string;
|
|
11340
11216
|
electrsApiUrl: string;
|
|
11341
11217
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11342
11218
|
readonly "~types"?: {
|
|
11343
11219
|
readonly input: {
|
|
11344
11220
|
name: string;
|
|
11345
|
-
chain: "bitcoin";
|
|
11346
|
-
blockExplorerUrl?: string | undefined;
|
|
11347
11221
|
mode: string;
|
|
11222
|
+
blockExplorerUrl?: string | undefined;
|
|
11223
|
+
chain: "bitcoin";
|
|
11348
11224
|
xverseApiUrl: string;
|
|
11349
11225
|
electrsApiUrl: string;
|
|
11350
11226
|
};
|
|
11351
11227
|
readonly output: {
|
|
11352
11228
|
name: string;
|
|
11353
|
-
chain: "bitcoin";
|
|
11354
|
-
blockExplorerUrl?: string | undefined;
|
|
11355
11229
|
mode: v.EnumValues<{
|
|
11356
11230
|
readonly mainnet: "mainnet";
|
|
11357
11231
|
readonly testnet: "testnet";
|
|
@@ -11359,6 +11233,8 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11359
11233
|
readonly signet: "signet";
|
|
11360
11234
|
readonly regtest: "regtest";
|
|
11361
11235
|
}>;
|
|
11236
|
+
blockExplorerUrl?: string | undefined;
|
|
11237
|
+
chain: "bitcoin";
|
|
11362
11238
|
xverseApiUrl: string;
|
|
11363
11239
|
electrsApiUrl: string;
|
|
11364
11240
|
};
|
|
@@ -11396,46 +11272,46 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11396
11272
|
}, "id" | "source">;
|
|
11397
11273
|
readonly "~standard": v.StandardProps<{
|
|
11398
11274
|
name: string;
|
|
11399
|
-
chain: "spark";
|
|
11400
|
-
blockExplorerUrl?: string | undefined;
|
|
11401
11275
|
mode: string;
|
|
11276
|
+
blockExplorerUrl?: string | undefined;
|
|
11277
|
+
chain: "spark";
|
|
11402
11278
|
electrsApiUrl: string;
|
|
11403
11279
|
}, {
|
|
11404
11280
|
name: string;
|
|
11405
|
-
chain: "spark";
|
|
11406
|
-
blockExplorerUrl?: string | undefined;
|
|
11407
11281
|
mode: v.EnumValues<{
|
|
11408
11282
|
readonly mainnet: "mainnet";
|
|
11409
11283
|
readonly regtest: "regtest";
|
|
11410
11284
|
}>;
|
|
11285
|
+
blockExplorerUrl?: string | undefined;
|
|
11286
|
+
chain: "spark";
|
|
11411
11287
|
electrsApiUrl: string;
|
|
11412
11288
|
}>;
|
|
11413
11289
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11414
11290
|
name: string;
|
|
11415
|
-
chain: "spark";
|
|
11416
|
-
blockExplorerUrl?: string | undefined;
|
|
11417
11291
|
mode: v.EnumValues<{
|
|
11418
11292
|
readonly mainnet: "mainnet";
|
|
11419
11293
|
readonly regtest: "regtest";
|
|
11420
11294
|
}>;
|
|
11295
|
+
blockExplorerUrl?: string | undefined;
|
|
11296
|
+
chain: "spark";
|
|
11421
11297
|
electrsApiUrl: string;
|
|
11422
11298
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11423
11299
|
readonly "~types"?: {
|
|
11424
11300
|
readonly input: {
|
|
11425
11301
|
name: string;
|
|
11426
|
-
chain: "spark";
|
|
11427
|
-
blockExplorerUrl?: string | undefined;
|
|
11428
11302
|
mode: string;
|
|
11303
|
+
blockExplorerUrl?: string | undefined;
|
|
11304
|
+
chain: "spark";
|
|
11429
11305
|
electrsApiUrl: string;
|
|
11430
11306
|
};
|
|
11431
11307
|
readonly output: {
|
|
11432
11308
|
name: string;
|
|
11433
|
-
chain: "spark";
|
|
11434
|
-
blockExplorerUrl?: string | undefined;
|
|
11435
11309
|
mode: v.EnumValues<{
|
|
11436
11310
|
readonly mainnet: "mainnet";
|
|
11437
11311
|
readonly regtest: "regtest";
|
|
11438
11312
|
}>;
|
|
11313
|
+
blockExplorerUrl?: string | undefined;
|
|
11314
|
+
chain: "spark";
|
|
11439
11315
|
electrsApiUrl: string;
|
|
11440
11316
|
};
|
|
11441
11317
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -11478,56 +11354,56 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11478
11354
|
}, "id" | "source">;
|
|
11479
11355
|
readonly "~standard": v.StandardProps<{
|
|
11480
11356
|
name: string;
|
|
11481
|
-
chain: "stacks";
|
|
11482
|
-
blockExplorerUrl?: string | undefined;
|
|
11483
11357
|
mode: string;
|
|
11358
|
+
blockExplorerUrl?: string | undefined;
|
|
11359
|
+
chain: "stacks";
|
|
11484
11360
|
xverseApiUrl: string;
|
|
11485
11361
|
stacksApiUrl: string;
|
|
11486
11362
|
}, {
|
|
11487
11363
|
name: string;
|
|
11488
|
-
chain: "stacks";
|
|
11489
|
-
blockExplorerUrl?: string | undefined;
|
|
11490
11364
|
mode: v.EnumValues<{
|
|
11491
11365
|
readonly mainnet: "mainnet";
|
|
11492
11366
|
readonly testnet: "testnet";
|
|
11493
11367
|
readonly devnet: "devnet";
|
|
11494
11368
|
readonly mocknet: "mocknet";
|
|
11495
11369
|
}>;
|
|
11370
|
+
blockExplorerUrl?: string | undefined;
|
|
11371
|
+
chain: "stacks";
|
|
11496
11372
|
xverseApiUrl: string;
|
|
11497
11373
|
stacksApiUrl: string;
|
|
11498
11374
|
}>;
|
|
11499
11375
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11500
11376
|
name: string;
|
|
11501
|
-
chain: "stacks";
|
|
11502
|
-
blockExplorerUrl?: string | undefined;
|
|
11503
11377
|
mode: v.EnumValues<{
|
|
11504
11378
|
readonly mainnet: "mainnet";
|
|
11505
11379
|
readonly testnet: "testnet";
|
|
11506
11380
|
readonly devnet: "devnet";
|
|
11507
11381
|
readonly mocknet: "mocknet";
|
|
11508
11382
|
}>;
|
|
11383
|
+
blockExplorerUrl?: string | undefined;
|
|
11384
|
+
chain: "stacks";
|
|
11509
11385
|
xverseApiUrl: string;
|
|
11510
11386
|
stacksApiUrl: string;
|
|
11511
11387
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11512
11388
|
readonly "~types"?: {
|
|
11513
11389
|
readonly input: {
|
|
11514
11390
|
name: string;
|
|
11515
|
-
chain: "stacks";
|
|
11516
|
-
blockExplorerUrl?: string | undefined;
|
|
11517
11391
|
mode: string;
|
|
11392
|
+
blockExplorerUrl?: string | undefined;
|
|
11393
|
+
chain: "stacks";
|
|
11518
11394
|
xverseApiUrl: string;
|
|
11519
11395
|
stacksApiUrl: string;
|
|
11520
11396
|
};
|
|
11521
11397
|
readonly output: {
|
|
11522
11398
|
name: string;
|
|
11523
|
-
chain: "stacks";
|
|
11524
|
-
blockExplorerUrl?: string | undefined;
|
|
11525
11399
|
mode: v.EnumValues<{
|
|
11526
11400
|
readonly mainnet: "mainnet";
|
|
11527
11401
|
readonly testnet: "testnet";
|
|
11528
11402
|
readonly devnet: "devnet";
|
|
11529
11403
|
readonly mocknet: "mocknet";
|
|
11530
11404
|
}>;
|
|
11405
|
+
blockExplorerUrl?: string | undefined;
|
|
11406
|
+
chain: "stacks";
|
|
11531
11407
|
xverseApiUrl: string;
|
|
11532
11408
|
stacksApiUrl: string;
|
|
11533
11409
|
};
|
|
@@ -11567,50 +11443,50 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11567
11443
|
}, "id" | "source">;
|
|
11568
11444
|
readonly "~standard": v.StandardProps<{
|
|
11569
11445
|
name: string;
|
|
11570
|
-
chain: "starknet";
|
|
11571
|
-
blockExplorerUrl?: string | undefined;
|
|
11572
11446
|
mode: string;
|
|
11447
|
+
blockExplorerUrl?: string | undefined;
|
|
11448
|
+
chain: "starknet";
|
|
11573
11449
|
xverseApiUrl: string;
|
|
11574
11450
|
rpcApiUrl: string;
|
|
11575
11451
|
}, {
|
|
11576
11452
|
name: string;
|
|
11577
|
-
chain: "starknet";
|
|
11578
|
-
blockExplorerUrl?: string | undefined;
|
|
11579
11453
|
mode: v.EnumValues<{
|
|
11580
11454
|
readonly mainnet: "mainnet";
|
|
11581
11455
|
readonly sepolia: "sepolia";
|
|
11582
11456
|
}>;
|
|
11457
|
+
blockExplorerUrl?: string | undefined;
|
|
11458
|
+
chain: "starknet";
|
|
11583
11459
|
xverseApiUrl: string;
|
|
11584
11460
|
rpcApiUrl: string;
|
|
11585
11461
|
}>;
|
|
11586
11462
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11587
11463
|
name: string;
|
|
11588
|
-
chain: "starknet";
|
|
11589
|
-
blockExplorerUrl?: string | undefined;
|
|
11590
11464
|
mode: v.EnumValues<{
|
|
11591
11465
|
readonly mainnet: "mainnet";
|
|
11592
11466
|
readonly sepolia: "sepolia";
|
|
11593
11467
|
}>;
|
|
11468
|
+
blockExplorerUrl?: string | undefined;
|
|
11469
|
+
chain: "starknet";
|
|
11594
11470
|
xverseApiUrl: string;
|
|
11595
11471
|
rpcApiUrl: string;
|
|
11596
11472
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11597
11473
|
readonly "~types"?: {
|
|
11598
11474
|
readonly input: {
|
|
11599
11475
|
name: string;
|
|
11600
|
-
chain: "starknet";
|
|
11601
|
-
blockExplorerUrl?: string | undefined;
|
|
11602
11476
|
mode: string;
|
|
11477
|
+
blockExplorerUrl?: string | undefined;
|
|
11478
|
+
chain: "starknet";
|
|
11603
11479
|
xverseApiUrl: string;
|
|
11604
11480
|
rpcApiUrl: string;
|
|
11605
11481
|
};
|
|
11606
11482
|
readonly output: {
|
|
11607
11483
|
name: string;
|
|
11608
|
-
chain: "starknet";
|
|
11609
|
-
blockExplorerUrl?: string | undefined;
|
|
11610
11484
|
mode: v.EnumValues<{
|
|
11611
11485
|
readonly mainnet: "mainnet";
|
|
11612
11486
|
readonly sepolia: "sepolia";
|
|
11613
11487
|
}>;
|
|
11488
|
+
blockExplorerUrl?: string | undefined;
|
|
11489
|
+
chain: "starknet";
|
|
11614
11490
|
xverseApiUrl: string;
|
|
11615
11491
|
rpcApiUrl: string;
|
|
11616
11492
|
};
|
|
@@ -11757,19 +11633,6 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11757
11633
|
}, undefined>;
|
|
11758
11634
|
}, undefined>], undefined>, undefined>;
|
|
11759
11635
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11760
|
-
}, undefined>, v.ObjectSchema<{
|
|
11761
|
-
readonly id: v.StringSchema<undefined>;
|
|
11762
|
-
readonly method: v.LiteralSchema<"wallet_sign", undefined>;
|
|
11763
|
-
readonly params: v.VariantSchema<"algorithm", [v.ObjectSchema<{
|
|
11764
|
-
readonly algorithm: v.LiteralSchema<"EdDSA", undefined>;
|
|
11765
|
-
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
11766
|
-
}, undefined>], undefined>;
|
|
11767
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11768
|
-
}, undefined>, v.ObjectSchema<{
|
|
11769
|
-
readonly id: v.StringSchema<undefined>;
|
|
11770
|
-
readonly method: v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
11771
|
-
readonly params: v.ObjectSchema<{}, undefined>;
|
|
11772
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11773
11636
|
}, undefined>, v.ObjectSchema<{
|
|
11774
11637
|
readonly id: v.StringSchema<undefined>;
|
|
11775
11638
|
readonly method: v.LiteralSchema<"wallet_switchNetwork", undefined>;
|
|
@@ -13578,35 +13441,6 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
|
|
|
13578
13441
|
}, undefined>], undefined>, undefined>;
|
|
13579
13442
|
}, undefined>, undefined>;
|
|
13580
13443
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13581
|
-
}, undefined>, v.ObjectSchema<{
|
|
13582
|
-
readonly id: v.StringSchema<undefined>;
|
|
13583
|
-
readonly result: v.ObjectSchema<{
|
|
13584
|
-
readonly signature: v.StringSchema<undefined>;
|
|
13585
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
13586
|
-
}, undefined>;
|
|
13587
|
-
readonly '~sats-connect-method': v.LiteralSchema<"wallet_sign", undefined>;
|
|
13588
|
-
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
13589
|
-
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
13590
|
-
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
13591
|
-
readonly message: v.StringSchema<undefined>;
|
|
13592
|
-
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
13593
|
-
}, undefined>], undefined>, undefined>;
|
|
13594
|
-
}, undefined>, undefined>;
|
|
13595
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13596
|
-
}, undefined>, v.ObjectSchema<{
|
|
13597
|
-
readonly id: v.StringSchema<undefined>;
|
|
13598
|
-
readonly result: v.ObjectSchema<{
|
|
13599
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
13600
|
-
}, undefined>;
|
|
13601
|
-
readonly '~sats-connect-method': v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
13602
|
-
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
13603
|
-
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
13604
|
-
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
13605
|
-
readonly message: v.StringSchema<undefined>;
|
|
13606
|
-
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
13607
|
-
}, undefined>], undefined>, undefined>;
|
|
13608
|
-
}, undefined>, undefined>;
|
|
13609
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13610
13444
|
}, undefined>, v.ObjectSchema<{
|
|
13611
13445
|
readonly id: v.StringSchema<undefined>;
|
|
13612
13446
|
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
@@ -14097,4 +13931,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
14097
13931
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
14098
13932
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
14099
13933
|
//#endregion
|
|
14100
|
-
export { AccountChangeCallback, AccountChangeEvent, AddListener, Address, AddressPurpose, AddressType, type AllResolvedNetworks, BaseAdapter, BitcoinGetAccountsParams, BitcoinGetAccountsRequest, BitcoinGetAccountsResult, BitcoinGetAccountsSuccessResponse, BitcoinGetAddressesParams, BitcoinGetAddressesRequest, BitcoinGetAddressesResult, BitcoinGetAddressesSuccessResponse, BitcoinGetAddressesV2Params, BitcoinGetAddressesV2Request, BitcoinGetAddressesV2Result, BitcoinGetAddressesV2SuccessResponse, BitcoinGetBalanceParams, BitcoinGetBalanceRequest, BitcoinGetBalanceResult, BitcoinGetBalanceSuccessResponse, BitcoinGetBalanceV2Params, BitcoinGetBalanceV2Request, BitcoinGetBalanceV2Result, BitcoinGetBalanceV2SuccessResponse, BitcoinGetInfoParams, BitcoinGetInfoRequest, BitcoinGetInfoResult, BitcoinGetInfoSuccessResponse, BitcoinMethod, BitcoinNetwork, type BitcoinNetworkConfigurationOptions, BitcoinNetworkType, BitcoinProvider, BitcoinRequests, BitcoinSendTransferParams, BitcoinSendTransferRequest, BitcoinSendTransferResult, BitcoinSendTransferSuccessResponse, BitcoinSendTransferV2Params, BitcoinSendTransferV2Request, BitcoinSendTransferV2Result, BitcoinSendTransferV2SuccessResponse, BitcoinSignMessageParams, BitcoinSignMessageRequest, BitcoinSignMessageResult, BitcoinSignMessageSuccessResponse, BitcoinSignMessageV2Params, BitcoinSignMessageV2Request, BitcoinSignMessageV2Result, BitcoinSignMessageV2SuccessResponse, BitcoinSignMultipleMessagesParams, BitcoinSignMultipleMessagesRequest, BitcoinSignMultipleMessagesResult, BitcoinSignMultipleMessagesSuccessResponse, BitcoinSignMultipleMessagesV2Params, BitcoinSignMultipleMessagesV2Request, BitcoinSignMultipleMessagesV2Result, BitcoinSignMultipleMessagesV2SuccessResponse, BitcoinSignPsbtParams, BitcoinSignPsbtRequest, BitcoinSignPsbtResult, BitcoinSignPsbtSuccessResponse, BitcoinSignPsbtV2Params, BitcoinSignPsbtV2Request, BitcoinSignPsbtV2Result, BitcoinSignPsbtV2SuccessResponse, BitcoinSuccessResponses, Capability, CreateInscriptionOptions, CreateInscriptionPayload, CreateInscriptionResponse, CreateRepeatInscriptionsOptions, CreateRepeatInscriptionsPayload, CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, DisconnectCallback, DisconnectEvent, GetAddressOptions, GetAddressPayload, GetAddressResponse, GetCapabilitiesOptions, GetCapabilitiesPayload, GetCapabilitiesResponse, InputToSign, ListenerInfo, MessageSigningProtocols, Method, NetworkChangeCallback, NetworkChangeEvent, NetworkChangeEventV2, type NetworkConfigurationOptions, OrdinalsGetInscriptionsParams, OrdinalsGetInscriptionsRequest, OrdinalsGetInscriptionsResult, OrdinalsGetInscriptionsSuccessResponse, OrdinalsMethod, OrdinalsRequests, OrdinalsSendInscriptionsParams, OrdinalsSendInscriptionsRequest, OrdinalsSendInscriptionsResult, OrdinalsSendInscriptionsSuccessResponse, OrdinalsSuccessResponses, type PermissionWithoutClientId, Provider, ProviderPlatform, PsbtPayload, Recipient, RequestOptions, RequestPayload, RequestReturn, RpcErrorCode, RpcId, RpcRequest, RpcRequestParams, RpcRequests, RpcSuccessResponse, RpcSuccessResponseResult, RpcSuccessResponses, RunesEstimateEtchParams, RunesEstimateEtchRequest, RunesEstimateEtchResult, RunesEstimateEtchSuccessResponse, RunesEstimateMintParams, RunesEstimateMintRequest, RunesEstimateMintResult, RunesEstimateMintSuccessResponse, RunesEstimateRbfOrderParams, RunesEstimateRbfOrderRequest, RunesEstimateRbfOrderResult, RunesEstimateRbfOrderSuccessResponse, RunesEtchParams, RunesEtchRequest, RunesEtchResult, RunesEtchSuccessResponse, RunesGetBalanceParams, RunesGetBalanceRequest, RunesGetBalanceResult, RunesGetBalanceSuccessResponse, RunesGetOrderParams, RunesGetOrderRequest, RunesGetOrderResult, RunesGetOrderSuccessResponse, RunesMethod, RunesMintParams, RunesMintRequest, RunesMintResult, RunesMintSuccessResponse, RunesRbfOrderParams, RunesRbfOrderRequest, RunesRbfOrderResult, RunesRbfOrderSuccessResponse, RunesRequests, RunesSuccessResponses, RunesTransferParams, RunesTransferRequest, RunesTransferResult, RunesTransferSuccessResponse, SatsConnectAdapter, SendBtcTransactionOptions, SendBtcTransactionPayload, SendBtcTransactionResponse, SerializedRecipient, SerializedSendBtcTransactionPayload, SignMessageOptions, SignMessagePayload, SignMessageResponse, SignMultiplePsbtPayload, SignMultipleTransactionOptions, SignMultipleTransactionsPayload, SignMultipleTransactionsResponse, SignTransactionOptions, SignTransactionPayload, SignTransactionResponse, SparkFlashnetClawbackFundsParams, SparkFlashnetClawbackFundsRequest, SparkFlashnetClawbackFundsResult, SparkFlashnetClawbackFundsSuccessResponse, SparkFlashnetExecuteRouteSwapParams, SparkFlashnetExecuteRouteSwapRequest, SparkFlashnetExecuteRouteSwapResult, SparkFlashnetExecuteRouteSwapSuccessResponse, SparkFlashnetExecuteSwapParams, SparkFlashnetExecuteSwapRequest, SparkFlashnetExecuteSwapResult, SparkFlashnetExecuteSwapSuccessResponse, SparkFlashnetGetJwtParams, SparkFlashnetGetJwtRequest, SparkFlashnetGetJwtResult, SparkFlashnetGetJwtSuccessResponse, SparkFlashnetSignIntentParams, SparkFlashnetSignIntentRequest, SparkFlashnetSignIntentResult, SparkFlashnetSignIntentSuccessResponse, SparkFlashnetSignStructuredMessageParams, SparkFlashnetSignStructuredMessageRequest, SparkFlashnetSignStructuredMessageResult, SparkFlashnetSignStructuredMessageSuccessResponse, SparkGetAddressesParams, SparkGetAddressesRequest, SparkGetAddressesResult, SparkGetAddressesSuccessResponse, SparkGetAddressesV2Params, SparkGetAddressesV2Request, SparkGetAddressesV2Result, SparkGetAddressesV2SuccessResponse, SparkGetBalanceParams, SparkGetBalanceRequest, SparkGetBalanceResult, SparkGetBalanceSuccessResponse, SparkGetClawbackEligibleTransfersParams, SparkGetClawbackEligibleTransfersRequest, SparkGetClawbackEligibleTransfersResult, SparkGetClawbackEligibleTransfersSuccessResponse, SparkMethod, type SparkNetworkConfigurationOptions, SparkNetworkType, SparkRequests, SparkSignMessageParams, SparkSignMessageRequest, SparkSignMessageResult, SparkSignMessageSuccessResponse, SparkSuccessResponses, SparkTransferParams, SparkTransferRequest, SparkTransferResult, SparkTransferSuccessResponse, SparkTransferTokenParams, SparkTransferTokenRequest, SparkTransferTokenResult, SparkTransferTokenSuccessResponse, SpecErrorObject, SpecErrorResponse, SpecId, SpecRequest, SpecResponse, SpecSuccessResponse, SpecSuccessWithExtensionsResponse, StacksCallContractParams, StacksCallContractRequest, StacksCallContractResult, StacksCallContractSuccessResponse, StacksDeployContractParams, StacksDeployContractRequest, StacksDeployContractResult, StacksDeployContractSuccessResponse, StacksGetAccountsParams, StacksGetAccountsRequest, StacksGetAccountsResult, StacksGetAccountsSuccessResponse, StacksGetAddressesParams, StacksGetAddressesRequest, StacksGetAddressesResult, StacksGetAddressesSuccessResponse, StacksMethod, type StacksNetworkConfigurationOptions, StacksNetworkType, StacksRequests, StacksSignMessageParams, StacksSignMessageRequest, StacksSignMessageResult, StacksSignMessageSuccessResponse, StacksSignStructuredMessageParams, StacksSignStructuredMessageRequest, StacksSignStructuredMessageResult, StacksSignStructuredMessageSuccessResponse, StacksSignTransactionParams, StacksSignTransactionRequest, StacksSignTransactionResult, StacksSignTransactionSuccessResponse, StacksSignTransactionsParams, StacksSignTransactionsRequest, StacksSignTransactionsResult, StacksSignTransactionsSuccessResponse, StacksSuccessResponses, StacksTransferStxParams, StacksTransferStxRequest, StacksTransferStxResult, StacksTransferStxSuccessResponse, type StarknetNetworkConfigurationOptions, StarknetNetworkType, SupportState, SupportedWallet, WalletAddNetworkParams, WalletAddNetworkRequest, WalletAddNetworkResult, WalletAddNetworkSuccessResponse, WalletAddNetworkV2Params, WalletAddNetworkV2Request, WalletAddNetworkV2Result, WalletAddNetworkV2SuccessResponse, WalletChangeNetworkParams, WalletChangeNetworkRequest, WalletChangeNetworkResult, WalletChangeNetworkSuccessResponse, WalletConnectParams, WalletConnectRequest, WalletConnectResult, WalletConnectSuccessResponse, WalletConnectV2Params, WalletConnectV2Request, WalletConnectV2Result, WalletConnectV2SuccessResponse, WalletDisconnectParams, WalletDisconnectRequest, WalletDisconnectResult, WalletDisconnectSuccessResponse, WalletEvent, WalletGetAccountParams, WalletGetAccountRequest, WalletGetAccountResult, WalletGetAccountSuccessResponse, WalletGetAccountV2Params, WalletGetAccountV2Request, WalletGetAccountV2Result, WalletGetAccountV2SuccessResponse, WalletGetCurrentPermissionsParams, WalletGetCurrentPermissionsRequest, WalletGetCurrentPermissionsResult, WalletGetCurrentPermissionsSuccessResponse, WalletGetEdDsaPublicKeyParams, WalletGetEdDsaPublicKeyRequest, WalletGetEdDsaPublicKeyResult, WalletGetEdDsaPublicKeySuccessResponse, WalletGetNetworkParams, WalletGetNetworkRequest, WalletGetNetworkResult, WalletGetNetworkSuccessResponse, WalletGetNetworksParams, WalletGetNetworksRequest, WalletGetNetworksResult, WalletGetNetworksSuccessResponse, WalletGetWalletTypeParams, WalletGetWalletTypeRequest, WalletGetWalletTypeResult, WalletGetWalletTypeSuccessResponse, WalletMethod, WalletOpenBridgeParams, WalletOpenBridgeRequest, WalletOpenBridgeResult, WalletOpenBridgeSuccessResponse, WalletOpenBuyParams, WalletOpenBuyRequest, WalletOpenBuyResult, WalletOpenBuySuccessResponse, WalletOpenParams, WalletOpenReceiveParams, WalletOpenReceiveRequest, WalletOpenReceiveResult, WalletOpenReceiveSuccessResponse, WalletOpenRequest, WalletOpenResult, WalletOpenSuccessResponse, WalletRenouncePermissionsParams, WalletRenouncePermissionsRequest, WalletRenouncePermissionsResult, WalletRenouncePermissionsSuccessResponse, WalletRequestPermissionsParams, WalletRequestPermissionsRequest, WalletRequestPermissionsResult, WalletRequestPermissionsSuccessResponse, WalletRequests, WalletSignParams, WalletSignRequest, WalletSignResult, WalletSignSuccessResponse, WalletSuccessResponses, WalletSwitchNetworkParams, WalletSwitchNetworkRequest, WalletSwitchNetworkResult, WalletSwitchNetworkSuccessResponse, WalletType, Warning, accountChangeEventName, accountChangeSchema, addListener, addressSchema, allResolvedNetworksSchema, bitcoinGetAccountsParamsSchema, bitcoinGetAccountsRequestSchema, bitcoinGetAccountsResultSchema, bitcoinGetAccountsSuccessResponseSchema, bitcoinGetAddressesParamsSchema, bitcoinGetAddressesRequestSchema, bitcoinGetAddressesResultSchema, bitcoinGetAddressesSuccessResponseSchema, bitcoinGetAddressesV2ParamsSchema, bitcoinGetAddressesV2RequestSchema, bitcoinGetAddressesV2ResultSchema, bitcoinGetAddressesV2SuccessResponseSchema, bitcoinGetBalanceParamsSchema, bitcoinGetBalanceRequestSchema, bitcoinGetBalanceResultSchema, bitcoinGetBalanceSuccessResponseSchema, bitcoinGetBalanceV2ParamsSchema, bitcoinGetBalanceV2RequestSchema, bitcoinGetBalanceV2ResultSchema, bitcoinGetBalanceV2SuccessResponseSchema, bitcoinGetInfoParamsSchema, bitcoinGetInfoRequestSchema, bitcoinGetInfoResultSchema, bitcoinGetInfoSuccessResponseSchema, bitcoinMethods, bitcoinModeToLegacyBitcoinNetworkType, bitcoinNetworkConfigurationOptionsSchema, bitcoinRequestSchema, bitcoinSendTransferParamsSchema, bitcoinSendTransferRequestSchema, bitcoinSendTransferResultSchema, bitcoinSendTransferSuccessResponseSchema, bitcoinSendTransferV2ParamsSchema, bitcoinSendTransferV2RequestSchema, bitcoinSendTransferV2ResultSchema, bitcoinSendTransferV2SuccessResponseSchema, bitcoinSignMessageParamsSchema, bitcoinSignMessageRequestSchema, bitcoinSignMessageResultSchema, bitcoinSignMessageSuccessResponseSchema, bitcoinSignMessageV2ParamsSchema, bitcoinSignMessageV2RequestSchema, bitcoinSignMessageV2ResultSchema, bitcoinSignMessageV2SuccessResponseSchema, bitcoinSignMultipleMessagesParamsSchema, bitcoinSignMultipleMessagesRequestSchema, bitcoinSignMultipleMessagesResultSchema, bitcoinSignMultipleMessagesSuccessResponseSchema, bitcoinSignMultipleMessagesV2ParamsSchema, bitcoinSignMultipleMessagesV2RequestSchema, bitcoinSignMultipleMessagesV2ResultSchema, bitcoinSignMultipleMessagesV2SuccessResponseSchema, bitcoinSignPsbtParamsSchema, bitcoinSignPsbtRequestSchema, bitcoinSignPsbtResultSchema, bitcoinSignPsbtSuccessResponseSchema, bitcoinSignPsbtV2ParamsSchema, bitcoinSignPsbtV2RequestSchema, bitcoinSignPsbtV2ResultSchema, bitcoinSignPsbtV2SuccessResponseSchema, bitcoinSuccessResponseSchema, createInscription, createRepeatInscriptions, createRpcRequest, createRpcSuccessResponse, defaultAdapters, defineMethodSupport, disconnectEventName, disconnectSchema, getAddress, getCapabilities, getDefaultProvider, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, isProviderInstalled, methods, networkChangeEventName, networkChangeEventNameV2, networkChangeSchema, networkChangeV2Schema, networkConfigurationOptionsSchema, ordinalsGetInscriptionsParamsSchema, ordinalsGetInscriptionsRequestSchema, ordinalsGetInscriptionsResultSchema, ordinalsGetInscriptionsSuccessResponseSchema, ordinalsMethods, ordinalsRequestSchema, ordinalsSendInscriptionsParamsSchema, ordinalsSendInscriptionsRequestSchema, ordinalsSendInscriptionsResultSchema, ordinalsSendInscriptionsSuccessResponseSchema, ordinalsSuccessResponseSchema, permissionRequestParamsSchema, removeDefaultProvider, request, rpcIdSchema, rpcRequestSchema, rpcSuccessResponseSchema, runesEstimateEtchParamsSchema, runesEstimateEtchRequestSchema, runesEstimateEtchResultSchema, runesEstimateEtchSuccessResponseSchema, runesEstimateMintParamsSchema, runesEstimateMintRequestSchema, runesEstimateMintResultSchema, runesEstimateMintSuccessResponseSchema, runesEstimateRbfOrderParamsSchema, runesEstimateRbfOrderRequestSchema, runesEstimateRbfOrderResultSchema, runesEstimateRbfOrderSuccessResponseSchema, runesEtchParamsSchema, runesEtchRequestSchema, runesEtchResultSchema, runesEtchSuccessResponseSchema, runesGetBalanceParamsSchema, runesGetBalanceRequestSchema, runesGetBalanceResultSchema, runesGetBalanceSuccessResponseSchema, runesGetOrderParamsSchema, runesGetOrderRequestSchema, runesGetOrderResultSchema, runesGetOrderSuccessResponseSchema, runesMethods, runesMintParamsSchema, runesMintRequestSchema, runesMintResultSchema, runesMintSuccessResponseSchema, runesRbfOrderParamsSchema, runesRbfOrderRequestSchema, runesRbfOrderResultSchema, runesRbfOrderSuccessResponseSchema, runesRequestSchema, runesSuccessResponseSchema, runesTransferParamsSchema, runesTransferRequestSchema, runesTransferResultSchema, runesTransferSuccessResponseSchema, sendBtcTransaction, setDefaultProvider, signMessage, signMultipleTransactions, signTransaction, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackFundsSuccessResponseSchema, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteRouteSwapSuccessResponseSchema, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetExecuteSwapSuccessResponseSchema, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetGetJwtSuccessResponseSchema, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignIntentSuccessResponseSchema, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSignStructuredMessageSuccessResponseSchema, sparkGetAddressesParamsSchema, sparkGetAddressesRequestSchema, sparkGetAddressesResultSchema, sparkGetAddressesSuccessResponseSchema, sparkGetAddressesV2ParamsSchema, sparkGetAddressesV2RequestSchema, sparkGetAddressesV2ResultSchema, sparkGetAddressesV2SuccessResponseSchema, sparkGetBalanceParamsSchema, sparkGetBalanceRequestSchema, sparkGetBalanceResultSchema, sparkGetBalanceSuccessResponseSchema, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkGetClawbackEligibleTransfersSuccessResponseSchema, sparkMethods, sparkModeToLegacySparkNetworkType, sparkNetworkConfigurationOptionsSchema, sparkRequestSchema, sparkSignMessageParamsSchema, sparkSignMessageRequestSchema, sparkSignMessageResultSchema, sparkSignMessageSuccessResponseSchema, sparkSuccessResponseSchema, sparkTransferParamsSchema, sparkTransferRequestSchema, sparkTransferResultSchema, sparkTransferSuccessResponseSchema, sparkTransferTokenParamsSchema, sparkTransferTokenRequestSchema, sparkTransferTokenResultSchema, sparkTransferTokenSuccessResponseSchema, specErrorObjectSchema, specErrorResponseSchema, specIdSchema, specRequestSchema, specResponseSchema, specSuccessResponseSchema, specSuccessWithExtensionsResponseSchema, stacksCallContractParamsSchema, stacksCallContractRequestSchema, stacksCallContractResultSchema, stacksCallContractSuccessResponseSchema, stacksDeployContractParamsSchema, stacksDeployContractRequestSchema, stacksDeployContractResultSchema, stacksDeployContractSuccessResponseSchema, stacksGetAccountsParamsSchema, stacksGetAccountsRequestSchema, stacksGetAccountsResultSchema, stacksGetAccountsSuccessResponseSchema, stacksGetAddressesParamsSchema, stacksGetAddressesRequestSchema, stacksGetAddressesResultSchema, stacksGetAddressesSuccessResponseSchema, stacksMethods, stacksModeToLegacyStacksNetworkType, stacksNetworkConfigurationOptionsSchema, stacksRequestSchema, stacksSignMessageParamsSchema, stacksSignMessageRequestSchema, stacksSignMessageResultSchema, stacksSignMessageSuccessResponseSchema, stacksSignStructuredMessageParamsSchema, stacksSignStructuredMessageRequestSchema, stacksSignStructuredMessageResultSchema, stacksSignStructuredMessageSuccessResponseSchema, stacksSignTransactionParamsSchema, stacksSignTransactionRequestSchema, stacksSignTransactionResultSchema, stacksSignTransactionSuccessResponseSchema, stacksSignTransactionsParamsSchema, stacksSignTransactionsRequestSchema, stacksSignTransactionsResultSchema, stacksSignTransactionsSuccessResponseSchema, stacksSuccessResponseSchema, stacksTransferStxParamsSchema, stacksTransferStxRequestSchema, stacksTransferStxResultSchema, stacksTransferStxSuccessResponseSchema, starknetNetworkConfigurationOptionsSchema, supportStates, walletAddNetworkParamsSchema, walletAddNetworkRequestSchema, walletAddNetworkResultSchema, walletAddNetworkSuccessResponseSchema, walletAddNetworkV2ParamsSchema, walletAddNetworkV2RequestSchema, walletAddNetworkV2ResultSchema, walletAddNetworkV2SuccessResponseSchema, walletChangeNetworkParamsSchema, walletChangeNetworkRequestSchema, walletChangeNetworkResultSchema, walletChangeNetworkSuccessResponseSchema, walletConnectParamsSchema, walletConnectRequestSchema, walletConnectResultSchema, walletConnectSuccessResponseSchema, walletConnectV2ParamsSchema, walletConnectV2RequestSchema, walletConnectV2ResultSchema, walletConnectV2SuccessResponseSchema, walletDisconnectParamsSchema, walletDisconnectRequestSchema, walletDisconnectResultSchema, walletDisconnectSuccessResponseSchema, walletEventSchema, walletGetAccountParamsSchema, walletGetAccountRequestSchema, walletGetAccountResultSchema, walletGetAccountSuccessResponseSchema, walletGetAccountV2ParamsSchema, walletGetAccountV2RequestSchema, walletGetAccountV2ResultSchema, walletGetAccountV2SuccessResponseSchema, walletGetCurrentPermissionsParamsSchema, walletGetCurrentPermissionsRequestSchema, walletGetCurrentPermissionsResultSchema, walletGetCurrentPermissionsSuccessResponseSchema, walletGetEdDsaPublicKeyParamsSchema, walletGetEdDsaPublicKeyRequestSchema, walletGetEdDsaPublicKeyResultSchema, walletGetEdDsaPublicKeySuccessResponseSchema, walletGetNetworkParamsSchema, walletGetNetworkRequestSchema, walletGetNetworkResultSchema, walletGetNetworkSuccessResponseSchema, walletGetNetworksParamsSchema, walletGetNetworksRequestSchema, walletGetNetworksResultSchema, walletGetNetworksSuccessResponseSchema, walletGetWalletTypeParamsSchema, walletGetWalletTypeRequestSchema, walletGetWalletTypeResultSchema, walletGetWalletTypeSuccessResponseSchema, walletMethods, walletOpenBridgeParamsSchema, walletOpenBridgeRequestSchema, walletOpenBridgeResultSchema, walletOpenBridgeSuccessResponseSchema, walletOpenBuyParamsSchema, walletOpenBuyRequestSchema, walletOpenBuyResultSchema, walletOpenBuySuccessResponseSchema, walletOpenParamsSchema, walletOpenReceiveParamsSchema, walletOpenReceiveRequestSchema, walletOpenReceiveResultSchema, walletOpenReceiveSuccessResponseSchema, walletOpenRequestSchema, walletOpenResultSchema, walletOpenSuccessResponseSchema, walletRenouncePermissionsParamsSchema, walletRenouncePermissionsRequestSchema, walletRenouncePermissionsResultSchema, walletRenouncePermissionsSuccessResponseSchema, walletRequestPermissionsParamsSchema, walletRequestPermissionsRequestSchema, walletRequestPermissionsResultSchema, walletRequestPermissionsSuccessResponseSchema, walletRequestSchema, walletSignParamsSchema, walletSignRequestSchema, walletSignResultSchema, walletSignSuccessResponseSchema, walletSuccessResponseSchema, walletSwitchNetworkParamsSchema, walletSwitchNetworkRequestSchema, walletSwitchNetworkResultSchema, walletSwitchNetworkSuccessResponseSchema, walletTypeSchema, walletTypes };
|
|
13934
|
+
export { AccountChangeCallback, AccountChangeEvent, AddListener, Address, AddressPurpose, AddressType, type AllResolvedNetworks, BaseAdapter, BitcoinGetAccountsParams, BitcoinGetAccountsRequest, BitcoinGetAccountsResult, BitcoinGetAccountsSuccessResponse, BitcoinGetAddressesParams, BitcoinGetAddressesRequest, BitcoinGetAddressesResult, BitcoinGetAddressesSuccessResponse, BitcoinGetAddressesV2Params, BitcoinGetAddressesV2Request, BitcoinGetAddressesV2Result, BitcoinGetAddressesV2SuccessResponse, BitcoinGetBalanceParams, BitcoinGetBalanceRequest, BitcoinGetBalanceResult, BitcoinGetBalanceSuccessResponse, BitcoinGetBalanceV2Params, BitcoinGetBalanceV2Request, BitcoinGetBalanceV2Result, BitcoinGetBalanceV2SuccessResponse, BitcoinGetInfoParams, BitcoinGetInfoRequest, BitcoinGetInfoResult, BitcoinGetInfoSuccessResponse, BitcoinMethod, BitcoinNetwork, type BitcoinNetworkConfigurationOptions, BitcoinNetworkType, BitcoinProvider, BitcoinRequests, BitcoinSendTransferParams, BitcoinSendTransferRequest, BitcoinSendTransferResult, BitcoinSendTransferSuccessResponse, BitcoinSendTransferV2Params, BitcoinSendTransferV2Request, BitcoinSendTransferV2Result, BitcoinSendTransferV2SuccessResponse, BitcoinSignMessageParams, BitcoinSignMessageRequest, BitcoinSignMessageResult, BitcoinSignMessageSuccessResponse, BitcoinSignMessageV2Params, BitcoinSignMessageV2Request, BitcoinSignMessageV2Result, BitcoinSignMessageV2SuccessResponse, BitcoinSignMultipleMessagesParams, BitcoinSignMultipleMessagesRequest, BitcoinSignMultipleMessagesResult, BitcoinSignMultipleMessagesSuccessResponse, BitcoinSignMultipleMessagesV2Params, BitcoinSignMultipleMessagesV2Request, BitcoinSignMultipleMessagesV2Result, BitcoinSignMultipleMessagesV2SuccessResponse, BitcoinSignPsbtParams, BitcoinSignPsbtRequest, BitcoinSignPsbtResult, BitcoinSignPsbtSuccessResponse, BitcoinSignPsbtV2Params, BitcoinSignPsbtV2Request, BitcoinSignPsbtV2Result, BitcoinSignPsbtV2SuccessResponse, BitcoinSuccessResponses, Capability, CreateInscriptionOptions, CreateInscriptionPayload, CreateInscriptionResponse, CreateRepeatInscriptionsOptions, CreateRepeatInscriptionsPayload, CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, DisconnectCallback, DisconnectEvent, GetAddressOptions, GetAddressPayload, GetAddressResponse, GetCapabilitiesOptions, GetCapabilitiesPayload, GetCapabilitiesResponse, InputToSign, ListenerInfo, MessageSigningProtocols, Method, NetworkChangeCallback, NetworkChangeEvent, NetworkChangeEventV2, type NetworkConfigurationOptions, OrdinalsGetInscriptionsParams, OrdinalsGetInscriptionsRequest, OrdinalsGetInscriptionsResult, OrdinalsGetInscriptionsSuccessResponse, OrdinalsMethod, OrdinalsRequests, OrdinalsSendInscriptionsParams, OrdinalsSendInscriptionsRequest, OrdinalsSendInscriptionsResult, OrdinalsSendInscriptionsSuccessResponse, OrdinalsSuccessResponses, type PermissionWithoutClientId, Provider, ProviderPlatform, PsbtPayload, Recipient, RequestOptions, RequestPayload, RequestReturn, RpcErrorCode, RpcId, RpcRequest, RpcRequestParams, RpcRequests, RpcSuccessResponse, RpcSuccessResponseResult, RpcSuccessResponses, RunesEstimateEtchParams, RunesEstimateEtchRequest, RunesEstimateEtchResult, RunesEstimateEtchSuccessResponse, RunesEstimateMintParams, RunesEstimateMintRequest, RunesEstimateMintResult, RunesEstimateMintSuccessResponse, RunesEstimateRbfOrderParams, RunesEstimateRbfOrderRequest, RunesEstimateRbfOrderResult, RunesEstimateRbfOrderSuccessResponse, RunesEtchParams, RunesEtchRequest, RunesEtchResult, RunesEtchSuccessResponse, RunesGetBalanceParams, RunesGetBalanceRequest, RunesGetBalanceResult, RunesGetBalanceSuccessResponse, RunesGetOrderParams, RunesGetOrderRequest, RunesGetOrderResult, RunesGetOrderSuccessResponse, RunesMethod, RunesMintParams, RunesMintRequest, RunesMintResult, RunesMintSuccessResponse, RunesRbfOrderParams, RunesRbfOrderRequest, RunesRbfOrderResult, RunesRbfOrderSuccessResponse, RunesRequests, RunesSuccessResponses, RunesTransferParams, RunesTransferRequest, RunesTransferResult, RunesTransferSuccessResponse, SatsConnectAdapter, SendBtcTransactionOptions, SendBtcTransactionPayload, SendBtcTransactionResponse, SerializedRecipient, SerializedSendBtcTransactionPayload, SignMessageOptions, SignMessagePayload, SignMessageResponse, SignMultiplePsbtPayload, SignMultipleTransactionOptions, SignMultipleTransactionsPayload, SignMultipleTransactionsResponse, SignTransactionOptions, SignTransactionPayload, SignTransactionResponse, SparkFlashnetClawbackFundsParams, SparkFlashnetClawbackFundsRequest, SparkFlashnetClawbackFundsResult, SparkFlashnetClawbackFundsSuccessResponse, SparkFlashnetExecuteRouteSwapParams, SparkFlashnetExecuteRouteSwapRequest, SparkFlashnetExecuteRouteSwapResult, SparkFlashnetExecuteRouteSwapSuccessResponse, SparkFlashnetExecuteSwapParams, SparkFlashnetExecuteSwapRequest, SparkFlashnetExecuteSwapResult, SparkFlashnetExecuteSwapSuccessResponse, SparkFlashnetGetJwtParams, SparkFlashnetGetJwtRequest, SparkFlashnetGetJwtResult, SparkFlashnetGetJwtSuccessResponse, SparkFlashnetSignIntentParams, SparkFlashnetSignIntentRequest, SparkFlashnetSignIntentResult, SparkFlashnetSignIntentSuccessResponse, SparkFlashnetSignStructuredMessageParams, SparkFlashnetSignStructuredMessageRequest, SparkFlashnetSignStructuredMessageResult, SparkFlashnetSignStructuredMessageSuccessResponse, SparkGetAddressesParams, SparkGetAddressesRequest, SparkGetAddressesResult, SparkGetAddressesSuccessResponse, SparkGetAddressesV2Params, SparkGetAddressesV2Request, SparkGetAddressesV2Result, SparkGetAddressesV2SuccessResponse, SparkGetBalanceParams, SparkGetBalanceRequest, SparkGetBalanceResult, SparkGetBalanceSuccessResponse, SparkGetClawbackEligibleTransfersParams, SparkGetClawbackEligibleTransfersRequest, SparkGetClawbackEligibleTransfersResult, SparkGetClawbackEligibleTransfersSuccessResponse, SparkMethod, type SparkNetworkConfigurationOptions, SparkNetworkType, SparkRequests, SparkSignMessageParams, SparkSignMessageRequest, SparkSignMessageResult, SparkSignMessageSuccessResponse, SparkSuccessResponses, SparkTransferParams, SparkTransferRequest, SparkTransferResult, SparkTransferSuccessResponse, SparkTransferTokenParams, SparkTransferTokenRequest, SparkTransferTokenResult, SparkTransferTokenSuccessResponse, SpecErrorObject, SpecErrorResponse, SpecId, SpecRequest, SpecResponse, SpecSuccessResponse, SpecSuccessWithExtensionsResponse, StacksCallContractParams, StacksCallContractRequest, StacksCallContractResult, StacksCallContractSuccessResponse, StacksDeployContractParams, StacksDeployContractRequest, StacksDeployContractResult, StacksDeployContractSuccessResponse, StacksGetAccountsParams, StacksGetAccountsRequest, StacksGetAccountsResult, StacksGetAccountsSuccessResponse, StacksGetAddressesParams, StacksGetAddressesRequest, StacksGetAddressesResult, StacksGetAddressesSuccessResponse, StacksMethod, type StacksNetworkConfigurationOptions, StacksNetworkType, StacksRequests, StacksSignMessageParams, StacksSignMessageRequest, StacksSignMessageResult, StacksSignMessageSuccessResponse, StacksSignStructuredMessageParams, StacksSignStructuredMessageRequest, StacksSignStructuredMessageResult, StacksSignStructuredMessageSuccessResponse, StacksSignTransactionParams, StacksSignTransactionRequest, StacksSignTransactionResult, StacksSignTransactionSuccessResponse, StacksSignTransactionsParams, StacksSignTransactionsRequest, StacksSignTransactionsResult, StacksSignTransactionsSuccessResponse, StacksSuccessResponses, StacksTransferStxParams, StacksTransferStxRequest, StacksTransferStxResult, StacksTransferStxSuccessResponse, type StarknetNetworkConfigurationOptions, StarknetNetworkType, SupportState, SupportedWallet, WalletAddNetworkParams, WalletAddNetworkRequest, WalletAddNetworkResult, WalletAddNetworkSuccessResponse, WalletAddNetworkV2Params, WalletAddNetworkV2Request, WalletAddNetworkV2Result, WalletAddNetworkV2SuccessResponse, WalletChangeNetworkParams, WalletChangeNetworkRequest, WalletChangeNetworkResult, WalletChangeNetworkSuccessResponse, WalletConnectParams, WalletConnectRequest, WalletConnectResult, WalletConnectSuccessResponse, WalletConnectV2Params, WalletConnectV2Request, WalletConnectV2Result, WalletConnectV2SuccessResponse, WalletDisconnectParams, WalletDisconnectRequest, WalletDisconnectResult, WalletDisconnectSuccessResponse, WalletEvent, WalletGetAccountParams, WalletGetAccountRequest, WalletGetAccountResult, WalletGetAccountSuccessResponse, WalletGetAccountV2Params, WalletGetAccountV2Request, WalletGetAccountV2Result, WalletGetAccountV2SuccessResponse, WalletGetCurrentPermissionsParams, WalletGetCurrentPermissionsRequest, WalletGetCurrentPermissionsResult, WalletGetCurrentPermissionsSuccessResponse, WalletGetNetworkParams, WalletGetNetworkRequest, WalletGetNetworkResult, WalletGetNetworkSuccessResponse, WalletGetNetworksParams, WalletGetNetworksRequest, WalletGetNetworksResult, WalletGetNetworksSuccessResponse, WalletGetWalletTypeParams, WalletGetWalletTypeRequest, WalletGetWalletTypeResult, WalletGetWalletTypeSuccessResponse, WalletMethod, WalletOpenBridgeParams, WalletOpenBridgeRequest, WalletOpenBridgeResult, WalletOpenBridgeSuccessResponse, WalletOpenBuyParams, WalletOpenBuyRequest, WalletOpenBuyResult, WalletOpenBuySuccessResponse, WalletOpenParams, WalletOpenReceiveParams, WalletOpenReceiveRequest, WalletOpenReceiveResult, WalletOpenReceiveSuccessResponse, WalletOpenRequest, WalletOpenResult, WalletOpenSuccessResponse, WalletRenouncePermissionsParams, WalletRenouncePermissionsRequest, WalletRenouncePermissionsResult, WalletRenouncePermissionsSuccessResponse, WalletRequestPermissionsParams, WalletRequestPermissionsRequest, WalletRequestPermissionsResult, WalletRequestPermissionsSuccessResponse, WalletRequests, WalletSuccessResponses, WalletSwitchNetworkParams, WalletSwitchNetworkRequest, WalletSwitchNetworkResult, WalletSwitchNetworkSuccessResponse, WalletType, Warning, accountChangeEventName, accountChangeSchema, addListener, addressSchema, allResolvedNetworksSchema, bitcoinGetAccountsParamsSchema, bitcoinGetAccountsRequestSchema, bitcoinGetAccountsResultSchema, bitcoinGetAccountsSuccessResponseSchema, bitcoinGetAddressesParamsSchema, bitcoinGetAddressesRequestSchema, bitcoinGetAddressesResultSchema, bitcoinGetAddressesSuccessResponseSchema, bitcoinGetAddressesV2ParamsSchema, bitcoinGetAddressesV2RequestSchema, bitcoinGetAddressesV2ResultSchema, bitcoinGetAddressesV2SuccessResponseSchema, bitcoinGetBalanceParamsSchema, bitcoinGetBalanceRequestSchema, bitcoinGetBalanceResultSchema, bitcoinGetBalanceSuccessResponseSchema, bitcoinGetBalanceV2ParamsSchema, bitcoinGetBalanceV2RequestSchema, bitcoinGetBalanceV2ResultSchema, bitcoinGetBalanceV2SuccessResponseSchema, bitcoinGetInfoParamsSchema, bitcoinGetInfoRequestSchema, bitcoinGetInfoResultSchema, bitcoinGetInfoSuccessResponseSchema, bitcoinMethods, bitcoinModeToLegacyBitcoinNetworkType, bitcoinNetworkConfigurationOptionsSchema, bitcoinRequestSchema, bitcoinSendTransferParamsSchema, bitcoinSendTransferRequestSchema, bitcoinSendTransferResultSchema, bitcoinSendTransferSuccessResponseSchema, bitcoinSendTransferV2ParamsSchema, bitcoinSendTransferV2RequestSchema, bitcoinSendTransferV2ResultSchema, bitcoinSendTransferV2SuccessResponseSchema, bitcoinSignMessageParamsSchema, bitcoinSignMessageRequestSchema, bitcoinSignMessageResultSchema, bitcoinSignMessageSuccessResponseSchema, bitcoinSignMessageV2ParamsSchema, bitcoinSignMessageV2RequestSchema, bitcoinSignMessageV2ResultSchema, bitcoinSignMessageV2SuccessResponseSchema, bitcoinSignMultipleMessagesParamsSchema, bitcoinSignMultipleMessagesRequestSchema, bitcoinSignMultipleMessagesResultSchema, bitcoinSignMultipleMessagesSuccessResponseSchema, bitcoinSignMultipleMessagesV2ParamsSchema, bitcoinSignMultipleMessagesV2RequestSchema, bitcoinSignMultipleMessagesV2ResultSchema, bitcoinSignMultipleMessagesV2SuccessResponseSchema, bitcoinSignPsbtParamsSchema, bitcoinSignPsbtRequestSchema, bitcoinSignPsbtResultSchema, bitcoinSignPsbtSuccessResponseSchema, bitcoinSignPsbtV2ParamsSchema, bitcoinSignPsbtV2RequestSchema, bitcoinSignPsbtV2ResultSchema, bitcoinSignPsbtV2SuccessResponseSchema, bitcoinSuccessResponseSchema, createInscription, createRepeatInscriptions, createRpcRequest, createRpcSuccessResponse, defaultAdapters, defineMethodSupport, disconnectEventName, disconnectSchema, getAddress, getCapabilities, getDefaultProvider, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, isProviderInstalled, methods, networkChangeEventName, networkChangeEventNameV2, networkChangeSchema, networkChangeV2Schema, networkConfigurationOptionsSchema, ordinalsGetInscriptionsParamsSchema, ordinalsGetInscriptionsRequestSchema, ordinalsGetInscriptionsResultSchema, ordinalsGetInscriptionsSuccessResponseSchema, ordinalsMethods, ordinalsRequestSchema, ordinalsSendInscriptionsParamsSchema, ordinalsSendInscriptionsRequestSchema, ordinalsSendInscriptionsResultSchema, ordinalsSendInscriptionsSuccessResponseSchema, ordinalsSuccessResponseSchema, permissionRequestParamsSchema, removeDefaultProvider, request, rpcIdSchema, rpcRequestSchema, rpcSuccessResponseSchema, runesEstimateEtchParamsSchema, runesEstimateEtchRequestSchema, runesEstimateEtchResultSchema, runesEstimateEtchSuccessResponseSchema, runesEstimateMintParamsSchema, runesEstimateMintRequestSchema, runesEstimateMintResultSchema, runesEstimateMintSuccessResponseSchema, runesEstimateRbfOrderParamsSchema, runesEstimateRbfOrderRequestSchema, runesEstimateRbfOrderResultSchema, runesEstimateRbfOrderSuccessResponseSchema, runesEtchParamsSchema, runesEtchRequestSchema, runesEtchResultSchema, runesEtchSuccessResponseSchema, runesGetBalanceParamsSchema, runesGetBalanceRequestSchema, runesGetBalanceResultSchema, runesGetBalanceSuccessResponseSchema, runesGetOrderParamsSchema, runesGetOrderRequestSchema, runesGetOrderResultSchema, runesGetOrderSuccessResponseSchema, runesMethods, runesMintParamsSchema, runesMintRequestSchema, runesMintResultSchema, runesMintSuccessResponseSchema, runesRbfOrderParamsSchema, runesRbfOrderRequestSchema, runesRbfOrderResultSchema, runesRbfOrderSuccessResponseSchema, runesRequestSchema, runesSuccessResponseSchema, runesTransferParamsSchema, runesTransferRequestSchema, runesTransferResultSchema, runesTransferSuccessResponseSchema, sendBtcTransaction, setDefaultProvider, signMessage, signMultipleTransactions, signTransaction, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackFundsSuccessResponseSchema, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteRouteSwapSuccessResponseSchema, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetExecuteSwapSuccessResponseSchema, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetGetJwtSuccessResponseSchema, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignIntentSuccessResponseSchema, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSignStructuredMessageSuccessResponseSchema, sparkGetAddressesParamsSchema, sparkGetAddressesRequestSchema, sparkGetAddressesResultSchema, sparkGetAddressesSuccessResponseSchema, sparkGetAddressesV2ParamsSchema, sparkGetAddressesV2RequestSchema, sparkGetAddressesV2ResultSchema, sparkGetAddressesV2SuccessResponseSchema, sparkGetBalanceParamsSchema, sparkGetBalanceRequestSchema, sparkGetBalanceResultSchema, sparkGetBalanceSuccessResponseSchema, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkGetClawbackEligibleTransfersSuccessResponseSchema, sparkMethods, sparkModeToLegacySparkNetworkType, sparkNetworkConfigurationOptionsSchema, sparkRequestSchema, sparkSignMessageParamsSchema, sparkSignMessageRequestSchema, sparkSignMessageResultSchema, sparkSignMessageSuccessResponseSchema, sparkSuccessResponseSchema, sparkTransferParamsSchema, sparkTransferRequestSchema, sparkTransferResultSchema, sparkTransferSuccessResponseSchema, sparkTransferTokenParamsSchema, sparkTransferTokenRequestSchema, sparkTransferTokenResultSchema, sparkTransferTokenSuccessResponseSchema, specErrorObjectSchema, specErrorResponseSchema, specIdSchema, specRequestSchema, specResponseSchema, specSuccessResponseSchema, specSuccessWithExtensionsResponseSchema, stacksCallContractParamsSchema, stacksCallContractRequestSchema, stacksCallContractResultSchema, stacksCallContractSuccessResponseSchema, stacksDeployContractParamsSchema, stacksDeployContractRequestSchema, stacksDeployContractResultSchema, stacksDeployContractSuccessResponseSchema, stacksGetAccountsParamsSchema, stacksGetAccountsRequestSchema, stacksGetAccountsResultSchema, stacksGetAccountsSuccessResponseSchema, stacksGetAddressesParamsSchema, stacksGetAddressesRequestSchema, stacksGetAddressesResultSchema, stacksGetAddressesSuccessResponseSchema, stacksMethods, stacksModeToLegacyStacksNetworkType, stacksNetworkConfigurationOptionsSchema, stacksRequestSchema, stacksSignMessageParamsSchema, stacksSignMessageRequestSchema, stacksSignMessageResultSchema, stacksSignMessageSuccessResponseSchema, stacksSignStructuredMessageParamsSchema, stacksSignStructuredMessageRequestSchema, stacksSignStructuredMessageResultSchema, stacksSignStructuredMessageSuccessResponseSchema, stacksSignTransactionParamsSchema, stacksSignTransactionRequestSchema, stacksSignTransactionResultSchema, stacksSignTransactionSuccessResponseSchema, stacksSignTransactionsParamsSchema, stacksSignTransactionsRequestSchema, stacksSignTransactionsResultSchema, stacksSignTransactionsSuccessResponseSchema, stacksSuccessResponseSchema, stacksTransferStxParamsSchema, stacksTransferStxRequestSchema, stacksTransferStxResultSchema, stacksTransferStxSuccessResponseSchema, starknetNetworkConfigurationOptionsSchema, supportStates, walletAddNetworkParamsSchema, walletAddNetworkRequestSchema, walletAddNetworkResultSchema, walletAddNetworkSuccessResponseSchema, walletAddNetworkV2ParamsSchema, walletAddNetworkV2RequestSchema, walletAddNetworkV2ResultSchema, walletAddNetworkV2SuccessResponseSchema, walletChangeNetworkParamsSchema, walletChangeNetworkRequestSchema, walletChangeNetworkResultSchema, walletChangeNetworkSuccessResponseSchema, walletConnectParamsSchema, walletConnectRequestSchema, walletConnectResultSchema, walletConnectSuccessResponseSchema, walletConnectV2ParamsSchema, walletConnectV2RequestSchema, walletConnectV2ResultSchema, walletConnectV2SuccessResponseSchema, walletDisconnectParamsSchema, walletDisconnectRequestSchema, walletDisconnectResultSchema, walletDisconnectSuccessResponseSchema, walletEventSchema, walletGetAccountParamsSchema, walletGetAccountRequestSchema, walletGetAccountResultSchema, walletGetAccountSuccessResponseSchema, walletGetAccountV2ParamsSchema, walletGetAccountV2RequestSchema, walletGetAccountV2ResultSchema, walletGetAccountV2SuccessResponseSchema, walletGetCurrentPermissionsParamsSchema, walletGetCurrentPermissionsRequestSchema, walletGetCurrentPermissionsResultSchema, walletGetCurrentPermissionsSuccessResponseSchema, walletGetNetworkParamsSchema, walletGetNetworkRequestSchema, walletGetNetworkResultSchema, walletGetNetworkSuccessResponseSchema, walletGetNetworksParamsSchema, walletGetNetworksRequestSchema, walletGetNetworksResultSchema, walletGetNetworksSuccessResponseSchema, walletGetWalletTypeParamsSchema, walletGetWalletTypeRequestSchema, walletGetWalletTypeResultSchema, walletGetWalletTypeSuccessResponseSchema, walletMethods, walletOpenBridgeParamsSchema, walletOpenBridgeRequestSchema, walletOpenBridgeResultSchema, walletOpenBridgeSuccessResponseSchema, walletOpenBuyParamsSchema, walletOpenBuyRequestSchema, walletOpenBuyResultSchema, walletOpenBuySuccessResponseSchema, walletOpenParamsSchema, walletOpenReceiveParamsSchema, walletOpenReceiveRequestSchema, walletOpenReceiveResultSchema, walletOpenReceiveSuccessResponseSchema, walletOpenRequestSchema, walletOpenResultSchema, walletOpenSuccessResponseSchema, walletRenouncePermissionsParamsSchema, walletRenouncePermissionsRequestSchema, walletRenouncePermissionsResultSchema, walletRenouncePermissionsSuccessResponseSchema, walletRequestPermissionsParamsSchema, walletRequestPermissionsRequestSchema, walletRequestPermissionsResultSchema, walletRequestPermissionsSuccessResponseSchema, walletRequestSchema, walletSuccessResponseSchema, walletSwitchNetworkParamsSchema, walletSwitchNetworkRequestSchema, walletSwitchNetworkResultSchema, walletSwitchNetworkSuccessResponseSchema, walletTypeSchema, walletTypes };
|