@sats-connect/core 0.17.2-ed6c4df → 0.17.3-360f8bb
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.cjs +80 -0
- package/dist/index.d.cts +495 -242
- package/dist/index.d.mts +495 -242
- package/dist/index.mjs +69 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -65,6 +65,7 @@ declare const ordinalsMethods: {
|
|
|
65
65
|
type OrdinalsMethod = (typeof ordinalsMethods)[keyof typeof ordinalsMethods];
|
|
66
66
|
declare const walletMethods: {
|
|
67
67
|
readonly wallet_addNetwork: "wallet_addNetwork";
|
|
68
|
+
readonly wallet_open: "wallet_open";
|
|
68
69
|
readonly wallet_addNetworkV2: "wallet_addNetworkV2";
|
|
69
70
|
readonly wallet_changeNetwork: "wallet_changeNetwork";
|
|
70
71
|
readonly wallet_connect: "wallet_connect";
|
|
@@ -81,11 +82,14 @@ declare const walletMethods: {
|
|
|
81
82
|
readonly wallet_openReceive: "wallet_openReceive";
|
|
82
83
|
readonly wallet_renouncePermissions: "wallet_renouncePermissions";
|
|
83
84
|
readonly wallet_requestPermissions: "wallet_requestPermissions";
|
|
85
|
+
readonly wallet_sign: "wallet_sign";
|
|
86
|
+
readonly wallet_getEdDsaPublicKey: "wallet_getEdDsaPublicKey";
|
|
84
87
|
readonly wallet_switchNetwork: "wallet_switchNetwork";
|
|
85
88
|
};
|
|
86
89
|
type WalletMethod = (typeof walletMethods)[keyof typeof walletMethods];
|
|
87
90
|
declare const methods: {
|
|
88
91
|
wallet_addNetwork: "wallet_addNetwork";
|
|
92
|
+
wallet_open: "wallet_open";
|
|
89
93
|
wallet_addNetworkV2: "wallet_addNetworkV2";
|
|
90
94
|
wallet_changeNetwork: "wallet_changeNetwork";
|
|
91
95
|
wallet_connect: "wallet_connect";
|
|
@@ -102,6 +106,8 @@ declare const methods: {
|
|
|
102
106
|
wallet_openReceive: "wallet_openReceive";
|
|
103
107
|
wallet_renouncePermissions: "wallet_renouncePermissions";
|
|
104
108
|
wallet_requestPermissions: "wallet_requestPermissions";
|
|
109
|
+
wallet_sign: "wallet_sign";
|
|
110
|
+
wallet_getEdDsaPublicKey: "wallet_getEdDsaPublicKey";
|
|
105
111
|
wallet_switchNetwork: "wallet_switchNetwork";
|
|
106
112
|
ord_getInscriptions: "ord_getInscriptions";
|
|
107
113
|
ord_sendInscriptions: "ord_sendInscriptions";
|
|
@@ -5457,15 +5463,13 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5457
5463
|
}, "id" | "source">;
|
|
5458
5464
|
readonly "~standard": v.StandardProps<{
|
|
5459
5465
|
name: string;
|
|
5460
|
-
chain: "bitcoin";
|
|
5461
|
-
blockExplorerUrl?: string | undefined;
|
|
5462
5466
|
mode: string;
|
|
5467
|
+
blockExplorerUrl?: string | undefined;
|
|
5468
|
+
chain: "bitcoin";
|
|
5463
5469
|
xverseApiUrl: string;
|
|
5464
5470
|
electrsApiUrl: string;
|
|
5465
5471
|
}, {
|
|
5466
5472
|
name: string;
|
|
5467
|
-
chain: "bitcoin";
|
|
5468
|
-
blockExplorerUrl?: string | undefined;
|
|
5469
5473
|
mode: v.EnumValues<{
|
|
5470
5474
|
readonly mainnet: "mainnet";
|
|
5471
5475
|
readonly testnet: "testnet";
|
|
@@ -5473,13 +5477,13 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5473
5477
|
readonly signet: "signet";
|
|
5474
5478
|
readonly regtest: "regtest";
|
|
5475
5479
|
}>;
|
|
5480
|
+
blockExplorerUrl?: string | undefined;
|
|
5481
|
+
chain: "bitcoin";
|
|
5476
5482
|
xverseApiUrl: string;
|
|
5477
5483
|
electrsApiUrl: string;
|
|
5478
5484
|
}>;
|
|
5479
5485
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5480
5486
|
name: string;
|
|
5481
|
-
chain: "bitcoin";
|
|
5482
|
-
blockExplorerUrl?: string | undefined;
|
|
5483
5487
|
mode: v.EnumValues<{
|
|
5484
5488
|
readonly mainnet: "mainnet";
|
|
5485
5489
|
readonly testnet: "testnet";
|
|
@@ -5487,22 +5491,22 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5487
5491
|
readonly signet: "signet";
|
|
5488
5492
|
readonly regtest: "regtest";
|
|
5489
5493
|
}>;
|
|
5494
|
+
blockExplorerUrl?: string | undefined;
|
|
5495
|
+
chain: "bitcoin";
|
|
5490
5496
|
xverseApiUrl: string;
|
|
5491
5497
|
electrsApiUrl: string;
|
|
5492
5498
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5493
5499
|
readonly "~types"?: {
|
|
5494
5500
|
readonly input: {
|
|
5495
5501
|
name: string;
|
|
5496
|
-
chain: "bitcoin";
|
|
5497
|
-
blockExplorerUrl?: string | undefined;
|
|
5498
5502
|
mode: string;
|
|
5503
|
+
blockExplorerUrl?: string | undefined;
|
|
5504
|
+
chain: "bitcoin";
|
|
5499
5505
|
xverseApiUrl: string;
|
|
5500
5506
|
electrsApiUrl: string;
|
|
5501
5507
|
};
|
|
5502
5508
|
readonly output: {
|
|
5503
5509
|
name: string;
|
|
5504
|
-
chain: "bitcoin";
|
|
5505
|
-
blockExplorerUrl?: string | undefined;
|
|
5506
5510
|
mode: v.EnumValues<{
|
|
5507
5511
|
readonly mainnet: "mainnet";
|
|
5508
5512
|
readonly testnet: "testnet";
|
|
@@ -5510,6 +5514,8 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5510
5514
|
readonly signet: "signet";
|
|
5511
5515
|
readonly regtest: "regtest";
|
|
5512
5516
|
}>;
|
|
5517
|
+
blockExplorerUrl?: string | undefined;
|
|
5518
|
+
chain: "bitcoin";
|
|
5513
5519
|
xverseApiUrl: string;
|
|
5514
5520
|
electrsApiUrl: string;
|
|
5515
5521
|
};
|
|
@@ -5547,46 +5553,46 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5547
5553
|
}, "id" | "source">;
|
|
5548
5554
|
readonly "~standard": v.StandardProps<{
|
|
5549
5555
|
name: string;
|
|
5550
|
-
chain: "spark";
|
|
5551
|
-
blockExplorerUrl?: string | undefined;
|
|
5552
5556
|
mode: string;
|
|
5557
|
+
blockExplorerUrl?: string | undefined;
|
|
5558
|
+
chain: "spark";
|
|
5553
5559
|
electrsApiUrl: string;
|
|
5554
5560
|
}, {
|
|
5555
5561
|
name: string;
|
|
5556
|
-
chain: "spark";
|
|
5557
|
-
blockExplorerUrl?: string | undefined;
|
|
5558
5562
|
mode: v.EnumValues<{
|
|
5559
5563
|
readonly mainnet: "mainnet";
|
|
5560
5564
|
readonly regtest: "regtest";
|
|
5561
5565
|
}>;
|
|
5566
|
+
blockExplorerUrl?: string | undefined;
|
|
5567
|
+
chain: "spark";
|
|
5562
5568
|
electrsApiUrl: string;
|
|
5563
5569
|
}>;
|
|
5564
5570
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5565
5571
|
name: string;
|
|
5566
|
-
chain: "spark";
|
|
5567
|
-
blockExplorerUrl?: string | undefined;
|
|
5568
5572
|
mode: v.EnumValues<{
|
|
5569
5573
|
readonly mainnet: "mainnet";
|
|
5570
5574
|
readonly regtest: "regtest";
|
|
5571
5575
|
}>;
|
|
5576
|
+
blockExplorerUrl?: string | undefined;
|
|
5577
|
+
chain: "spark";
|
|
5572
5578
|
electrsApiUrl: string;
|
|
5573
5579
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5574
5580
|
readonly "~types"?: {
|
|
5575
5581
|
readonly input: {
|
|
5576
5582
|
name: string;
|
|
5577
|
-
chain: "spark";
|
|
5578
|
-
blockExplorerUrl?: string | undefined;
|
|
5579
5583
|
mode: string;
|
|
5584
|
+
blockExplorerUrl?: string | undefined;
|
|
5585
|
+
chain: "spark";
|
|
5580
5586
|
electrsApiUrl: string;
|
|
5581
5587
|
};
|
|
5582
5588
|
readonly output: {
|
|
5583
5589
|
name: string;
|
|
5584
|
-
chain: "spark";
|
|
5585
|
-
blockExplorerUrl?: string | undefined;
|
|
5586
5590
|
mode: v.EnumValues<{
|
|
5587
5591
|
readonly mainnet: "mainnet";
|
|
5588
5592
|
readonly regtest: "regtest";
|
|
5589
5593
|
}>;
|
|
5594
|
+
blockExplorerUrl?: string | undefined;
|
|
5595
|
+
chain: "spark";
|
|
5590
5596
|
electrsApiUrl: string;
|
|
5591
5597
|
};
|
|
5592
5598
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -5629,56 +5635,56 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5629
5635
|
}, "id" | "source">;
|
|
5630
5636
|
readonly "~standard": v.StandardProps<{
|
|
5631
5637
|
name: string;
|
|
5632
|
-
chain: "stacks";
|
|
5633
|
-
blockExplorerUrl?: string | undefined;
|
|
5634
5638
|
mode: string;
|
|
5639
|
+
blockExplorerUrl?: string | undefined;
|
|
5640
|
+
chain: "stacks";
|
|
5635
5641
|
xverseApiUrl: string;
|
|
5636
5642
|
stacksApiUrl: string;
|
|
5637
5643
|
}, {
|
|
5638
5644
|
name: string;
|
|
5639
|
-
chain: "stacks";
|
|
5640
|
-
blockExplorerUrl?: string | undefined;
|
|
5641
5645
|
mode: v.EnumValues<{
|
|
5642
5646
|
readonly mainnet: "mainnet";
|
|
5643
5647
|
readonly testnet: "testnet";
|
|
5644
5648
|
readonly devnet: "devnet";
|
|
5645
5649
|
readonly mocknet: "mocknet";
|
|
5646
5650
|
}>;
|
|
5651
|
+
blockExplorerUrl?: string | undefined;
|
|
5652
|
+
chain: "stacks";
|
|
5647
5653
|
xverseApiUrl: string;
|
|
5648
5654
|
stacksApiUrl: string;
|
|
5649
5655
|
}>;
|
|
5650
5656
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5651
5657
|
name: string;
|
|
5652
|
-
chain: "stacks";
|
|
5653
|
-
blockExplorerUrl?: string | undefined;
|
|
5654
5658
|
mode: v.EnumValues<{
|
|
5655
5659
|
readonly mainnet: "mainnet";
|
|
5656
5660
|
readonly testnet: "testnet";
|
|
5657
5661
|
readonly devnet: "devnet";
|
|
5658
5662
|
readonly mocknet: "mocknet";
|
|
5659
5663
|
}>;
|
|
5664
|
+
blockExplorerUrl?: string | undefined;
|
|
5665
|
+
chain: "stacks";
|
|
5660
5666
|
xverseApiUrl: string;
|
|
5661
5667
|
stacksApiUrl: string;
|
|
5662
5668
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5663
5669
|
readonly "~types"?: {
|
|
5664
5670
|
readonly input: {
|
|
5665
5671
|
name: string;
|
|
5666
|
-
chain: "stacks";
|
|
5667
|
-
blockExplorerUrl?: string | undefined;
|
|
5668
5672
|
mode: string;
|
|
5673
|
+
blockExplorerUrl?: string | undefined;
|
|
5674
|
+
chain: "stacks";
|
|
5669
5675
|
xverseApiUrl: string;
|
|
5670
5676
|
stacksApiUrl: string;
|
|
5671
5677
|
};
|
|
5672
5678
|
readonly output: {
|
|
5673
5679
|
name: string;
|
|
5674
|
-
chain: "stacks";
|
|
5675
|
-
blockExplorerUrl?: string | undefined;
|
|
5676
5680
|
mode: v.EnumValues<{
|
|
5677
5681
|
readonly mainnet: "mainnet";
|
|
5678
5682
|
readonly testnet: "testnet";
|
|
5679
5683
|
readonly devnet: "devnet";
|
|
5680
5684
|
readonly mocknet: "mocknet";
|
|
5681
5685
|
}>;
|
|
5686
|
+
blockExplorerUrl?: string | undefined;
|
|
5687
|
+
chain: "stacks";
|
|
5682
5688
|
xverseApiUrl: string;
|
|
5683
5689
|
stacksApiUrl: string;
|
|
5684
5690
|
};
|
|
@@ -5718,50 +5724,50 @@ declare const walletAddNetworkV2ParamsSchema: v.ObjectSchema<{
|
|
|
5718
5724
|
}, "id" | "source">;
|
|
5719
5725
|
readonly "~standard": v.StandardProps<{
|
|
5720
5726
|
name: string;
|
|
5721
|
-
chain: "starknet";
|
|
5722
|
-
blockExplorerUrl?: string | undefined;
|
|
5723
5727
|
mode: string;
|
|
5728
|
+
blockExplorerUrl?: string | undefined;
|
|
5729
|
+
chain: "starknet";
|
|
5724
5730
|
xverseApiUrl: string;
|
|
5725
5731
|
rpcApiUrl: string;
|
|
5726
5732
|
}, {
|
|
5727
5733
|
name: string;
|
|
5728
|
-
chain: "starknet";
|
|
5729
|
-
blockExplorerUrl?: string | undefined;
|
|
5730
5734
|
mode: v.EnumValues<{
|
|
5731
5735
|
readonly mainnet: "mainnet";
|
|
5732
5736
|
readonly sepolia: "sepolia";
|
|
5733
5737
|
}>;
|
|
5738
|
+
blockExplorerUrl?: string | undefined;
|
|
5739
|
+
chain: "starknet";
|
|
5734
5740
|
xverseApiUrl: string;
|
|
5735
5741
|
rpcApiUrl: string;
|
|
5736
5742
|
}>;
|
|
5737
5743
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5738
5744
|
name: string;
|
|
5739
|
-
chain: "starknet";
|
|
5740
|
-
blockExplorerUrl?: string | undefined;
|
|
5741
5745
|
mode: v.EnumValues<{
|
|
5742
5746
|
readonly mainnet: "mainnet";
|
|
5743
5747
|
readonly sepolia: "sepolia";
|
|
5744
5748
|
}>;
|
|
5749
|
+
blockExplorerUrl?: string | undefined;
|
|
5750
|
+
chain: "starknet";
|
|
5745
5751
|
xverseApiUrl: string;
|
|
5746
5752
|
rpcApiUrl: string;
|
|
5747
5753
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5748
5754
|
readonly "~types"?: {
|
|
5749
5755
|
readonly input: {
|
|
5750
5756
|
name: string;
|
|
5751
|
-
chain: "starknet";
|
|
5752
|
-
blockExplorerUrl?: string | undefined;
|
|
5753
5757
|
mode: string;
|
|
5758
|
+
blockExplorerUrl?: string | undefined;
|
|
5759
|
+
chain: "starknet";
|
|
5754
5760
|
xverseApiUrl: string;
|
|
5755
5761
|
rpcApiUrl: string;
|
|
5756
5762
|
};
|
|
5757
5763
|
readonly output: {
|
|
5758
5764
|
name: string;
|
|
5759
|
-
chain: "starknet";
|
|
5760
|
-
blockExplorerUrl?: string | undefined;
|
|
5761
5765
|
mode: v.EnumValues<{
|
|
5762
5766
|
readonly mainnet: "mainnet";
|
|
5763
5767
|
readonly sepolia: "sepolia";
|
|
5764
5768
|
}>;
|
|
5769
|
+
blockExplorerUrl?: string | undefined;
|
|
5770
|
+
chain: "starknet";
|
|
5765
5771
|
xverseApiUrl: string;
|
|
5766
5772
|
rpcApiUrl: string;
|
|
5767
5773
|
};
|
|
@@ -5819,15 +5825,13 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5819
5825
|
}, "id" | "source">;
|
|
5820
5826
|
readonly "~standard": v.StandardProps<{
|
|
5821
5827
|
name: string;
|
|
5822
|
-
chain: "bitcoin";
|
|
5823
|
-
blockExplorerUrl?: string | undefined;
|
|
5824
5828
|
mode: string;
|
|
5829
|
+
blockExplorerUrl?: string | undefined;
|
|
5830
|
+
chain: "bitcoin";
|
|
5825
5831
|
xverseApiUrl: string;
|
|
5826
5832
|
electrsApiUrl: string;
|
|
5827
5833
|
}, {
|
|
5828
5834
|
name: string;
|
|
5829
|
-
chain: "bitcoin";
|
|
5830
|
-
blockExplorerUrl?: string | undefined;
|
|
5831
5835
|
mode: v.EnumValues<{
|
|
5832
5836
|
readonly mainnet: "mainnet";
|
|
5833
5837
|
readonly testnet: "testnet";
|
|
@@ -5835,13 +5839,13 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5835
5839
|
readonly signet: "signet";
|
|
5836
5840
|
readonly regtest: "regtest";
|
|
5837
5841
|
}>;
|
|
5842
|
+
blockExplorerUrl?: string | undefined;
|
|
5843
|
+
chain: "bitcoin";
|
|
5838
5844
|
xverseApiUrl: string;
|
|
5839
5845
|
electrsApiUrl: string;
|
|
5840
5846
|
}>;
|
|
5841
5847
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5842
5848
|
name: string;
|
|
5843
|
-
chain: "bitcoin";
|
|
5844
|
-
blockExplorerUrl?: string | undefined;
|
|
5845
5849
|
mode: v.EnumValues<{
|
|
5846
5850
|
readonly mainnet: "mainnet";
|
|
5847
5851
|
readonly testnet: "testnet";
|
|
@@ -5849,22 +5853,22 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5849
5853
|
readonly signet: "signet";
|
|
5850
5854
|
readonly regtest: "regtest";
|
|
5851
5855
|
}>;
|
|
5856
|
+
blockExplorerUrl?: string | undefined;
|
|
5857
|
+
chain: "bitcoin";
|
|
5852
5858
|
xverseApiUrl: string;
|
|
5853
5859
|
electrsApiUrl: string;
|
|
5854
5860
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5855
5861
|
readonly "~types"?: {
|
|
5856
5862
|
readonly input: {
|
|
5857
5863
|
name: string;
|
|
5858
|
-
chain: "bitcoin";
|
|
5859
|
-
blockExplorerUrl?: string | undefined;
|
|
5860
5864
|
mode: string;
|
|
5865
|
+
blockExplorerUrl?: string | undefined;
|
|
5866
|
+
chain: "bitcoin";
|
|
5861
5867
|
xverseApiUrl: string;
|
|
5862
5868
|
electrsApiUrl: string;
|
|
5863
5869
|
};
|
|
5864
5870
|
readonly output: {
|
|
5865
5871
|
name: string;
|
|
5866
|
-
chain: "bitcoin";
|
|
5867
|
-
blockExplorerUrl?: string | undefined;
|
|
5868
5872
|
mode: v.EnumValues<{
|
|
5869
5873
|
readonly mainnet: "mainnet";
|
|
5870
5874
|
readonly testnet: "testnet";
|
|
@@ -5872,6 +5876,8 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5872
5876
|
readonly signet: "signet";
|
|
5873
5877
|
readonly regtest: "regtest";
|
|
5874
5878
|
}>;
|
|
5879
|
+
blockExplorerUrl?: string | undefined;
|
|
5880
|
+
chain: "bitcoin";
|
|
5875
5881
|
xverseApiUrl: string;
|
|
5876
5882
|
electrsApiUrl: string;
|
|
5877
5883
|
};
|
|
@@ -5909,46 +5915,46 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5909
5915
|
}, "id" | "source">;
|
|
5910
5916
|
readonly "~standard": v.StandardProps<{
|
|
5911
5917
|
name: string;
|
|
5912
|
-
chain: "spark";
|
|
5913
|
-
blockExplorerUrl?: string | undefined;
|
|
5914
5918
|
mode: string;
|
|
5919
|
+
blockExplorerUrl?: string | undefined;
|
|
5920
|
+
chain: "spark";
|
|
5915
5921
|
electrsApiUrl: string;
|
|
5916
5922
|
}, {
|
|
5917
5923
|
name: string;
|
|
5918
|
-
chain: "spark";
|
|
5919
|
-
blockExplorerUrl?: string | undefined;
|
|
5920
5924
|
mode: v.EnumValues<{
|
|
5921
5925
|
readonly mainnet: "mainnet";
|
|
5922
5926
|
readonly regtest: "regtest";
|
|
5923
5927
|
}>;
|
|
5928
|
+
blockExplorerUrl?: string | undefined;
|
|
5929
|
+
chain: "spark";
|
|
5924
5930
|
electrsApiUrl: string;
|
|
5925
5931
|
}>;
|
|
5926
5932
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
5927
5933
|
name: string;
|
|
5928
|
-
chain: "spark";
|
|
5929
|
-
blockExplorerUrl?: string | undefined;
|
|
5930
5934
|
mode: v.EnumValues<{
|
|
5931
5935
|
readonly mainnet: "mainnet";
|
|
5932
5936
|
readonly regtest: "regtest";
|
|
5933
5937
|
}>;
|
|
5938
|
+
blockExplorerUrl?: string | undefined;
|
|
5939
|
+
chain: "spark";
|
|
5934
5940
|
electrsApiUrl: string;
|
|
5935
5941
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
5936
5942
|
readonly "~types"?: {
|
|
5937
5943
|
readonly input: {
|
|
5938
5944
|
name: string;
|
|
5939
|
-
chain: "spark";
|
|
5940
|
-
blockExplorerUrl?: string | undefined;
|
|
5941
5945
|
mode: string;
|
|
5946
|
+
blockExplorerUrl?: string | undefined;
|
|
5947
|
+
chain: "spark";
|
|
5942
5948
|
electrsApiUrl: string;
|
|
5943
5949
|
};
|
|
5944
5950
|
readonly output: {
|
|
5945
5951
|
name: string;
|
|
5946
|
-
chain: "spark";
|
|
5947
|
-
blockExplorerUrl?: string | undefined;
|
|
5948
5952
|
mode: v.EnumValues<{
|
|
5949
5953
|
readonly mainnet: "mainnet";
|
|
5950
5954
|
readonly regtest: "regtest";
|
|
5951
5955
|
}>;
|
|
5956
|
+
blockExplorerUrl?: string | undefined;
|
|
5957
|
+
chain: "spark";
|
|
5952
5958
|
electrsApiUrl: string;
|
|
5953
5959
|
};
|
|
5954
5960
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -5991,56 +5997,56 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
5991
5997
|
}, "id" | "source">;
|
|
5992
5998
|
readonly "~standard": v.StandardProps<{
|
|
5993
5999
|
name: string;
|
|
5994
|
-
chain: "stacks";
|
|
5995
|
-
blockExplorerUrl?: string | undefined;
|
|
5996
6000
|
mode: string;
|
|
6001
|
+
blockExplorerUrl?: string | undefined;
|
|
6002
|
+
chain: "stacks";
|
|
5997
6003
|
xverseApiUrl: string;
|
|
5998
6004
|
stacksApiUrl: string;
|
|
5999
6005
|
}, {
|
|
6000
6006
|
name: string;
|
|
6001
|
-
chain: "stacks";
|
|
6002
|
-
blockExplorerUrl?: string | undefined;
|
|
6003
6007
|
mode: v.EnumValues<{
|
|
6004
6008
|
readonly mainnet: "mainnet";
|
|
6005
6009
|
readonly testnet: "testnet";
|
|
6006
6010
|
readonly devnet: "devnet";
|
|
6007
6011
|
readonly mocknet: "mocknet";
|
|
6008
6012
|
}>;
|
|
6013
|
+
blockExplorerUrl?: string | undefined;
|
|
6014
|
+
chain: "stacks";
|
|
6009
6015
|
xverseApiUrl: string;
|
|
6010
6016
|
stacksApiUrl: string;
|
|
6011
6017
|
}>;
|
|
6012
6018
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
6013
6019
|
name: string;
|
|
6014
|
-
chain: "stacks";
|
|
6015
|
-
blockExplorerUrl?: string | undefined;
|
|
6016
6020
|
mode: v.EnumValues<{
|
|
6017
6021
|
readonly mainnet: "mainnet";
|
|
6018
6022
|
readonly testnet: "testnet";
|
|
6019
6023
|
readonly devnet: "devnet";
|
|
6020
6024
|
readonly mocknet: "mocknet";
|
|
6021
6025
|
}>;
|
|
6026
|
+
blockExplorerUrl?: string | undefined;
|
|
6027
|
+
chain: "stacks";
|
|
6022
6028
|
xverseApiUrl: string;
|
|
6023
6029
|
stacksApiUrl: string;
|
|
6024
6030
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
6025
6031
|
readonly "~types"?: {
|
|
6026
6032
|
readonly input: {
|
|
6027
6033
|
name: string;
|
|
6028
|
-
chain: "stacks";
|
|
6029
|
-
blockExplorerUrl?: string | undefined;
|
|
6030
6034
|
mode: string;
|
|
6035
|
+
blockExplorerUrl?: string | undefined;
|
|
6036
|
+
chain: "stacks";
|
|
6031
6037
|
xverseApiUrl: string;
|
|
6032
6038
|
stacksApiUrl: string;
|
|
6033
6039
|
};
|
|
6034
6040
|
readonly output: {
|
|
6035
6041
|
name: string;
|
|
6036
|
-
chain: "stacks";
|
|
6037
|
-
blockExplorerUrl?: string | undefined;
|
|
6038
6042
|
mode: v.EnumValues<{
|
|
6039
6043
|
readonly mainnet: "mainnet";
|
|
6040
6044
|
readonly testnet: "testnet";
|
|
6041
6045
|
readonly devnet: "devnet";
|
|
6042
6046
|
readonly mocknet: "mocknet";
|
|
6043
6047
|
}>;
|
|
6048
|
+
blockExplorerUrl?: string | undefined;
|
|
6049
|
+
chain: "stacks";
|
|
6044
6050
|
xverseApiUrl: string;
|
|
6045
6051
|
stacksApiUrl: string;
|
|
6046
6052
|
};
|
|
@@ -6080,50 +6086,50 @@ declare const walletAddNetworkV2RequestSchema: v.ObjectSchema<{
|
|
|
6080
6086
|
}, "id" | "source">;
|
|
6081
6087
|
readonly "~standard": v.StandardProps<{
|
|
6082
6088
|
name: string;
|
|
6083
|
-
chain: "starknet";
|
|
6084
|
-
blockExplorerUrl?: string | undefined;
|
|
6085
6089
|
mode: string;
|
|
6090
|
+
blockExplorerUrl?: string | undefined;
|
|
6091
|
+
chain: "starknet";
|
|
6086
6092
|
xverseApiUrl: string;
|
|
6087
6093
|
rpcApiUrl: string;
|
|
6088
6094
|
}, {
|
|
6089
6095
|
name: string;
|
|
6090
|
-
chain: "starknet";
|
|
6091
|
-
blockExplorerUrl?: string | undefined;
|
|
6092
6096
|
mode: v.EnumValues<{
|
|
6093
6097
|
readonly mainnet: "mainnet";
|
|
6094
6098
|
readonly sepolia: "sepolia";
|
|
6095
6099
|
}>;
|
|
6100
|
+
blockExplorerUrl?: string | undefined;
|
|
6101
|
+
chain: "starknet";
|
|
6096
6102
|
xverseApiUrl: string;
|
|
6097
6103
|
rpcApiUrl: string;
|
|
6098
6104
|
}>;
|
|
6099
6105
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
6100
6106
|
name: string;
|
|
6101
|
-
chain: "starknet";
|
|
6102
|
-
blockExplorerUrl?: string | undefined;
|
|
6103
6107
|
mode: v.EnumValues<{
|
|
6104
6108
|
readonly mainnet: "mainnet";
|
|
6105
6109
|
readonly sepolia: "sepolia";
|
|
6106
6110
|
}>;
|
|
6111
|
+
blockExplorerUrl?: string | undefined;
|
|
6112
|
+
chain: "starknet";
|
|
6107
6113
|
xverseApiUrl: string;
|
|
6108
6114
|
rpcApiUrl: string;
|
|
6109
6115
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
6110
6116
|
readonly "~types"?: {
|
|
6111
6117
|
readonly input: {
|
|
6112
6118
|
name: string;
|
|
6113
|
-
chain: "starknet";
|
|
6114
|
-
blockExplorerUrl?: string | undefined;
|
|
6115
6119
|
mode: string;
|
|
6120
|
+
blockExplorerUrl?: string | undefined;
|
|
6121
|
+
chain: "starknet";
|
|
6116
6122
|
xverseApiUrl: string;
|
|
6117
6123
|
rpcApiUrl: string;
|
|
6118
6124
|
};
|
|
6119
6125
|
readonly output: {
|
|
6120
6126
|
name: string;
|
|
6121
|
-
chain: "starknet";
|
|
6122
|
-
blockExplorerUrl?: string | undefined;
|
|
6123
6127
|
mode: v.EnumValues<{
|
|
6124
6128
|
readonly mainnet: "mainnet";
|
|
6125
6129
|
readonly sepolia: "sepolia";
|
|
6126
6130
|
}>;
|
|
6131
|
+
blockExplorerUrl?: string | undefined;
|
|
6132
|
+
chain: "starknet";
|
|
6127
6133
|
xverseApiUrl: string;
|
|
6128
6134
|
rpcApiUrl: string;
|
|
6129
6135
|
};
|
|
@@ -7261,6 +7267,39 @@ declare const walletGetCurrentPermissionsSuccessResponseSchema: v.ObjectSchema<{
|
|
|
7261
7267
|
}, undefined>;
|
|
7262
7268
|
type WalletGetCurrentPermissionsSuccessResponse = v.InferOutput<typeof walletGetCurrentPermissionsSuccessResponseSchema>;
|
|
7263
7269
|
//#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
|
|
7264
7303
|
//#region src/request/rpc/objects/namespaces/wallet/methods/getNetwork/request.d.ts
|
|
7265
7304
|
declare const walletGetNetworkParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
7266
7305
|
type WalletGetNetworkParams = v.InferOutput<typeof walletGetNetworkParamsSchema>;
|
|
@@ -7640,6 +7679,39 @@ declare const walletGetWalletTypeSuccessResponseSchema: v.ObjectSchema<{
|
|
|
7640
7679
|
}, undefined>;
|
|
7641
7680
|
type WalletGetWalletTypeSuccessResponse = v.InferOutput<typeof walletGetWalletTypeSuccessResponseSchema>;
|
|
7642
7681
|
//#endregion
|
|
7682
|
+
//#region src/request/rpc/objects/namespaces/wallet/methods/open/request.d.ts
|
|
7683
|
+
declare const walletOpenParamsSchema: v.ObjectSchema<{
|
|
7684
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7685
|
+
}, undefined>;
|
|
7686
|
+
type WalletOpenParams = v.InferOutput<typeof walletOpenParamsSchema>;
|
|
7687
|
+
declare const walletOpenRequestSchema: v.ObjectSchema<{
|
|
7688
|
+
readonly id: v.StringSchema<undefined>;
|
|
7689
|
+
readonly method: v.LiteralSchema<"wallet_open", undefined>;
|
|
7690
|
+
readonly params: v.ObjectSchema<{
|
|
7691
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
7692
|
+
}, undefined>;
|
|
7693
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7694
|
+
}, undefined>;
|
|
7695
|
+
type WalletOpenRequest = v.InferOutput<typeof walletOpenRequestSchema>;
|
|
7696
|
+
//#endregion
|
|
7697
|
+
//#region src/request/rpc/objects/namespaces/wallet/methods/open/response.d.ts
|
|
7698
|
+
declare const walletOpenResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
7699
|
+
type WalletOpenResult = v.InferOutput<typeof walletOpenResultSchema>;
|
|
7700
|
+
declare const walletOpenSuccessResponseSchema: v.ObjectSchema<{
|
|
7701
|
+
readonly id: v.StringSchema<undefined>;
|
|
7702
|
+
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
7703
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_open", undefined>;
|
|
7704
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
7705
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
7706
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
7707
|
+
readonly message: v.StringSchema<undefined>;
|
|
7708
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
7709
|
+
}, undefined>], undefined>, undefined>;
|
|
7710
|
+
}, undefined>, undefined>;
|
|
7711
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7712
|
+
}, undefined>;
|
|
7713
|
+
type WalletOpenSuccessResponse = v.InferOutput<typeof walletOpenSuccessResponseSchema>;
|
|
7714
|
+
//#endregion
|
|
7643
7715
|
//#region src/request/rpc/objects/namespaces/wallet/methods/openBridge/request.d.ts
|
|
7644
7716
|
declare const walletOpenBridgeParamsSchema: v.ObjectSchema<{
|
|
7645
7717
|
readonly fromAsset: v.StringSchema<undefined>;
|
|
@@ -7835,6 +7907,53 @@ declare const walletRequestPermissionsSuccessResponseSchema: v.ObjectSchema<{
|
|
|
7835
7907
|
}, undefined>;
|
|
7836
7908
|
type WalletRequestPermissionsSuccessResponse = v.InferOutput<typeof walletRequestPermissionsSuccessResponseSchema>;
|
|
7837
7909
|
//#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<"Ed25519", undefined>;
|
|
7913
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
7914
|
+
}, undefined>, v.ObjectSchema<{
|
|
7915
|
+
readonly algorithm: v.LiteralSchema<"Ed25519ph", undefined>;
|
|
7916
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
7917
|
+
}, undefined>], undefined>;
|
|
7918
|
+
type WalletSignParams = v.InferOutput<typeof walletSignParamsSchema>;
|
|
7919
|
+
declare const walletSignRequestSchema: v.ObjectSchema<{
|
|
7920
|
+
readonly id: v.StringSchema<undefined>;
|
|
7921
|
+
readonly method: v.LiteralSchema<"wallet_sign", undefined>;
|
|
7922
|
+
readonly params: v.VariantSchema<"algorithm", [v.ObjectSchema<{
|
|
7923
|
+
readonly algorithm: v.LiteralSchema<"Ed25519", undefined>;
|
|
7924
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
7925
|
+
}, undefined>, v.ObjectSchema<{
|
|
7926
|
+
readonly algorithm: v.LiteralSchema<"Ed25519ph", undefined>;
|
|
7927
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
7928
|
+
}, undefined>], undefined>;
|
|
7929
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7930
|
+
}, undefined>;
|
|
7931
|
+
type WalletSignRequest = v.InferOutput<typeof walletSignRequestSchema>;
|
|
7932
|
+
//#endregion
|
|
7933
|
+
//#region src/request/rpc/objects/namespaces/wallet/methods/sign/response.d.ts
|
|
7934
|
+
declare const walletSignResultSchema: v.ObjectSchema<{
|
|
7935
|
+
readonly signature: v.StringSchema<undefined>;
|
|
7936
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
7937
|
+
}, undefined>;
|
|
7938
|
+
type WalletSignResult = v.InferOutput<typeof walletSignResultSchema>;
|
|
7939
|
+
declare const walletSignSuccessResponseSchema: v.ObjectSchema<{
|
|
7940
|
+
readonly id: v.StringSchema<undefined>;
|
|
7941
|
+
readonly result: v.ObjectSchema<{
|
|
7942
|
+
readonly signature: v.StringSchema<undefined>;
|
|
7943
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
7944
|
+
}, undefined>;
|
|
7945
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_sign", undefined>;
|
|
7946
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
7947
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
7948
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
7949
|
+
readonly message: v.StringSchema<undefined>;
|
|
7950
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
7951
|
+
}, undefined>], undefined>, undefined>;
|
|
7952
|
+
}, undefined>, undefined>;
|
|
7953
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
7954
|
+
}, undefined>;
|
|
7955
|
+
type WalletSignSuccessResponse = v.InferOutput<typeof walletSignSuccessResponseSchema>;
|
|
7956
|
+
//#endregion
|
|
7838
7957
|
//#region src/request/rpc/objects/namespaces/wallet/methods/switchNetwork/request.d.ts
|
|
7839
7958
|
declare const walletSwitchNetworkParamsSchema: v.VariantSchema<"selector", [v.ObjectSchema<{
|
|
7840
7959
|
readonly selector: v.LiteralSchema<"id", undefined>;
|
|
@@ -7991,15 +8110,13 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
7991
8110
|
}, "id" | "source">;
|
|
7992
8111
|
readonly "~standard": v.StandardProps<{
|
|
7993
8112
|
name: string;
|
|
7994
|
-
chain: "bitcoin";
|
|
7995
|
-
blockExplorerUrl?: string | undefined;
|
|
7996
8113
|
mode: string;
|
|
8114
|
+
blockExplorerUrl?: string | undefined;
|
|
8115
|
+
chain: "bitcoin";
|
|
7997
8116
|
xverseApiUrl: string;
|
|
7998
8117
|
electrsApiUrl: string;
|
|
7999
8118
|
}, {
|
|
8000
8119
|
name: string;
|
|
8001
|
-
chain: "bitcoin";
|
|
8002
|
-
blockExplorerUrl?: string | undefined;
|
|
8003
8120
|
mode: v.EnumValues<{
|
|
8004
8121
|
readonly mainnet: "mainnet";
|
|
8005
8122
|
readonly testnet: "testnet";
|
|
@@ -8007,13 +8124,13 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8007
8124
|
readonly signet: "signet";
|
|
8008
8125
|
readonly regtest: "regtest";
|
|
8009
8126
|
}>;
|
|
8127
|
+
blockExplorerUrl?: string | undefined;
|
|
8128
|
+
chain: "bitcoin";
|
|
8010
8129
|
xverseApiUrl: string;
|
|
8011
8130
|
electrsApiUrl: string;
|
|
8012
8131
|
}>;
|
|
8013
8132
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8014
8133
|
name: string;
|
|
8015
|
-
chain: "bitcoin";
|
|
8016
|
-
blockExplorerUrl?: string | undefined;
|
|
8017
8134
|
mode: v.EnumValues<{
|
|
8018
8135
|
readonly mainnet: "mainnet";
|
|
8019
8136
|
readonly testnet: "testnet";
|
|
@@ -8021,22 +8138,22 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8021
8138
|
readonly signet: "signet";
|
|
8022
8139
|
readonly regtest: "regtest";
|
|
8023
8140
|
}>;
|
|
8141
|
+
blockExplorerUrl?: string | undefined;
|
|
8142
|
+
chain: "bitcoin";
|
|
8024
8143
|
xverseApiUrl: string;
|
|
8025
8144
|
electrsApiUrl: string;
|
|
8026
8145
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8027
8146
|
readonly "~types"?: {
|
|
8028
8147
|
readonly input: {
|
|
8029
8148
|
name: string;
|
|
8030
|
-
chain: "bitcoin";
|
|
8031
|
-
blockExplorerUrl?: string | undefined;
|
|
8032
8149
|
mode: string;
|
|
8150
|
+
blockExplorerUrl?: string | undefined;
|
|
8151
|
+
chain: "bitcoin";
|
|
8033
8152
|
xverseApiUrl: string;
|
|
8034
8153
|
electrsApiUrl: string;
|
|
8035
8154
|
};
|
|
8036
8155
|
readonly output: {
|
|
8037
8156
|
name: string;
|
|
8038
|
-
chain: "bitcoin";
|
|
8039
|
-
blockExplorerUrl?: string | undefined;
|
|
8040
8157
|
mode: v.EnumValues<{
|
|
8041
8158
|
readonly mainnet: "mainnet";
|
|
8042
8159
|
readonly testnet: "testnet";
|
|
@@ -8044,6 +8161,8 @@ declare const bitcoinNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8044
8161
|
readonly signet: "signet";
|
|
8045
8162
|
readonly regtest: "regtest";
|
|
8046
8163
|
}>;
|
|
8164
|
+
blockExplorerUrl?: string | undefined;
|
|
8165
|
+
chain: "bitcoin";
|
|
8047
8166
|
xverseApiUrl: string;
|
|
8048
8167
|
electrsApiUrl: string;
|
|
8049
8168
|
};
|
|
@@ -8115,46 +8234,46 @@ declare const sparkNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8115
8234
|
}, "id" | "source">;
|
|
8116
8235
|
readonly "~standard": v.StandardProps<{
|
|
8117
8236
|
name: string;
|
|
8118
|
-
chain: "spark";
|
|
8119
|
-
blockExplorerUrl?: string | undefined;
|
|
8120
8237
|
mode: string;
|
|
8238
|
+
blockExplorerUrl?: string | undefined;
|
|
8239
|
+
chain: "spark";
|
|
8121
8240
|
electrsApiUrl: string;
|
|
8122
8241
|
}, {
|
|
8123
8242
|
name: string;
|
|
8124
|
-
chain: "spark";
|
|
8125
|
-
blockExplorerUrl?: string | undefined;
|
|
8126
8243
|
mode: v.EnumValues<{
|
|
8127
8244
|
readonly mainnet: "mainnet";
|
|
8128
8245
|
readonly regtest: "regtest";
|
|
8129
8246
|
}>;
|
|
8247
|
+
blockExplorerUrl?: string | undefined;
|
|
8248
|
+
chain: "spark";
|
|
8130
8249
|
electrsApiUrl: string;
|
|
8131
8250
|
}>;
|
|
8132
8251
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8133
8252
|
name: string;
|
|
8134
|
-
chain: "spark";
|
|
8135
|
-
blockExplorerUrl?: string | undefined;
|
|
8136
8253
|
mode: v.EnumValues<{
|
|
8137
8254
|
readonly mainnet: "mainnet";
|
|
8138
8255
|
readonly regtest: "regtest";
|
|
8139
8256
|
}>;
|
|
8257
|
+
blockExplorerUrl?: string | undefined;
|
|
8258
|
+
chain: "spark";
|
|
8140
8259
|
electrsApiUrl: string;
|
|
8141
8260
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8142
8261
|
readonly "~types"?: {
|
|
8143
8262
|
readonly input: {
|
|
8144
8263
|
name: string;
|
|
8145
|
-
chain: "spark";
|
|
8146
|
-
blockExplorerUrl?: string | undefined;
|
|
8147
8264
|
mode: string;
|
|
8265
|
+
blockExplorerUrl?: string | undefined;
|
|
8266
|
+
chain: "spark";
|
|
8148
8267
|
electrsApiUrl: string;
|
|
8149
8268
|
};
|
|
8150
8269
|
readonly output: {
|
|
8151
8270
|
name: string;
|
|
8152
|
-
chain: "spark";
|
|
8153
|
-
blockExplorerUrl?: string | undefined;
|
|
8154
8271
|
mode: v.EnumValues<{
|
|
8155
8272
|
readonly mainnet: "mainnet";
|
|
8156
8273
|
readonly regtest: "regtest";
|
|
8157
8274
|
}>;
|
|
8275
|
+
blockExplorerUrl?: string | undefined;
|
|
8276
|
+
chain: "spark";
|
|
8158
8277
|
electrsApiUrl: string;
|
|
8159
8278
|
};
|
|
8160
8279
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -8231,56 +8350,56 @@ declare const stacksNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8231
8350
|
}, "id" | "source">;
|
|
8232
8351
|
readonly "~standard": v.StandardProps<{
|
|
8233
8352
|
name: string;
|
|
8234
|
-
chain: "stacks";
|
|
8235
|
-
blockExplorerUrl?: string | undefined;
|
|
8236
8353
|
mode: string;
|
|
8354
|
+
blockExplorerUrl?: string | undefined;
|
|
8355
|
+
chain: "stacks";
|
|
8237
8356
|
xverseApiUrl: string;
|
|
8238
8357
|
stacksApiUrl: string;
|
|
8239
8358
|
}, {
|
|
8240
8359
|
name: string;
|
|
8241
|
-
chain: "stacks";
|
|
8242
|
-
blockExplorerUrl?: string | undefined;
|
|
8243
8360
|
mode: v.EnumValues<{
|
|
8244
8361
|
readonly mainnet: "mainnet";
|
|
8245
8362
|
readonly testnet: "testnet";
|
|
8246
8363
|
readonly devnet: "devnet";
|
|
8247
8364
|
readonly mocknet: "mocknet";
|
|
8248
8365
|
}>;
|
|
8366
|
+
blockExplorerUrl?: string | undefined;
|
|
8367
|
+
chain: "stacks";
|
|
8249
8368
|
xverseApiUrl: string;
|
|
8250
8369
|
stacksApiUrl: string;
|
|
8251
8370
|
}>;
|
|
8252
8371
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8253
8372
|
name: string;
|
|
8254
|
-
chain: "stacks";
|
|
8255
|
-
blockExplorerUrl?: string | undefined;
|
|
8256
8373
|
mode: v.EnumValues<{
|
|
8257
8374
|
readonly mainnet: "mainnet";
|
|
8258
8375
|
readonly testnet: "testnet";
|
|
8259
8376
|
readonly devnet: "devnet";
|
|
8260
8377
|
readonly mocknet: "mocknet";
|
|
8261
8378
|
}>;
|
|
8379
|
+
blockExplorerUrl?: string | undefined;
|
|
8380
|
+
chain: "stacks";
|
|
8262
8381
|
xverseApiUrl: string;
|
|
8263
8382
|
stacksApiUrl: string;
|
|
8264
8383
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8265
8384
|
readonly "~types"?: {
|
|
8266
8385
|
readonly input: {
|
|
8267
8386
|
name: string;
|
|
8268
|
-
chain: "stacks";
|
|
8269
|
-
blockExplorerUrl?: string | undefined;
|
|
8270
8387
|
mode: string;
|
|
8388
|
+
blockExplorerUrl?: string | undefined;
|
|
8389
|
+
chain: "stacks";
|
|
8271
8390
|
xverseApiUrl: string;
|
|
8272
8391
|
stacksApiUrl: string;
|
|
8273
8392
|
};
|
|
8274
8393
|
readonly output: {
|
|
8275
8394
|
name: string;
|
|
8276
|
-
chain: "stacks";
|
|
8277
|
-
blockExplorerUrl?: string | undefined;
|
|
8278
8395
|
mode: v.EnumValues<{
|
|
8279
8396
|
readonly mainnet: "mainnet";
|
|
8280
8397
|
readonly testnet: "testnet";
|
|
8281
8398
|
readonly devnet: "devnet";
|
|
8282
8399
|
readonly mocknet: "mocknet";
|
|
8283
8400
|
}>;
|
|
8401
|
+
blockExplorerUrl?: string | undefined;
|
|
8402
|
+
chain: "stacks";
|
|
8284
8403
|
xverseApiUrl: string;
|
|
8285
8404
|
stacksApiUrl: string;
|
|
8286
8405
|
};
|
|
@@ -8354,50 +8473,50 @@ declare const starknetNetworkConfigurationOptionsSchema: Omit<v.ObjectSchema<{
|
|
|
8354
8473
|
}, "id" | "source">;
|
|
8355
8474
|
readonly "~standard": v.StandardProps<{
|
|
8356
8475
|
name: string;
|
|
8357
|
-
chain: "starknet";
|
|
8358
|
-
blockExplorerUrl?: string | undefined;
|
|
8359
8476
|
mode: string;
|
|
8477
|
+
blockExplorerUrl?: string | undefined;
|
|
8478
|
+
chain: "starknet";
|
|
8360
8479
|
xverseApiUrl: string;
|
|
8361
8480
|
rpcApiUrl: string;
|
|
8362
8481
|
}, {
|
|
8363
8482
|
name: string;
|
|
8364
|
-
chain: "starknet";
|
|
8365
|
-
blockExplorerUrl?: string | undefined;
|
|
8366
8483
|
mode: v.EnumValues<{
|
|
8367
8484
|
readonly mainnet: "mainnet";
|
|
8368
8485
|
readonly sepolia: "sepolia";
|
|
8369
8486
|
}>;
|
|
8487
|
+
blockExplorerUrl?: string | undefined;
|
|
8488
|
+
chain: "starknet";
|
|
8370
8489
|
xverseApiUrl: string;
|
|
8371
8490
|
rpcApiUrl: string;
|
|
8372
8491
|
}>;
|
|
8373
8492
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8374
8493
|
name: string;
|
|
8375
|
-
chain: "starknet";
|
|
8376
|
-
blockExplorerUrl?: string | undefined;
|
|
8377
8494
|
mode: v.EnumValues<{
|
|
8378
8495
|
readonly mainnet: "mainnet";
|
|
8379
8496
|
readonly sepolia: "sepolia";
|
|
8380
8497
|
}>;
|
|
8498
|
+
blockExplorerUrl?: string | undefined;
|
|
8499
|
+
chain: "starknet";
|
|
8381
8500
|
xverseApiUrl: string;
|
|
8382
8501
|
rpcApiUrl: string;
|
|
8383
8502
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8384
8503
|
readonly "~types"?: {
|
|
8385
8504
|
readonly input: {
|
|
8386
8505
|
name: string;
|
|
8387
|
-
chain: "starknet";
|
|
8388
|
-
blockExplorerUrl?: string | undefined;
|
|
8389
8506
|
mode: string;
|
|
8507
|
+
blockExplorerUrl?: string | undefined;
|
|
8508
|
+
chain: "starknet";
|
|
8390
8509
|
xverseApiUrl: string;
|
|
8391
8510
|
rpcApiUrl: string;
|
|
8392
8511
|
};
|
|
8393
8512
|
readonly output: {
|
|
8394
8513
|
name: string;
|
|
8395
|
-
chain: "starknet";
|
|
8396
|
-
blockExplorerUrl?: string | undefined;
|
|
8397
8514
|
mode: v.EnumValues<{
|
|
8398
8515
|
readonly mainnet: "mainnet";
|
|
8399
8516
|
readonly sepolia: "sepolia";
|
|
8400
8517
|
}>;
|
|
8518
|
+
blockExplorerUrl?: string | undefined;
|
|
8519
|
+
chain: "starknet";
|
|
8401
8520
|
xverseApiUrl: string;
|
|
8402
8521
|
rpcApiUrl: string;
|
|
8403
8522
|
};
|
|
@@ -8477,15 +8596,13 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8477
8596
|
}, "id" | "source">;
|
|
8478
8597
|
readonly "~standard": v.StandardProps<{
|
|
8479
8598
|
name: string;
|
|
8480
|
-
chain: "bitcoin";
|
|
8481
|
-
blockExplorerUrl?: string | undefined;
|
|
8482
8599
|
mode: string;
|
|
8600
|
+
blockExplorerUrl?: string | undefined;
|
|
8601
|
+
chain: "bitcoin";
|
|
8483
8602
|
xverseApiUrl: string;
|
|
8484
8603
|
electrsApiUrl: string;
|
|
8485
8604
|
}, {
|
|
8486
8605
|
name: string;
|
|
8487
|
-
chain: "bitcoin";
|
|
8488
|
-
blockExplorerUrl?: string | undefined;
|
|
8489
8606
|
mode: v.EnumValues<{
|
|
8490
8607
|
readonly mainnet: "mainnet";
|
|
8491
8608
|
readonly testnet: "testnet";
|
|
@@ -8493,13 +8610,13 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8493
8610
|
readonly signet: "signet";
|
|
8494
8611
|
readonly regtest: "regtest";
|
|
8495
8612
|
}>;
|
|
8613
|
+
blockExplorerUrl?: string | undefined;
|
|
8614
|
+
chain: "bitcoin";
|
|
8496
8615
|
xverseApiUrl: string;
|
|
8497
8616
|
electrsApiUrl: string;
|
|
8498
8617
|
}>;
|
|
8499
8618
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8500
8619
|
name: string;
|
|
8501
|
-
chain: "bitcoin";
|
|
8502
|
-
blockExplorerUrl?: string | undefined;
|
|
8503
8620
|
mode: v.EnumValues<{
|
|
8504
8621
|
readonly mainnet: "mainnet";
|
|
8505
8622
|
readonly testnet: "testnet";
|
|
@@ -8507,22 +8624,22 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8507
8624
|
readonly signet: "signet";
|
|
8508
8625
|
readonly regtest: "regtest";
|
|
8509
8626
|
}>;
|
|
8627
|
+
blockExplorerUrl?: string | undefined;
|
|
8628
|
+
chain: "bitcoin";
|
|
8510
8629
|
xverseApiUrl: string;
|
|
8511
8630
|
electrsApiUrl: string;
|
|
8512
8631
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8513
8632
|
readonly "~types"?: {
|
|
8514
8633
|
readonly input: {
|
|
8515
8634
|
name: string;
|
|
8516
|
-
chain: "bitcoin";
|
|
8517
|
-
blockExplorerUrl?: string | undefined;
|
|
8518
8635
|
mode: string;
|
|
8636
|
+
blockExplorerUrl?: string | undefined;
|
|
8637
|
+
chain: "bitcoin";
|
|
8519
8638
|
xverseApiUrl: string;
|
|
8520
8639
|
electrsApiUrl: string;
|
|
8521
8640
|
};
|
|
8522
8641
|
readonly output: {
|
|
8523
8642
|
name: string;
|
|
8524
|
-
chain: "bitcoin";
|
|
8525
|
-
blockExplorerUrl?: string | undefined;
|
|
8526
8643
|
mode: v.EnumValues<{
|
|
8527
8644
|
readonly mainnet: "mainnet";
|
|
8528
8645
|
readonly testnet: "testnet";
|
|
@@ -8530,6 +8647,8 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8530
8647
|
readonly signet: "signet";
|
|
8531
8648
|
readonly regtest: "regtest";
|
|
8532
8649
|
}>;
|
|
8650
|
+
blockExplorerUrl?: string | undefined;
|
|
8651
|
+
chain: "bitcoin";
|
|
8533
8652
|
xverseApiUrl: string;
|
|
8534
8653
|
electrsApiUrl: string;
|
|
8535
8654
|
};
|
|
@@ -8599,46 +8718,46 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8599
8718
|
}, "id" | "source">;
|
|
8600
8719
|
readonly "~standard": v.StandardProps<{
|
|
8601
8720
|
name: string;
|
|
8602
|
-
chain: "spark";
|
|
8603
|
-
blockExplorerUrl?: string | undefined;
|
|
8604
8721
|
mode: string;
|
|
8722
|
+
blockExplorerUrl?: string | undefined;
|
|
8723
|
+
chain: "spark";
|
|
8605
8724
|
electrsApiUrl: string;
|
|
8606
8725
|
}, {
|
|
8607
8726
|
name: string;
|
|
8608
|
-
chain: "spark";
|
|
8609
|
-
blockExplorerUrl?: string | undefined;
|
|
8610
8727
|
mode: v.EnumValues<{
|
|
8611
8728
|
readonly mainnet: "mainnet";
|
|
8612
8729
|
readonly regtest: "regtest";
|
|
8613
8730
|
}>;
|
|
8731
|
+
blockExplorerUrl?: string | undefined;
|
|
8732
|
+
chain: "spark";
|
|
8614
8733
|
electrsApiUrl: string;
|
|
8615
8734
|
}>;
|
|
8616
8735
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8617
8736
|
name: string;
|
|
8618
|
-
chain: "spark";
|
|
8619
|
-
blockExplorerUrl?: string | undefined;
|
|
8620
8737
|
mode: v.EnumValues<{
|
|
8621
8738
|
readonly mainnet: "mainnet";
|
|
8622
8739
|
readonly regtest: "regtest";
|
|
8623
8740
|
}>;
|
|
8741
|
+
blockExplorerUrl?: string | undefined;
|
|
8742
|
+
chain: "spark";
|
|
8624
8743
|
electrsApiUrl: string;
|
|
8625
8744
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8626
8745
|
readonly "~types"?: {
|
|
8627
8746
|
readonly input: {
|
|
8628
8747
|
name: string;
|
|
8629
|
-
chain: "spark";
|
|
8630
|
-
blockExplorerUrl?: string | undefined;
|
|
8631
8748
|
mode: string;
|
|
8749
|
+
blockExplorerUrl?: string | undefined;
|
|
8750
|
+
chain: "spark";
|
|
8632
8751
|
electrsApiUrl: string;
|
|
8633
8752
|
};
|
|
8634
8753
|
readonly output: {
|
|
8635
8754
|
name: string;
|
|
8636
|
-
chain: "spark";
|
|
8637
|
-
blockExplorerUrl?: string | undefined;
|
|
8638
8755
|
mode: v.EnumValues<{
|
|
8639
8756
|
readonly mainnet: "mainnet";
|
|
8640
8757
|
readonly regtest: "regtest";
|
|
8641
8758
|
}>;
|
|
8759
|
+
blockExplorerUrl?: string | undefined;
|
|
8760
|
+
chain: "spark";
|
|
8642
8761
|
electrsApiUrl: string;
|
|
8643
8762
|
};
|
|
8644
8763
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -8713,56 +8832,56 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8713
8832
|
}, "id" | "source">;
|
|
8714
8833
|
readonly "~standard": v.StandardProps<{
|
|
8715
8834
|
name: string;
|
|
8716
|
-
chain: "stacks";
|
|
8717
|
-
blockExplorerUrl?: string | undefined;
|
|
8718
8835
|
mode: string;
|
|
8836
|
+
blockExplorerUrl?: string | undefined;
|
|
8837
|
+
chain: "stacks";
|
|
8719
8838
|
xverseApiUrl: string;
|
|
8720
8839
|
stacksApiUrl: string;
|
|
8721
8840
|
}, {
|
|
8722
8841
|
name: string;
|
|
8723
|
-
chain: "stacks";
|
|
8724
|
-
blockExplorerUrl?: string | undefined;
|
|
8725
8842
|
mode: v.EnumValues<{
|
|
8726
8843
|
readonly mainnet: "mainnet";
|
|
8727
8844
|
readonly testnet: "testnet";
|
|
8728
8845
|
readonly devnet: "devnet";
|
|
8729
8846
|
readonly mocknet: "mocknet";
|
|
8730
8847
|
}>;
|
|
8848
|
+
blockExplorerUrl?: string | undefined;
|
|
8849
|
+
chain: "stacks";
|
|
8731
8850
|
xverseApiUrl: string;
|
|
8732
8851
|
stacksApiUrl: string;
|
|
8733
8852
|
}>;
|
|
8734
8853
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8735
8854
|
name: string;
|
|
8736
|
-
chain: "stacks";
|
|
8737
|
-
blockExplorerUrl?: string | undefined;
|
|
8738
8855
|
mode: v.EnumValues<{
|
|
8739
8856
|
readonly mainnet: "mainnet";
|
|
8740
8857
|
readonly testnet: "testnet";
|
|
8741
8858
|
readonly devnet: "devnet";
|
|
8742
8859
|
readonly mocknet: "mocknet";
|
|
8743
8860
|
}>;
|
|
8861
|
+
blockExplorerUrl?: string | undefined;
|
|
8862
|
+
chain: "stacks";
|
|
8744
8863
|
xverseApiUrl: string;
|
|
8745
8864
|
stacksApiUrl: string;
|
|
8746
8865
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8747
8866
|
readonly "~types"?: {
|
|
8748
8867
|
readonly input: {
|
|
8749
8868
|
name: string;
|
|
8750
|
-
chain: "stacks";
|
|
8751
|
-
blockExplorerUrl?: string | undefined;
|
|
8752
8869
|
mode: string;
|
|
8870
|
+
blockExplorerUrl?: string | undefined;
|
|
8871
|
+
chain: "stacks";
|
|
8753
8872
|
xverseApiUrl: string;
|
|
8754
8873
|
stacksApiUrl: string;
|
|
8755
8874
|
};
|
|
8756
8875
|
readonly output: {
|
|
8757
8876
|
name: string;
|
|
8758
|
-
chain: "stacks";
|
|
8759
|
-
blockExplorerUrl?: string | undefined;
|
|
8760
8877
|
mode: v.EnumValues<{
|
|
8761
8878
|
readonly mainnet: "mainnet";
|
|
8762
8879
|
readonly testnet: "testnet";
|
|
8763
8880
|
readonly devnet: "devnet";
|
|
8764
8881
|
readonly mocknet: "mocknet";
|
|
8765
8882
|
}>;
|
|
8883
|
+
blockExplorerUrl?: string | undefined;
|
|
8884
|
+
chain: "stacks";
|
|
8766
8885
|
xverseApiUrl: string;
|
|
8767
8886
|
stacksApiUrl: string;
|
|
8768
8887
|
};
|
|
@@ -8834,50 +8953,50 @@ declare const networkConfigurationOptionsSchema: v.VariantSchema<"chain", [Omit<
|
|
|
8834
8953
|
}, "id" | "source">;
|
|
8835
8954
|
readonly "~standard": v.StandardProps<{
|
|
8836
8955
|
name: string;
|
|
8837
|
-
chain: "starknet";
|
|
8838
|
-
blockExplorerUrl?: string | undefined;
|
|
8839
8956
|
mode: string;
|
|
8957
|
+
blockExplorerUrl?: string | undefined;
|
|
8958
|
+
chain: "starknet";
|
|
8840
8959
|
xverseApiUrl: string;
|
|
8841
8960
|
rpcApiUrl: string;
|
|
8842
8961
|
}, {
|
|
8843
8962
|
name: string;
|
|
8844
|
-
chain: "starknet";
|
|
8845
|
-
blockExplorerUrl?: string | undefined;
|
|
8846
8963
|
mode: v.EnumValues<{
|
|
8847
8964
|
readonly mainnet: "mainnet";
|
|
8848
8965
|
readonly sepolia: "sepolia";
|
|
8849
8966
|
}>;
|
|
8967
|
+
blockExplorerUrl?: string | undefined;
|
|
8968
|
+
chain: "starknet";
|
|
8850
8969
|
xverseApiUrl: string;
|
|
8851
8970
|
rpcApiUrl: string;
|
|
8852
8971
|
}>;
|
|
8853
8972
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
8854
8973
|
name: string;
|
|
8855
|
-
chain: "starknet";
|
|
8856
|
-
blockExplorerUrl?: string | undefined;
|
|
8857
8974
|
mode: v.EnumValues<{
|
|
8858
8975
|
readonly mainnet: "mainnet";
|
|
8859
8976
|
readonly sepolia: "sepolia";
|
|
8860
8977
|
}>;
|
|
8978
|
+
blockExplorerUrl?: string | undefined;
|
|
8979
|
+
chain: "starknet";
|
|
8861
8980
|
xverseApiUrl: string;
|
|
8862
8981
|
rpcApiUrl: string;
|
|
8863
8982
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
8864
8983
|
readonly "~types"?: {
|
|
8865
8984
|
readonly input: {
|
|
8866
8985
|
name: string;
|
|
8867
|
-
chain: "starknet";
|
|
8868
|
-
blockExplorerUrl?: string | undefined;
|
|
8869
8986
|
mode: string;
|
|
8987
|
+
blockExplorerUrl?: string | undefined;
|
|
8988
|
+
chain: "starknet";
|
|
8870
8989
|
xverseApiUrl: string;
|
|
8871
8990
|
rpcApiUrl: string;
|
|
8872
8991
|
};
|
|
8873
8992
|
readonly output: {
|
|
8874
8993
|
name: string;
|
|
8875
|
-
chain: "starknet";
|
|
8876
|
-
blockExplorerUrl?: string | undefined;
|
|
8877
8994
|
mode: v.EnumValues<{
|
|
8878
8995
|
readonly mainnet: "mainnet";
|
|
8879
8996
|
readonly sepolia: "sepolia";
|
|
8880
8997
|
}>;
|
|
8998
|
+
blockExplorerUrl?: string | undefined;
|
|
8999
|
+
chain: "starknet";
|
|
8881
9000
|
xverseApiUrl: string;
|
|
8882
9001
|
rpcApiUrl: string;
|
|
8883
9002
|
};
|
|
@@ -9166,11 +9285,14 @@ type WalletRequests = ExactObject<WalletMethod, {
|
|
|
9166
9285
|
[walletMethods.wallet_getNetwork]: WalletGetNetworkRequest;
|
|
9167
9286
|
[walletMethods.wallet_getNetworks]: WalletGetNetworksRequest;
|
|
9168
9287
|
[walletMethods.wallet_getWalletType]: WalletGetWalletTypeRequest;
|
|
9288
|
+
[walletMethods.wallet_open]: WalletOpenRequest;
|
|
9169
9289
|
[walletMethods.wallet_openBridge]: WalletOpenBridgeRequest;
|
|
9170
9290
|
[walletMethods.wallet_openBuy]: WalletOpenBuyRequest;
|
|
9171
9291
|
[walletMethods.wallet_openReceive]: WalletOpenReceiveRequest;
|
|
9172
9292
|
[walletMethods.wallet_renouncePermissions]: WalletRenouncePermissionsRequest;
|
|
9173
9293
|
[walletMethods.wallet_requestPermissions]: WalletRequestPermissionsRequest;
|
|
9294
|
+
[walletMethods.wallet_sign]: WalletSignRequest;
|
|
9295
|
+
[walletMethods.wallet_getEdDsaPublicKey]: WalletGetEdDsaPublicKeyRequest;
|
|
9174
9296
|
[walletMethods.wallet_switchNetwork]: WalletSwitchNetworkRequest;
|
|
9175
9297
|
}>;
|
|
9176
9298
|
declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
@@ -9245,15 +9367,13 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9245
9367
|
}, "id" | "source">;
|
|
9246
9368
|
readonly "~standard": v.StandardProps<{
|
|
9247
9369
|
name: string;
|
|
9248
|
-
chain: "bitcoin";
|
|
9249
|
-
blockExplorerUrl?: string | undefined;
|
|
9250
9370
|
mode: string;
|
|
9371
|
+
blockExplorerUrl?: string | undefined;
|
|
9372
|
+
chain: "bitcoin";
|
|
9251
9373
|
xverseApiUrl: string;
|
|
9252
9374
|
electrsApiUrl: string;
|
|
9253
9375
|
}, {
|
|
9254
9376
|
name: string;
|
|
9255
|
-
chain: "bitcoin";
|
|
9256
|
-
blockExplorerUrl?: string | undefined;
|
|
9257
9377
|
mode: v.EnumValues<{
|
|
9258
9378
|
readonly mainnet: "mainnet";
|
|
9259
9379
|
readonly testnet: "testnet";
|
|
@@ -9261,13 +9381,13 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9261
9381
|
readonly signet: "signet";
|
|
9262
9382
|
readonly regtest: "regtest";
|
|
9263
9383
|
}>;
|
|
9384
|
+
blockExplorerUrl?: string | undefined;
|
|
9385
|
+
chain: "bitcoin";
|
|
9264
9386
|
xverseApiUrl: string;
|
|
9265
9387
|
electrsApiUrl: string;
|
|
9266
9388
|
}>;
|
|
9267
9389
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9268
9390
|
name: string;
|
|
9269
|
-
chain: "bitcoin";
|
|
9270
|
-
blockExplorerUrl?: string | undefined;
|
|
9271
9391
|
mode: v.EnumValues<{
|
|
9272
9392
|
readonly mainnet: "mainnet";
|
|
9273
9393
|
readonly testnet: "testnet";
|
|
@@ -9275,22 +9395,22 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9275
9395
|
readonly signet: "signet";
|
|
9276
9396
|
readonly regtest: "regtest";
|
|
9277
9397
|
}>;
|
|
9398
|
+
blockExplorerUrl?: string | undefined;
|
|
9399
|
+
chain: "bitcoin";
|
|
9278
9400
|
xverseApiUrl: string;
|
|
9279
9401
|
electrsApiUrl: string;
|
|
9280
9402
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9281
9403
|
readonly "~types"?: {
|
|
9282
9404
|
readonly input: {
|
|
9283
9405
|
name: string;
|
|
9284
|
-
chain: "bitcoin";
|
|
9285
|
-
blockExplorerUrl?: string | undefined;
|
|
9286
9406
|
mode: string;
|
|
9407
|
+
blockExplorerUrl?: string | undefined;
|
|
9408
|
+
chain: "bitcoin";
|
|
9287
9409
|
xverseApiUrl: string;
|
|
9288
9410
|
electrsApiUrl: string;
|
|
9289
9411
|
};
|
|
9290
9412
|
readonly output: {
|
|
9291
9413
|
name: string;
|
|
9292
|
-
chain: "bitcoin";
|
|
9293
|
-
blockExplorerUrl?: string | undefined;
|
|
9294
9414
|
mode: v.EnumValues<{
|
|
9295
9415
|
readonly mainnet: "mainnet";
|
|
9296
9416
|
readonly testnet: "testnet";
|
|
@@ -9298,6 +9418,8 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9298
9418
|
readonly signet: "signet";
|
|
9299
9419
|
readonly regtest: "regtest";
|
|
9300
9420
|
}>;
|
|
9421
|
+
blockExplorerUrl?: string | undefined;
|
|
9422
|
+
chain: "bitcoin";
|
|
9301
9423
|
xverseApiUrl: string;
|
|
9302
9424
|
electrsApiUrl: string;
|
|
9303
9425
|
};
|
|
@@ -9335,46 +9457,46 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9335
9457
|
}, "id" | "source">;
|
|
9336
9458
|
readonly "~standard": v.StandardProps<{
|
|
9337
9459
|
name: string;
|
|
9338
|
-
chain: "spark";
|
|
9339
|
-
blockExplorerUrl?: string | undefined;
|
|
9340
9460
|
mode: string;
|
|
9461
|
+
blockExplorerUrl?: string | undefined;
|
|
9462
|
+
chain: "spark";
|
|
9341
9463
|
electrsApiUrl: string;
|
|
9342
9464
|
}, {
|
|
9343
9465
|
name: string;
|
|
9344
|
-
chain: "spark";
|
|
9345
|
-
blockExplorerUrl?: string | undefined;
|
|
9346
9466
|
mode: v.EnumValues<{
|
|
9347
9467
|
readonly mainnet: "mainnet";
|
|
9348
9468
|
readonly regtest: "regtest";
|
|
9349
9469
|
}>;
|
|
9470
|
+
blockExplorerUrl?: string | undefined;
|
|
9471
|
+
chain: "spark";
|
|
9350
9472
|
electrsApiUrl: string;
|
|
9351
9473
|
}>;
|
|
9352
9474
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9353
9475
|
name: string;
|
|
9354
|
-
chain: "spark";
|
|
9355
|
-
blockExplorerUrl?: string | undefined;
|
|
9356
9476
|
mode: v.EnumValues<{
|
|
9357
9477
|
readonly mainnet: "mainnet";
|
|
9358
9478
|
readonly regtest: "regtest";
|
|
9359
9479
|
}>;
|
|
9480
|
+
blockExplorerUrl?: string | undefined;
|
|
9481
|
+
chain: "spark";
|
|
9360
9482
|
electrsApiUrl: string;
|
|
9361
9483
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9362
9484
|
readonly "~types"?: {
|
|
9363
9485
|
readonly input: {
|
|
9364
9486
|
name: string;
|
|
9365
|
-
chain: "spark";
|
|
9366
|
-
blockExplorerUrl?: string | undefined;
|
|
9367
9487
|
mode: string;
|
|
9488
|
+
blockExplorerUrl?: string | undefined;
|
|
9489
|
+
chain: "spark";
|
|
9368
9490
|
electrsApiUrl: string;
|
|
9369
9491
|
};
|
|
9370
9492
|
readonly output: {
|
|
9371
9493
|
name: string;
|
|
9372
|
-
chain: "spark";
|
|
9373
|
-
blockExplorerUrl?: string | undefined;
|
|
9374
9494
|
mode: v.EnumValues<{
|
|
9375
9495
|
readonly mainnet: "mainnet";
|
|
9376
9496
|
readonly regtest: "regtest";
|
|
9377
9497
|
}>;
|
|
9498
|
+
blockExplorerUrl?: string | undefined;
|
|
9499
|
+
chain: "spark";
|
|
9378
9500
|
electrsApiUrl: string;
|
|
9379
9501
|
};
|
|
9380
9502
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -9417,56 +9539,56 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9417
9539
|
}, "id" | "source">;
|
|
9418
9540
|
readonly "~standard": v.StandardProps<{
|
|
9419
9541
|
name: string;
|
|
9420
|
-
chain: "stacks";
|
|
9421
|
-
blockExplorerUrl?: string | undefined;
|
|
9422
9542
|
mode: string;
|
|
9543
|
+
blockExplorerUrl?: string | undefined;
|
|
9544
|
+
chain: "stacks";
|
|
9423
9545
|
xverseApiUrl: string;
|
|
9424
9546
|
stacksApiUrl: string;
|
|
9425
9547
|
}, {
|
|
9426
9548
|
name: string;
|
|
9427
|
-
chain: "stacks";
|
|
9428
|
-
blockExplorerUrl?: string | undefined;
|
|
9429
9549
|
mode: v.EnumValues<{
|
|
9430
9550
|
readonly mainnet: "mainnet";
|
|
9431
9551
|
readonly testnet: "testnet";
|
|
9432
9552
|
readonly devnet: "devnet";
|
|
9433
9553
|
readonly mocknet: "mocknet";
|
|
9434
9554
|
}>;
|
|
9555
|
+
blockExplorerUrl?: string | undefined;
|
|
9556
|
+
chain: "stacks";
|
|
9435
9557
|
xverseApiUrl: string;
|
|
9436
9558
|
stacksApiUrl: string;
|
|
9437
9559
|
}>;
|
|
9438
9560
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9439
9561
|
name: string;
|
|
9440
|
-
chain: "stacks";
|
|
9441
|
-
blockExplorerUrl?: string | undefined;
|
|
9442
9562
|
mode: v.EnumValues<{
|
|
9443
9563
|
readonly mainnet: "mainnet";
|
|
9444
9564
|
readonly testnet: "testnet";
|
|
9445
9565
|
readonly devnet: "devnet";
|
|
9446
9566
|
readonly mocknet: "mocknet";
|
|
9447
9567
|
}>;
|
|
9568
|
+
blockExplorerUrl?: string | undefined;
|
|
9569
|
+
chain: "stacks";
|
|
9448
9570
|
xverseApiUrl: string;
|
|
9449
9571
|
stacksApiUrl: string;
|
|
9450
9572
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9451
9573
|
readonly "~types"?: {
|
|
9452
9574
|
readonly input: {
|
|
9453
9575
|
name: string;
|
|
9454
|
-
chain: "stacks";
|
|
9455
|
-
blockExplorerUrl?: string | undefined;
|
|
9456
9576
|
mode: string;
|
|
9577
|
+
blockExplorerUrl?: string | undefined;
|
|
9578
|
+
chain: "stacks";
|
|
9457
9579
|
xverseApiUrl: string;
|
|
9458
9580
|
stacksApiUrl: string;
|
|
9459
9581
|
};
|
|
9460
9582
|
readonly output: {
|
|
9461
9583
|
name: string;
|
|
9462
|
-
chain: "stacks";
|
|
9463
|
-
blockExplorerUrl?: string | undefined;
|
|
9464
9584
|
mode: v.EnumValues<{
|
|
9465
9585
|
readonly mainnet: "mainnet";
|
|
9466
9586
|
readonly testnet: "testnet";
|
|
9467
9587
|
readonly devnet: "devnet";
|
|
9468
9588
|
readonly mocknet: "mocknet";
|
|
9469
9589
|
}>;
|
|
9590
|
+
blockExplorerUrl?: string | undefined;
|
|
9591
|
+
chain: "stacks";
|
|
9470
9592
|
xverseApiUrl: string;
|
|
9471
9593
|
stacksApiUrl: string;
|
|
9472
9594
|
};
|
|
@@ -9506,50 +9628,50 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9506
9628
|
}, "id" | "source">;
|
|
9507
9629
|
readonly "~standard": v.StandardProps<{
|
|
9508
9630
|
name: string;
|
|
9509
|
-
chain: "starknet";
|
|
9510
|
-
blockExplorerUrl?: string | undefined;
|
|
9511
9631
|
mode: string;
|
|
9632
|
+
blockExplorerUrl?: string | undefined;
|
|
9633
|
+
chain: "starknet";
|
|
9512
9634
|
xverseApiUrl: string;
|
|
9513
9635
|
rpcApiUrl: string;
|
|
9514
9636
|
}, {
|
|
9515
9637
|
name: string;
|
|
9516
|
-
chain: "starknet";
|
|
9517
|
-
blockExplorerUrl?: string | undefined;
|
|
9518
9638
|
mode: v.EnumValues<{
|
|
9519
9639
|
readonly mainnet: "mainnet";
|
|
9520
9640
|
readonly sepolia: "sepolia";
|
|
9521
9641
|
}>;
|
|
9642
|
+
blockExplorerUrl?: string | undefined;
|
|
9643
|
+
chain: "starknet";
|
|
9522
9644
|
xverseApiUrl: string;
|
|
9523
9645
|
rpcApiUrl: string;
|
|
9524
9646
|
}>;
|
|
9525
9647
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
9526
9648
|
name: string;
|
|
9527
|
-
chain: "starknet";
|
|
9528
|
-
blockExplorerUrl?: string | undefined;
|
|
9529
9649
|
mode: v.EnumValues<{
|
|
9530
9650
|
readonly mainnet: "mainnet";
|
|
9531
9651
|
readonly sepolia: "sepolia";
|
|
9532
9652
|
}>;
|
|
9653
|
+
blockExplorerUrl?: string | undefined;
|
|
9654
|
+
chain: "starknet";
|
|
9533
9655
|
xverseApiUrl: string;
|
|
9534
9656
|
rpcApiUrl: string;
|
|
9535
9657
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
9536
9658
|
readonly "~types"?: {
|
|
9537
9659
|
readonly input: {
|
|
9538
9660
|
name: string;
|
|
9539
|
-
chain: "starknet";
|
|
9540
|
-
blockExplorerUrl?: string | undefined;
|
|
9541
9661
|
mode: string;
|
|
9662
|
+
blockExplorerUrl?: string | undefined;
|
|
9663
|
+
chain: "starknet";
|
|
9542
9664
|
xverseApiUrl: string;
|
|
9543
9665
|
rpcApiUrl: string;
|
|
9544
9666
|
};
|
|
9545
9667
|
readonly output: {
|
|
9546
9668
|
name: string;
|
|
9547
|
-
chain: "starknet";
|
|
9548
|
-
blockExplorerUrl?: string | undefined;
|
|
9549
9669
|
mode: v.EnumValues<{
|
|
9550
9670
|
readonly mainnet: "mainnet";
|
|
9551
9671
|
readonly sepolia: "sepolia";
|
|
9552
9672
|
}>;
|
|
9673
|
+
blockExplorerUrl?: string | undefined;
|
|
9674
|
+
chain: "starknet";
|
|
9553
9675
|
xverseApiUrl: string;
|
|
9554
9676
|
rpcApiUrl: string;
|
|
9555
9677
|
};
|
|
@@ -9645,6 +9767,13 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9645
9767
|
readonly method: v.LiteralSchema<"wallet_getWalletType", undefined>;
|
|
9646
9768
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
9647
9769
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9770
|
+
}, undefined>, v.ObjectSchema<{
|
|
9771
|
+
readonly id: v.StringSchema<undefined>;
|
|
9772
|
+
readonly method: v.LiteralSchema<"wallet_open", undefined>;
|
|
9773
|
+
readonly params: v.ObjectSchema<{
|
|
9774
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
9775
|
+
}, undefined>;
|
|
9776
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9648
9777
|
}, undefined>, v.ObjectSchema<{
|
|
9649
9778
|
readonly id: v.StringSchema<undefined>;
|
|
9650
9779
|
readonly method: v.LiteralSchema<"wallet_openBridge", undefined>;
|
|
@@ -9689,6 +9818,22 @@ declare const walletRequestSchema: v.VariantSchema<"method", [v.ObjectSchema<{
|
|
|
9689
9818
|
}, undefined>;
|
|
9690
9819
|
}, undefined>], undefined>, undefined>;
|
|
9691
9820
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9821
|
+
}, undefined>, v.ObjectSchema<{
|
|
9822
|
+
readonly id: v.StringSchema<undefined>;
|
|
9823
|
+
readonly method: v.LiteralSchema<"wallet_sign", undefined>;
|
|
9824
|
+
readonly params: v.VariantSchema<"algorithm", [v.ObjectSchema<{
|
|
9825
|
+
readonly algorithm: v.LiteralSchema<"Ed25519", undefined>;
|
|
9826
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
9827
|
+
}, undefined>, v.ObjectSchema<{
|
|
9828
|
+
readonly algorithm: v.LiteralSchema<"Ed25519ph", undefined>;
|
|
9829
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
9830
|
+
}, undefined>], undefined>;
|
|
9831
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9832
|
+
}, undefined>, v.ObjectSchema<{
|
|
9833
|
+
readonly id: v.StringSchema<undefined>;
|
|
9834
|
+
readonly method: v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
9835
|
+
readonly params: v.ObjectSchema<{}, undefined>;
|
|
9836
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
9692
9837
|
}, undefined>, v.ObjectSchema<{
|
|
9693
9838
|
readonly id: v.StringSchema<undefined>;
|
|
9694
9839
|
readonly method: v.LiteralSchema<"wallet_switchNetwork", undefined>;
|
|
@@ -9711,11 +9856,14 @@ type WalletSuccessResponses = ExactObject<WalletMethod, {
|
|
|
9711
9856
|
[walletMethods.wallet_getNetwork]: WalletGetNetworkSuccessResponse;
|
|
9712
9857
|
[walletMethods.wallet_getNetworks]: WalletGetNetworksSuccessResponse;
|
|
9713
9858
|
[walletMethods.wallet_getWalletType]: WalletGetWalletTypeSuccessResponse;
|
|
9859
|
+
[walletMethods.wallet_open]: WalletOpenSuccessResponse;
|
|
9714
9860
|
[walletMethods.wallet_openBridge]: WalletOpenBridgeSuccessResponse;
|
|
9715
9861
|
[walletMethods.wallet_openBuy]: WalletOpenBuySuccessResponse;
|
|
9716
9862
|
[walletMethods.wallet_openReceive]: WalletOpenReceiveSuccessResponse;
|
|
9717
9863
|
[walletMethods.wallet_renouncePermissions]: WalletRenouncePermissionsSuccessResponse;
|
|
9718
9864
|
[walletMethods.wallet_requestPermissions]: WalletRequestPermissionsSuccessResponse;
|
|
9865
|
+
[walletMethods.wallet_sign]: WalletSignSuccessResponse;
|
|
9866
|
+
[walletMethods.wallet_getEdDsaPublicKey]: WalletGetEdDsaPublicKeySuccessResponse;
|
|
9719
9867
|
[walletMethods.wallet_switchNetwork]: WalletChangeNetworkSuccessResponse;
|
|
9720
9868
|
}>;
|
|
9721
9869
|
declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method", [v.ObjectSchema<{
|
|
@@ -10424,6 +10572,18 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
|
|
|
10424
10572
|
}, undefined>], undefined>, undefined>;
|
|
10425
10573
|
}, undefined>, undefined>;
|
|
10426
10574
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10575
|
+
}, undefined>, v.ObjectSchema<{
|
|
10576
|
+
readonly id: v.StringSchema<undefined>;
|
|
10577
|
+
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
10578
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_open", undefined>;
|
|
10579
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
10580
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
10581
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
10582
|
+
readonly message: v.StringSchema<undefined>;
|
|
10583
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
10584
|
+
}, undefined>], undefined>, undefined>;
|
|
10585
|
+
}, undefined>, undefined>;
|
|
10586
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10427
10587
|
}, undefined>, v.ObjectSchema<{
|
|
10428
10588
|
readonly id: v.StringSchema<undefined>;
|
|
10429
10589
|
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
@@ -10490,6 +10650,35 @@ declare const walletSuccessResponseSchema: v.VariantSchema<"~sats-connect-method
|
|
|
10490
10650
|
}, undefined>], undefined>, undefined>;
|
|
10491
10651
|
}, undefined>, undefined>;
|
|
10492
10652
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10653
|
+
}, undefined>, v.ObjectSchema<{
|
|
10654
|
+
readonly id: v.StringSchema<undefined>;
|
|
10655
|
+
readonly result: v.ObjectSchema<{
|
|
10656
|
+
readonly signature: v.StringSchema<undefined>;
|
|
10657
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
10658
|
+
}, undefined>;
|
|
10659
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_sign", undefined>;
|
|
10660
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
10661
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
10662
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
10663
|
+
readonly message: v.StringSchema<undefined>;
|
|
10664
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
10665
|
+
}, undefined>], undefined>, undefined>;
|
|
10666
|
+
}, undefined>, undefined>;
|
|
10667
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10668
|
+
}, undefined>, v.ObjectSchema<{
|
|
10669
|
+
readonly id: v.StringSchema<undefined>;
|
|
10670
|
+
readonly result: v.ObjectSchema<{
|
|
10671
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
10672
|
+
}, undefined>;
|
|
10673
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
10674
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
10675
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
10676
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
10677
|
+
readonly message: v.StringSchema<undefined>;
|
|
10678
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
10679
|
+
}, undefined>], undefined>, undefined>;
|
|
10680
|
+
}, undefined>, undefined>;
|
|
10681
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
10493
10682
|
}, undefined>, v.ObjectSchema<{
|
|
10494
10683
|
readonly id: v.StringSchema<undefined>;
|
|
10495
10684
|
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
@@ -11126,15 +11315,13 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11126
11315
|
}, "id" | "source">;
|
|
11127
11316
|
readonly "~standard": v.StandardProps<{
|
|
11128
11317
|
name: string;
|
|
11129
|
-
chain: "bitcoin";
|
|
11130
|
-
blockExplorerUrl?: string | undefined;
|
|
11131
11318
|
mode: string;
|
|
11319
|
+
blockExplorerUrl?: string | undefined;
|
|
11320
|
+
chain: "bitcoin";
|
|
11132
11321
|
xverseApiUrl: string;
|
|
11133
11322
|
electrsApiUrl: string;
|
|
11134
11323
|
}, {
|
|
11135
11324
|
name: string;
|
|
11136
|
-
chain: "bitcoin";
|
|
11137
|
-
blockExplorerUrl?: string | undefined;
|
|
11138
11325
|
mode: v.EnumValues<{
|
|
11139
11326
|
readonly mainnet: "mainnet";
|
|
11140
11327
|
readonly testnet: "testnet";
|
|
@@ -11142,13 +11329,13 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11142
11329
|
readonly signet: "signet";
|
|
11143
11330
|
readonly regtest: "regtest";
|
|
11144
11331
|
}>;
|
|
11332
|
+
blockExplorerUrl?: string | undefined;
|
|
11333
|
+
chain: "bitcoin";
|
|
11145
11334
|
xverseApiUrl: string;
|
|
11146
11335
|
electrsApiUrl: string;
|
|
11147
11336
|
}>;
|
|
11148
11337
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11149
11338
|
name: string;
|
|
11150
|
-
chain: "bitcoin";
|
|
11151
|
-
blockExplorerUrl?: string | undefined;
|
|
11152
11339
|
mode: v.EnumValues<{
|
|
11153
11340
|
readonly mainnet: "mainnet";
|
|
11154
11341
|
readonly testnet: "testnet";
|
|
@@ -11156,22 +11343,22 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11156
11343
|
readonly signet: "signet";
|
|
11157
11344
|
readonly regtest: "regtest";
|
|
11158
11345
|
}>;
|
|
11346
|
+
blockExplorerUrl?: string | undefined;
|
|
11347
|
+
chain: "bitcoin";
|
|
11159
11348
|
xverseApiUrl: string;
|
|
11160
11349
|
electrsApiUrl: string;
|
|
11161
11350
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11162
11351
|
readonly "~types"?: {
|
|
11163
11352
|
readonly input: {
|
|
11164
11353
|
name: string;
|
|
11165
|
-
chain: "bitcoin";
|
|
11166
|
-
blockExplorerUrl?: string | undefined;
|
|
11167
11354
|
mode: string;
|
|
11355
|
+
blockExplorerUrl?: string | undefined;
|
|
11356
|
+
chain: "bitcoin";
|
|
11168
11357
|
xverseApiUrl: string;
|
|
11169
11358
|
electrsApiUrl: string;
|
|
11170
11359
|
};
|
|
11171
11360
|
readonly output: {
|
|
11172
11361
|
name: string;
|
|
11173
|
-
chain: "bitcoin";
|
|
11174
|
-
blockExplorerUrl?: string | undefined;
|
|
11175
11362
|
mode: v.EnumValues<{
|
|
11176
11363
|
readonly mainnet: "mainnet";
|
|
11177
11364
|
readonly testnet: "testnet";
|
|
@@ -11179,6 +11366,8 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11179
11366
|
readonly signet: "signet";
|
|
11180
11367
|
readonly regtest: "regtest";
|
|
11181
11368
|
}>;
|
|
11369
|
+
blockExplorerUrl?: string | undefined;
|
|
11370
|
+
chain: "bitcoin";
|
|
11182
11371
|
xverseApiUrl: string;
|
|
11183
11372
|
electrsApiUrl: string;
|
|
11184
11373
|
};
|
|
@@ -11216,46 +11405,46 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11216
11405
|
}, "id" | "source">;
|
|
11217
11406
|
readonly "~standard": v.StandardProps<{
|
|
11218
11407
|
name: string;
|
|
11219
|
-
chain: "spark";
|
|
11220
|
-
blockExplorerUrl?: string | undefined;
|
|
11221
11408
|
mode: string;
|
|
11409
|
+
blockExplorerUrl?: string | undefined;
|
|
11410
|
+
chain: "spark";
|
|
11222
11411
|
electrsApiUrl: string;
|
|
11223
11412
|
}, {
|
|
11224
11413
|
name: string;
|
|
11225
|
-
chain: "spark";
|
|
11226
|
-
blockExplorerUrl?: string | undefined;
|
|
11227
11414
|
mode: v.EnumValues<{
|
|
11228
11415
|
readonly mainnet: "mainnet";
|
|
11229
11416
|
readonly regtest: "regtest";
|
|
11230
11417
|
}>;
|
|
11418
|
+
blockExplorerUrl?: string | undefined;
|
|
11419
|
+
chain: "spark";
|
|
11231
11420
|
electrsApiUrl: string;
|
|
11232
11421
|
}>;
|
|
11233
11422
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11234
11423
|
name: string;
|
|
11235
|
-
chain: "spark";
|
|
11236
|
-
blockExplorerUrl?: string | undefined;
|
|
11237
11424
|
mode: v.EnumValues<{
|
|
11238
11425
|
readonly mainnet: "mainnet";
|
|
11239
11426
|
readonly regtest: "regtest";
|
|
11240
11427
|
}>;
|
|
11428
|
+
blockExplorerUrl?: string | undefined;
|
|
11429
|
+
chain: "spark";
|
|
11241
11430
|
electrsApiUrl: string;
|
|
11242
11431
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11243
11432
|
readonly "~types"?: {
|
|
11244
11433
|
readonly input: {
|
|
11245
11434
|
name: string;
|
|
11246
|
-
chain: "spark";
|
|
11247
|
-
blockExplorerUrl?: string | undefined;
|
|
11248
11435
|
mode: string;
|
|
11436
|
+
blockExplorerUrl?: string | undefined;
|
|
11437
|
+
chain: "spark";
|
|
11249
11438
|
electrsApiUrl: string;
|
|
11250
11439
|
};
|
|
11251
11440
|
readonly output: {
|
|
11252
11441
|
name: string;
|
|
11253
|
-
chain: "spark";
|
|
11254
|
-
blockExplorerUrl?: string | undefined;
|
|
11255
11442
|
mode: v.EnumValues<{
|
|
11256
11443
|
readonly mainnet: "mainnet";
|
|
11257
11444
|
readonly regtest: "regtest";
|
|
11258
11445
|
}>;
|
|
11446
|
+
blockExplorerUrl?: string | undefined;
|
|
11447
|
+
chain: "spark";
|
|
11259
11448
|
electrsApiUrl: string;
|
|
11260
11449
|
};
|
|
11261
11450
|
readonly issue: v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>;
|
|
@@ -11298,56 +11487,56 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11298
11487
|
}, "id" | "source">;
|
|
11299
11488
|
readonly "~standard": v.StandardProps<{
|
|
11300
11489
|
name: string;
|
|
11301
|
-
chain: "stacks";
|
|
11302
|
-
blockExplorerUrl?: string | undefined;
|
|
11303
11490
|
mode: string;
|
|
11491
|
+
blockExplorerUrl?: string | undefined;
|
|
11492
|
+
chain: "stacks";
|
|
11304
11493
|
xverseApiUrl: string;
|
|
11305
11494
|
stacksApiUrl: string;
|
|
11306
11495
|
}, {
|
|
11307
11496
|
name: string;
|
|
11308
|
-
chain: "stacks";
|
|
11309
|
-
blockExplorerUrl?: string | undefined;
|
|
11310
11497
|
mode: v.EnumValues<{
|
|
11311
11498
|
readonly mainnet: "mainnet";
|
|
11312
11499
|
readonly testnet: "testnet";
|
|
11313
11500
|
readonly devnet: "devnet";
|
|
11314
11501
|
readonly mocknet: "mocknet";
|
|
11315
11502
|
}>;
|
|
11503
|
+
blockExplorerUrl?: string | undefined;
|
|
11504
|
+
chain: "stacks";
|
|
11316
11505
|
xverseApiUrl: string;
|
|
11317
11506
|
stacksApiUrl: string;
|
|
11318
11507
|
}>;
|
|
11319
11508
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11320
11509
|
name: string;
|
|
11321
|
-
chain: "stacks";
|
|
11322
|
-
blockExplorerUrl?: string | undefined;
|
|
11323
11510
|
mode: v.EnumValues<{
|
|
11324
11511
|
readonly mainnet: "mainnet";
|
|
11325
11512
|
readonly testnet: "testnet";
|
|
11326
11513
|
readonly devnet: "devnet";
|
|
11327
11514
|
readonly mocknet: "mocknet";
|
|
11328
11515
|
}>;
|
|
11516
|
+
blockExplorerUrl?: string | undefined;
|
|
11517
|
+
chain: "stacks";
|
|
11329
11518
|
xverseApiUrl: string;
|
|
11330
11519
|
stacksApiUrl: string;
|
|
11331
11520
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11332
11521
|
readonly "~types"?: {
|
|
11333
11522
|
readonly input: {
|
|
11334
11523
|
name: string;
|
|
11335
|
-
chain: "stacks";
|
|
11336
|
-
blockExplorerUrl?: string | undefined;
|
|
11337
11524
|
mode: string;
|
|
11525
|
+
blockExplorerUrl?: string | undefined;
|
|
11526
|
+
chain: "stacks";
|
|
11338
11527
|
xverseApiUrl: string;
|
|
11339
11528
|
stacksApiUrl: string;
|
|
11340
11529
|
};
|
|
11341
11530
|
readonly output: {
|
|
11342
11531
|
name: string;
|
|
11343
|
-
chain: "stacks";
|
|
11344
|
-
blockExplorerUrl?: string | undefined;
|
|
11345
11532
|
mode: v.EnumValues<{
|
|
11346
11533
|
readonly mainnet: "mainnet";
|
|
11347
11534
|
readonly testnet: "testnet";
|
|
11348
11535
|
readonly devnet: "devnet";
|
|
11349
11536
|
readonly mocknet: "mocknet";
|
|
11350
11537
|
}>;
|
|
11538
|
+
blockExplorerUrl?: string | undefined;
|
|
11539
|
+
chain: "stacks";
|
|
11351
11540
|
xverseApiUrl: string;
|
|
11352
11541
|
stacksApiUrl: string;
|
|
11353
11542
|
};
|
|
@@ -11387,50 +11576,50 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11387
11576
|
}, "id" | "source">;
|
|
11388
11577
|
readonly "~standard": v.StandardProps<{
|
|
11389
11578
|
name: string;
|
|
11390
|
-
chain: "starknet";
|
|
11391
|
-
blockExplorerUrl?: string | undefined;
|
|
11392
11579
|
mode: string;
|
|
11580
|
+
blockExplorerUrl?: string | undefined;
|
|
11581
|
+
chain: "starknet";
|
|
11393
11582
|
xverseApiUrl: string;
|
|
11394
11583
|
rpcApiUrl: string;
|
|
11395
11584
|
}, {
|
|
11396
11585
|
name: string;
|
|
11397
|
-
chain: "starknet";
|
|
11398
|
-
blockExplorerUrl?: string | undefined;
|
|
11399
11586
|
mode: v.EnumValues<{
|
|
11400
11587
|
readonly mainnet: "mainnet";
|
|
11401
11588
|
readonly sepolia: "sepolia";
|
|
11402
11589
|
}>;
|
|
11590
|
+
blockExplorerUrl?: string | undefined;
|
|
11591
|
+
chain: "starknet";
|
|
11403
11592
|
xverseApiUrl: string;
|
|
11404
11593
|
rpcApiUrl: string;
|
|
11405
11594
|
}>;
|
|
11406
11595
|
readonly "~run": (dataset: v.UnknownDataset, config: v.Config<v.BaseIssue<unknown>>) => v.OutputDataset<{
|
|
11407
11596
|
name: string;
|
|
11408
|
-
chain: "starknet";
|
|
11409
|
-
blockExplorerUrl?: string | undefined;
|
|
11410
11597
|
mode: v.EnumValues<{
|
|
11411
11598
|
readonly mainnet: "mainnet";
|
|
11412
11599
|
readonly sepolia: "sepolia";
|
|
11413
11600
|
}>;
|
|
11601
|
+
blockExplorerUrl?: string | undefined;
|
|
11602
|
+
chain: "starknet";
|
|
11414
11603
|
xverseApiUrl: string;
|
|
11415
11604
|
rpcApiUrl: string;
|
|
11416
11605
|
}, v.LiteralIssue | v.StringIssue | v.ObjectIssue | v.EnumIssue | v.UrlIssue<string> | v.UnionIssue<v.LiteralIssue | v.StringIssue | v.UrlIssue<string>>>;
|
|
11417
11606
|
readonly "~types"?: {
|
|
11418
11607
|
readonly input: {
|
|
11419
11608
|
name: string;
|
|
11420
|
-
chain: "starknet";
|
|
11421
|
-
blockExplorerUrl?: string | undefined;
|
|
11422
11609
|
mode: string;
|
|
11610
|
+
blockExplorerUrl?: string | undefined;
|
|
11611
|
+
chain: "starknet";
|
|
11423
11612
|
xverseApiUrl: string;
|
|
11424
11613
|
rpcApiUrl: string;
|
|
11425
11614
|
};
|
|
11426
11615
|
readonly output: {
|
|
11427
11616
|
name: string;
|
|
11428
|
-
chain: "starknet";
|
|
11429
|
-
blockExplorerUrl?: string | undefined;
|
|
11430
11617
|
mode: v.EnumValues<{
|
|
11431
11618
|
readonly mainnet: "mainnet";
|
|
11432
11619
|
readonly sepolia: "sepolia";
|
|
11433
11620
|
}>;
|
|
11621
|
+
blockExplorerUrl?: string | undefined;
|
|
11622
|
+
chain: "starknet";
|
|
11434
11623
|
xverseApiUrl: string;
|
|
11435
11624
|
rpcApiUrl: string;
|
|
11436
11625
|
};
|
|
@@ -11526,6 +11715,13 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11526
11715
|
readonly method: v.LiteralSchema<"wallet_getWalletType", undefined>;
|
|
11527
11716
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
11528
11717
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11718
|
+
}, undefined>, v.ObjectSchema<{
|
|
11719
|
+
readonly id: v.StringSchema<undefined>;
|
|
11720
|
+
readonly method: v.LiteralSchema<"wallet_open", undefined>;
|
|
11721
|
+
readonly params: v.ObjectSchema<{
|
|
11722
|
+
readonly path: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
11723
|
+
}, undefined>;
|
|
11724
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11529
11725
|
}, undefined>, v.ObjectSchema<{
|
|
11530
11726
|
readonly id: v.StringSchema<undefined>;
|
|
11531
11727
|
readonly method: v.LiteralSchema<"wallet_openBridge", undefined>;
|
|
@@ -11570,6 +11766,22 @@ declare const rpcRequestSchema: v.VariantSchema<"method", [v.VariantSchema<"meth
|
|
|
11570
11766
|
}, undefined>;
|
|
11571
11767
|
}, undefined>], undefined>, undefined>;
|
|
11572
11768
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11769
|
+
}, undefined>, v.ObjectSchema<{
|
|
11770
|
+
readonly id: v.StringSchema<undefined>;
|
|
11771
|
+
readonly method: v.LiteralSchema<"wallet_sign", undefined>;
|
|
11772
|
+
readonly params: v.VariantSchema<"algorithm", [v.ObjectSchema<{
|
|
11773
|
+
readonly algorithm: v.LiteralSchema<"Ed25519", undefined>;
|
|
11774
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
11775
|
+
}, undefined>, v.ObjectSchema<{
|
|
11776
|
+
readonly algorithm: v.LiteralSchema<"Ed25519ph", undefined>;
|
|
11777
|
+
readonly payload: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.HexadecimalAction<string, undefined>]>;
|
|
11778
|
+
}, undefined>], undefined>;
|
|
11779
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11780
|
+
}, undefined>, v.ObjectSchema<{
|
|
11781
|
+
readonly id: v.StringSchema<undefined>;
|
|
11782
|
+
readonly method: v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
11783
|
+
readonly params: v.ObjectSchema<{}, undefined>;
|
|
11784
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
11573
11785
|
}, undefined>, v.ObjectSchema<{
|
|
11574
11786
|
readonly id: v.StringSchema<undefined>;
|
|
11575
11787
|
readonly method: v.LiteralSchema<"wallet_switchNetwork", undefined>;
|
|
@@ -13300,6 +13512,18 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
|
|
|
13300
13512
|
}, undefined>], undefined>, undefined>;
|
|
13301
13513
|
}, undefined>, undefined>;
|
|
13302
13514
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13515
|
+
}, undefined>, v.ObjectSchema<{
|
|
13516
|
+
readonly id: v.StringSchema<undefined>;
|
|
13517
|
+
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
13518
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_open", undefined>;
|
|
13519
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
13520
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
13521
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
13522
|
+
readonly message: v.StringSchema<undefined>;
|
|
13523
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
13524
|
+
}, undefined>], undefined>, undefined>;
|
|
13525
|
+
}, undefined>, undefined>;
|
|
13526
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13303
13527
|
}, undefined>, v.ObjectSchema<{
|
|
13304
13528
|
readonly id: v.StringSchema<undefined>;
|
|
13305
13529
|
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
@@ -13366,6 +13590,35 @@ declare const rpcSuccessResponseSchema: v.VariantSchema<"~sats-connect-method",
|
|
|
13366
13590
|
}, undefined>], undefined>, undefined>;
|
|
13367
13591
|
}, undefined>, undefined>;
|
|
13368
13592
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13593
|
+
}, undefined>, v.ObjectSchema<{
|
|
13594
|
+
readonly id: v.StringSchema<undefined>;
|
|
13595
|
+
readonly result: v.ObjectSchema<{
|
|
13596
|
+
readonly signature: v.StringSchema<undefined>;
|
|
13597
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
13598
|
+
}, undefined>;
|
|
13599
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_sign", undefined>;
|
|
13600
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
13601
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
13602
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
13603
|
+
readonly message: v.StringSchema<undefined>;
|
|
13604
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
13605
|
+
}, undefined>], undefined>, undefined>;
|
|
13606
|
+
}, undefined>, undefined>;
|
|
13607
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13608
|
+
}, undefined>, v.ObjectSchema<{
|
|
13609
|
+
readonly id: v.StringSchema<undefined>;
|
|
13610
|
+
readonly result: v.ObjectSchema<{
|
|
13611
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
13612
|
+
}, undefined>;
|
|
13613
|
+
readonly '~sats-connect-method': v.LiteralSchema<"wallet_getEdDsaPublicKey", undefined>;
|
|
13614
|
+
readonly extensions: v.OptionalSchema<v.ObjectSchema<{
|
|
13615
|
+
readonly warnings: v.ArraySchema<v.VariantSchema<"code", [v.ObjectSchema<{
|
|
13616
|
+
readonly code: v.LiteralSchema<"DEPRECATION_NOTICE", undefined>;
|
|
13617
|
+
readonly message: v.StringSchema<undefined>;
|
|
13618
|
+
readonly sunsetDate: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.IsoDateAction<string, undefined>]>;
|
|
13619
|
+
}, undefined>], undefined>, undefined>;
|
|
13620
|
+
}, undefined>, undefined>;
|
|
13621
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
13369
13622
|
}, undefined>, v.ObjectSchema<{
|
|
13370
13623
|
readonly id: v.StringSchema<undefined>;
|
|
13371
13624
|
readonly result: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
@@ -13496,7 +13749,7 @@ type RequestReturn<M extends Method> = {
|
|
|
13496
13749
|
error: SpecErrorResponse['error'];
|
|
13497
13750
|
status: 'error';
|
|
13498
13751
|
};
|
|
13499
|
-
declare const request: <const M extends Method
|
|
13752
|
+
declare const request: <const M extends Method>(method: M, params: RpcRequestParams<M>,
|
|
13500
13753
|
/**
|
|
13501
13754
|
* The providerId is the object path to the provider in the window object.
|
|
13502
13755
|
* E.g., a provider available at `window.Foo.BarProvider` would have a
|
|
@@ -13856,4 +14109,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
13856
14109
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
13857
14110
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
13858
14111
|
//#endregion
|
|
13859
|
-
export { AccountChangeCallback, AccountChangeEvent, AddListener, Address, AddressPurpose, AddressType, AllResolvedNetworks, BaseAdapter, BitcoinGetAccountsParams, BitcoinGetAccountsRequest, BitcoinGetAccountsResult, BitcoinGetAccountsSuccessResponse, BitcoinGetAddressesParams, BitcoinGetAddressesRequest, BitcoinGetAddressesResult, BitcoinGetAddressesSuccessResponse, BitcoinGetAddressesV2Params, BitcoinGetAddressesV2Request, BitcoinGetAddressesV2Result, BitcoinGetAddressesV2SuccessResponse, BitcoinGetBalanceParams, BitcoinGetBalanceRequest, BitcoinGetBalanceResult, BitcoinGetBalanceSuccessResponse, BitcoinGetBalanceV2Params, BitcoinGetBalanceV2Request, BitcoinGetBalanceV2Result, BitcoinGetBalanceV2SuccessResponse, BitcoinGetInfoParams, BitcoinGetInfoRequest, BitcoinGetInfoResult, BitcoinGetInfoSuccessResponse, BitcoinMethod, BitcoinNetwork, BitcoinNetworkConfigurationOptions, BitcoinNetworkType, BitcoinProvider, BitcoinRequests, BitcoinSendTransferParams, BitcoinSendTransferRequest, BitcoinSendTransferResult, BitcoinSendTransferSuccessResponse, BitcoinSendTransferV2Params, BitcoinSendTransferV2Request, BitcoinSendTransferV2Result, BitcoinSendTransferV2SuccessResponse, BitcoinSignMessageParams, BitcoinSignMessageRequest, BitcoinSignMessageResult, BitcoinSignMessageSuccessResponse, BitcoinSignMessageV2Params, BitcoinSignMessageV2Request, BitcoinSignMessageV2Result, BitcoinSignMessageV2SuccessResponse, BitcoinSignMultipleMessagesParams, BitcoinSignMultipleMessagesRequest, BitcoinSignMultipleMessagesResult, BitcoinSignMultipleMessagesSuccessResponse, BitcoinSignMultipleMessagesV2Params, BitcoinSignMultipleMessagesV2Request, BitcoinSignMultipleMessagesV2Result, BitcoinSignMultipleMessagesV2SuccessResponse, BitcoinSignPsbtParams, BitcoinSignPsbtRequest, BitcoinSignPsbtResult, BitcoinSignPsbtSuccessResponse, BitcoinSignPsbtV2Params, BitcoinSignPsbtV2Request, BitcoinSignPsbtV2Result, BitcoinSignPsbtV2SuccessResponse, BitcoinSuccessResponses, Capability, CreateInscriptionOptions, CreateInscriptionPayload, CreateInscriptionResponse, CreateRepeatInscriptionsOptions, CreateRepeatInscriptionsPayload, CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, DisconnectCallback, DisconnectEvent, GetAddressOptions, GetAddressPayload, GetAddressResponse, GetCapabilitiesOptions, GetCapabilitiesPayload, GetCapabilitiesResponse, InputToSign, ListenerInfo, MessageSigningProtocols, Method, NetworkChangeCallback, NetworkChangeEvent, NetworkChangeEventV2, NetworkConfigurationOptions, OrdinalsGetInscriptionsParams, OrdinalsGetInscriptionsRequest, OrdinalsGetInscriptionsResult, OrdinalsGetInscriptionsSuccessResponse, OrdinalsMethod, OrdinalsRequests, OrdinalsSendInscriptionsParams, OrdinalsSendInscriptionsRequest, OrdinalsSendInscriptionsResult, OrdinalsSendInscriptionsSuccessResponse, OrdinalsSuccessResponses, PermissionWithoutClientId, Provider, ProviderPlatform, PsbtPayload, Recipient, RequestOptions, RequestPayload, RequestReturn, RpcErrorCode, RpcId, RpcRequest, RpcRequestParams, RpcRequests, RpcSuccessResponse, RpcSuccessResponseResult, RpcSuccessResponses, RunesEstimateEtchParams, RunesEstimateEtchRequest, RunesEstimateEtchResult, RunesEstimateEtchSuccessResponse, RunesEstimateMintParams, RunesEstimateMintRequest, RunesEstimateMintResult, RunesEstimateMintSuccessResponse, RunesEstimateRbfOrderParams, RunesEstimateRbfOrderRequest, RunesEstimateRbfOrderResult, RunesEstimateRbfOrderSuccessResponse, RunesEtchParams, RunesEtchRequest, RunesEtchResult, RunesEtchSuccessResponse, RunesGetBalanceParams, RunesGetBalanceRequest, RunesGetBalanceResult, RunesGetBalanceSuccessResponse, RunesGetOrderParams, RunesGetOrderRequest, RunesGetOrderResult, RunesGetOrderSuccessResponse, RunesMethod, RunesMintParams, RunesMintRequest, RunesMintResult, RunesMintSuccessResponse, RunesRbfOrderParams, RunesRbfOrderRequest, RunesRbfOrderResult, RunesRbfOrderSuccessResponse, RunesRequests, RunesSuccessResponses, RunesTransferParams, RunesTransferRequest, RunesTransferResult, RunesTransferSuccessResponse, SatsConnectAdapter, SendBtcTransactionOptions, SendBtcTransactionPayload, SendBtcTransactionResponse, SerializedRecipient, SerializedSendBtcTransactionPayload, SignMessageOptions, SignMessagePayload, SignMessageResponse, SignMultiplePsbtPayload, SignMultipleTransactionOptions, SignMultipleTransactionsPayload, SignMultipleTransactionsResponse, SignTransactionOptions, SignTransactionPayload, SignTransactionResponse, SparkFlashnetClawbackFundsParams, SparkFlashnetClawbackFundsRequest, SparkFlashnetClawbackFundsResult, SparkFlashnetClawbackFundsSuccessResponse, SparkFlashnetExecuteRouteSwapParams, SparkFlashnetExecuteRouteSwapRequest, SparkFlashnetExecuteRouteSwapResult, SparkFlashnetExecuteRouteSwapSuccessResponse, SparkFlashnetExecuteSwapParams, SparkFlashnetExecuteSwapRequest, SparkFlashnetExecuteSwapResult, SparkFlashnetExecuteSwapSuccessResponse, SparkFlashnetGetJwtParams, SparkFlashnetGetJwtRequest, SparkFlashnetGetJwtResult, SparkFlashnetGetJwtSuccessResponse, SparkFlashnetSignIntentParams, SparkFlashnetSignIntentRequest, SparkFlashnetSignIntentResult, SparkFlashnetSignIntentSuccessResponse, SparkFlashnetSignStructuredMessageParams, SparkFlashnetSignStructuredMessageRequest, SparkFlashnetSignStructuredMessageResult, SparkFlashnetSignStructuredMessageSuccessResponse, SparkGetAddressesParams, SparkGetAddressesRequest, SparkGetAddressesResult, SparkGetAddressesSuccessResponse, SparkGetAddressesV2Params, SparkGetAddressesV2Request, SparkGetAddressesV2Result, SparkGetAddressesV2SuccessResponse, SparkGetBalanceParams, SparkGetBalanceRequest, SparkGetBalanceResult, SparkGetBalanceSuccessResponse, SparkGetClawbackEligibleTransfersParams, SparkGetClawbackEligibleTransfersRequest, SparkGetClawbackEligibleTransfersResult, SparkGetClawbackEligibleTransfersSuccessResponse, SparkMethod, SparkNetworkConfigurationOptions, SparkNetworkType, SparkRequests, SparkSignMessageParams, SparkSignMessageRequest, SparkSignMessageResult, SparkSignMessageSuccessResponse, SparkSuccessResponses, SparkTransferParams, SparkTransferRequest, SparkTransferResult, SparkTransferSuccessResponse, SparkTransferTokenParams, SparkTransferTokenRequest, SparkTransferTokenResult, SparkTransferTokenSuccessResponse, SpecErrorObject, SpecErrorResponse, SpecId, SpecRequest, SpecResponse, SpecSuccessResponse, SpecSuccessWithExtensionsResponse, StacksCallContractParams, StacksCallContractRequest, StacksCallContractResult, StacksCallContractSuccessResponse, StacksDeployContractParams, StacksDeployContractRequest, StacksDeployContractResult, StacksDeployContractSuccessResponse, StacksGetAccountsParams, StacksGetAccountsRequest, StacksGetAccountsResult, StacksGetAccountsSuccessResponse, StacksGetAddressesParams, StacksGetAddressesRequest, StacksGetAddressesResult, StacksGetAddressesSuccessResponse, StacksMethod, StacksNetworkConfigurationOptions, StacksNetworkType, StacksRequests, StacksSignMessageParams, StacksSignMessageRequest, StacksSignMessageResult, StacksSignMessageSuccessResponse, StacksSignStructuredMessageParams, StacksSignStructuredMessageRequest, StacksSignStructuredMessageResult, StacksSignStructuredMessageSuccessResponse, StacksSignTransactionParams, StacksSignTransactionRequest, StacksSignTransactionResult, StacksSignTransactionSuccessResponse, StacksSignTransactionsParams, StacksSignTransactionsRequest, StacksSignTransactionsResult, StacksSignTransactionsSuccessResponse, StacksSuccessResponses, StacksTransferStxParams, StacksTransferStxRequest, StacksTransferStxResult, StacksTransferStxSuccessResponse, StarknetNetworkConfigurationOptions, StarknetNetworkType, SupportState, SupportedWallet, WalletAddNetworkParams, WalletAddNetworkRequest, WalletAddNetworkResult, WalletAddNetworkSuccessResponse, WalletAddNetworkV2Params, WalletAddNetworkV2Request, WalletAddNetworkV2Result, WalletAddNetworkV2SuccessResponse, WalletChangeNetworkParams, WalletChangeNetworkRequest, WalletChangeNetworkResult, WalletChangeNetworkSuccessResponse, WalletConnectParams, WalletConnectRequest, WalletConnectResult, WalletConnectSuccessResponse, WalletConnectV2Params, WalletConnectV2Request, WalletConnectV2Result, WalletConnectV2SuccessResponse, WalletDisconnectParams, WalletDisconnectRequest, WalletDisconnectResult, WalletDisconnectSuccessResponse, WalletEvent, WalletGetAccountParams, WalletGetAccountRequest, WalletGetAccountResult, WalletGetAccountSuccessResponse, WalletGetAccountV2Params, WalletGetAccountV2Request, WalletGetAccountV2Result, WalletGetAccountV2SuccessResponse, WalletGetCurrentPermissionsParams, WalletGetCurrentPermissionsRequest, WalletGetCurrentPermissionsResult, WalletGetCurrentPermissionsSuccessResponse, WalletGetNetworkParams, WalletGetNetworkRequest, WalletGetNetworkResult, WalletGetNetworkSuccessResponse, WalletGetNetworksParams, WalletGetNetworksRequest, WalletGetNetworksResult, WalletGetNetworksSuccessResponse, WalletGetWalletTypeParams, WalletGetWalletTypeRequest, WalletGetWalletTypeResult, WalletGetWalletTypeSuccessResponse, WalletMethod, WalletOpenBridgeParams, WalletOpenBridgeRequest, WalletOpenBridgeResult, WalletOpenBridgeSuccessResponse, WalletOpenBuyParams, WalletOpenBuyRequest, WalletOpenBuyResult, WalletOpenBuySuccessResponse, WalletOpenReceiveParams, WalletOpenReceiveRequest, WalletOpenReceiveResult, WalletOpenReceiveSuccessResponse, WalletRenouncePermissionsParams, WalletRenouncePermissionsRequest, WalletRenouncePermissionsResult, WalletRenouncePermissionsSuccessResponse, WalletRequestPermissionsParams, WalletRequestPermissionsRequest, WalletRequestPermissionsResult, WalletRequestPermissionsSuccessResponse, WalletRequests, WalletSuccessResponses, WalletSwitchNetworkParams, WalletSwitchNetworkRequest, WalletSwitchNetworkResult, WalletSwitchNetworkSuccessResponse, WalletType, Warning, accountChangeEventName, accountChangeSchema, addListener, addressSchema, allResolvedNetworksSchema, bitcoinGetAccountsParamsSchema, bitcoinGetAccountsRequestSchema, bitcoinGetAccountsResultSchema, bitcoinGetAccountsSuccessResponseSchema, bitcoinGetAddressesParamsSchema, bitcoinGetAddressesRequestSchema, bitcoinGetAddressesResultSchema, bitcoinGetAddressesSuccessResponseSchema, bitcoinGetAddressesV2ParamsSchema, bitcoinGetAddressesV2RequestSchema, bitcoinGetAddressesV2ResultSchema, bitcoinGetAddressesV2SuccessResponseSchema, bitcoinGetBalanceParamsSchema, bitcoinGetBalanceRequestSchema, bitcoinGetBalanceResultSchema, bitcoinGetBalanceSuccessResponseSchema, bitcoinGetBalanceV2ParamsSchema, bitcoinGetBalanceV2RequestSchema, bitcoinGetBalanceV2ResultSchema, bitcoinGetBalanceV2SuccessResponseSchema, bitcoinGetInfoParamsSchema, bitcoinGetInfoRequestSchema, bitcoinGetInfoResultSchema, bitcoinGetInfoSuccessResponseSchema, bitcoinMethods, bitcoinModeToLegacyBitcoinNetworkType, bitcoinNetworkConfigurationOptionsSchema, bitcoinRequestSchema, bitcoinSendTransferParamsSchema, bitcoinSendTransferRequestSchema, bitcoinSendTransferResultSchema, bitcoinSendTransferSuccessResponseSchema, bitcoinSendTransferV2ParamsSchema, bitcoinSendTransferV2RequestSchema, bitcoinSendTransferV2ResultSchema, bitcoinSendTransferV2SuccessResponseSchema, bitcoinSignMessageParamsSchema, bitcoinSignMessageRequestSchema, bitcoinSignMessageResultSchema, bitcoinSignMessageSuccessResponseSchema, bitcoinSignMessageV2ParamsSchema, bitcoinSignMessageV2RequestSchema, bitcoinSignMessageV2ResultSchema, bitcoinSignMessageV2SuccessResponseSchema, bitcoinSignMultipleMessagesParamsSchema, bitcoinSignMultipleMessagesRequestSchema, bitcoinSignMultipleMessagesResultSchema, bitcoinSignMultipleMessagesSuccessResponseSchema, bitcoinSignMultipleMessagesV2ParamsSchema, bitcoinSignMultipleMessagesV2RequestSchema, bitcoinSignMultipleMessagesV2ResultSchema, bitcoinSignMultipleMessagesV2SuccessResponseSchema, bitcoinSignPsbtParamsSchema, bitcoinSignPsbtRequestSchema, bitcoinSignPsbtResultSchema, bitcoinSignPsbtSuccessResponseSchema, bitcoinSignPsbtV2ParamsSchema, bitcoinSignPsbtV2RequestSchema, bitcoinSignPsbtV2ResultSchema, bitcoinSignPsbtV2SuccessResponseSchema, bitcoinSuccessResponseSchema, createInscription, createRepeatInscriptions, createRpcRequest, createRpcSuccessResponse, defaultAdapters, 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, walletOpenReceiveParamsSchema, walletOpenReceiveRequestSchema, walletOpenReceiveResultSchema, walletOpenReceiveSuccessResponseSchema, walletRenouncePermissionsParamsSchema, walletRenouncePermissionsRequestSchema, walletRenouncePermissionsResultSchema, walletRenouncePermissionsSuccessResponseSchema, walletRequestPermissionsParamsSchema, walletRequestPermissionsRequestSchema, walletRequestPermissionsResultSchema, walletRequestPermissionsSuccessResponseSchema, walletRequestSchema, walletSuccessResponseSchema, walletSwitchNetworkParamsSchema, walletSwitchNetworkRequestSchema, walletSwitchNetworkResultSchema, walletSwitchNetworkSuccessResponseSchema, walletTypeSchema, walletTypes };
|
|
14112
|
+
export { AccountChangeCallback, AccountChangeEvent, AddListener, Address, AddressPurpose, AddressType, AllResolvedNetworks, BaseAdapter, BitcoinGetAccountsParams, BitcoinGetAccountsRequest, BitcoinGetAccountsResult, BitcoinGetAccountsSuccessResponse, BitcoinGetAddressesParams, BitcoinGetAddressesRequest, BitcoinGetAddressesResult, BitcoinGetAddressesSuccessResponse, BitcoinGetAddressesV2Params, BitcoinGetAddressesV2Request, BitcoinGetAddressesV2Result, BitcoinGetAddressesV2SuccessResponse, BitcoinGetBalanceParams, BitcoinGetBalanceRequest, BitcoinGetBalanceResult, BitcoinGetBalanceSuccessResponse, BitcoinGetBalanceV2Params, BitcoinGetBalanceV2Request, BitcoinGetBalanceV2Result, BitcoinGetBalanceV2SuccessResponse, BitcoinGetInfoParams, BitcoinGetInfoRequest, BitcoinGetInfoResult, BitcoinGetInfoSuccessResponse, BitcoinMethod, BitcoinNetwork, BitcoinNetworkConfigurationOptions, BitcoinNetworkType, BitcoinProvider, BitcoinRequests, BitcoinSendTransferParams, BitcoinSendTransferRequest, BitcoinSendTransferResult, BitcoinSendTransferSuccessResponse, BitcoinSendTransferV2Params, BitcoinSendTransferV2Request, BitcoinSendTransferV2Result, BitcoinSendTransferV2SuccessResponse, BitcoinSignMessageParams, BitcoinSignMessageRequest, BitcoinSignMessageResult, BitcoinSignMessageSuccessResponse, BitcoinSignMessageV2Params, BitcoinSignMessageV2Request, BitcoinSignMessageV2Result, BitcoinSignMessageV2SuccessResponse, BitcoinSignMultipleMessagesParams, BitcoinSignMultipleMessagesRequest, BitcoinSignMultipleMessagesResult, BitcoinSignMultipleMessagesSuccessResponse, BitcoinSignMultipleMessagesV2Params, BitcoinSignMultipleMessagesV2Request, BitcoinSignMultipleMessagesV2Result, BitcoinSignMultipleMessagesV2SuccessResponse, BitcoinSignPsbtParams, BitcoinSignPsbtRequest, BitcoinSignPsbtResult, BitcoinSignPsbtSuccessResponse, BitcoinSignPsbtV2Params, BitcoinSignPsbtV2Request, BitcoinSignPsbtV2Result, BitcoinSignPsbtV2SuccessResponse, BitcoinSuccessResponses, Capability, CreateInscriptionOptions, CreateInscriptionPayload, CreateInscriptionResponse, CreateRepeatInscriptionsOptions, CreateRepeatInscriptionsPayload, CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, DisconnectCallback, DisconnectEvent, GetAddressOptions, GetAddressPayload, GetAddressResponse, GetCapabilitiesOptions, GetCapabilitiesPayload, GetCapabilitiesResponse, InputToSign, ListenerInfo, MessageSigningProtocols, Method, NetworkChangeCallback, NetworkChangeEvent, NetworkChangeEventV2, NetworkConfigurationOptions, OrdinalsGetInscriptionsParams, OrdinalsGetInscriptionsRequest, OrdinalsGetInscriptionsResult, OrdinalsGetInscriptionsSuccessResponse, OrdinalsMethod, OrdinalsRequests, OrdinalsSendInscriptionsParams, OrdinalsSendInscriptionsRequest, OrdinalsSendInscriptionsResult, OrdinalsSendInscriptionsSuccessResponse, OrdinalsSuccessResponses, PermissionWithoutClientId, Provider, ProviderPlatform, PsbtPayload, Recipient, RequestOptions, RequestPayload, RequestReturn, RpcErrorCode, RpcId, RpcRequest, RpcRequestParams, RpcRequests, RpcSuccessResponse, RpcSuccessResponseResult, RpcSuccessResponses, RunesEstimateEtchParams, RunesEstimateEtchRequest, RunesEstimateEtchResult, RunesEstimateEtchSuccessResponse, RunesEstimateMintParams, RunesEstimateMintRequest, RunesEstimateMintResult, RunesEstimateMintSuccessResponse, RunesEstimateRbfOrderParams, RunesEstimateRbfOrderRequest, RunesEstimateRbfOrderResult, RunesEstimateRbfOrderSuccessResponse, RunesEtchParams, RunesEtchRequest, RunesEtchResult, RunesEtchSuccessResponse, RunesGetBalanceParams, RunesGetBalanceRequest, RunesGetBalanceResult, RunesGetBalanceSuccessResponse, RunesGetOrderParams, RunesGetOrderRequest, RunesGetOrderResult, RunesGetOrderSuccessResponse, RunesMethod, RunesMintParams, RunesMintRequest, RunesMintResult, RunesMintSuccessResponse, RunesRbfOrderParams, RunesRbfOrderRequest, RunesRbfOrderResult, RunesRbfOrderSuccessResponse, RunesRequests, RunesSuccessResponses, RunesTransferParams, RunesTransferRequest, RunesTransferResult, RunesTransferSuccessResponse, SatsConnectAdapter, SendBtcTransactionOptions, SendBtcTransactionPayload, SendBtcTransactionResponse, SerializedRecipient, SerializedSendBtcTransactionPayload, SignMessageOptions, SignMessagePayload, SignMessageResponse, SignMultiplePsbtPayload, SignMultipleTransactionOptions, SignMultipleTransactionsPayload, SignMultipleTransactionsResponse, SignTransactionOptions, SignTransactionPayload, SignTransactionResponse, SparkFlashnetClawbackFundsParams, SparkFlashnetClawbackFundsRequest, SparkFlashnetClawbackFundsResult, SparkFlashnetClawbackFundsSuccessResponse, SparkFlashnetExecuteRouteSwapParams, SparkFlashnetExecuteRouteSwapRequest, SparkFlashnetExecuteRouteSwapResult, SparkFlashnetExecuteRouteSwapSuccessResponse, SparkFlashnetExecuteSwapParams, SparkFlashnetExecuteSwapRequest, SparkFlashnetExecuteSwapResult, SparkFlashnetExecuteSwapSuccessResponse, SparkFlashnetGetJwtParams, SparkFlashnetGetJwtRequest, SparkFlashnetGetJwtResult, SparkFlashnetGetJwtSuccessResponse, SparkFlashnetSignIntentParams, SparkFlashnetSignIntentRequest, SparkFlashnetSignIntentResult, SparkFlashnetSignIntentSuccessResponse, SparkFlashnetSignStructuredMessageParams, SparkFlashnetSignStructuredMessageRequest, SparkFlashnetSignStructuredMessageResult, SparkFlashnetSignStructuredMessageSuccessResponse, SparkGetAddressesParams, SparkGetAddressesRequest, SparkGetAddressesResult, SparkGetAddressesSuccessResponse, SparkGetAddressesV2Params, SparkGetAddressesV2Request, SparkGetAddressesV2Result, SparkGetAddressesV2SuccessResponse, SparkGetBalanceParams, SparkGetBalanceRequest, SparkGetBalanceResult, SparkGetBalanceSuccessResponse, SparkGetClawbackEligibleTransfersParams, SparkGetClawbackEligibleTransfersRequest, SparkGetClawbackEligibleTransfersResult, SparkGetClawbackEligibleTransfersSuccessResponse, SparkMethod, SparkNetworkConfigurationOptions, SparkNetworkType, SparkRequests, SparkSignMessageParams, SparkSignMessageRequest, SparkSignMessageResult, SparkSignMessageSuccessResponse, SparkSuccessResponses, SparkTransferParams, SparkTransferRequest, SparkTransferResult, SparkTransferSuccessResponse, SparkTransferTokenParams, SparkTransferTokenRequest, SparkTransferTokenResult, SparkTransferTokenSuccessResponse, SpecErrorObject, SpecErrorResponse, SpecId, SpecRequest, SpecResponse, SpecSuccessResponse, SpecSuccessWithExtensionsResponse, StacksCallContractParams, StacksCallContractRequest, StacksCallContractResult, StacksCallContractSuccessResponse, StacksDeployContractParams, StacksDeployContractRequest, StacksDeployContractResult, StacksDeployContractSuccessResponse, StacksGetAccountsParams, StacksGetAccountsRequest, StacksGetAccountsResult, StacksGetAccountsSuccessResponse, StacksGetAddressesParams, StacksGetAddressesRequest, StacksGetAddressesResult, StacksGetAddressesSuccessResponse, StacksMethod, StacksNetworkConfigurationOptions, StacksNetworkType, StacksRequests, StacksSignMessageParams, StacksSignMessageRequest, StacksSignMessageResult, StacksSignMessageSuccessResponse, StacksSignStructuredMessageParams, StacksSignStructuredMessageRequest, StacksSignStructuredMessageResult, StacksSignStructuredMessageSuccessResponse, StacksSignTransactionParams, StacksSignTransactionRequest, StacksSignTransactionResult, StacksSignTransactionSuccessResponse, StacksSignTransactionsParams, StacksSignTransactionsRequest, StacksSignTransactionsResult, StacksSignTransactionsSuccessResponse, StacksSuccessResponses, StacksTransferStxParams, StacksTransferStxRequest, StacksTransferStxResult, StacksTransferStxSuccessResponse, StarknetNetworkConfigurationOptions, StarknetNetworkType, SupportState, SupportedWallet, WalletAddNetworkParams, WalletAddNetworkRequest, WalletAddNetworkResult, WalletAddNetworkSuccessResponse, WalletAddNetworkV2Params, WalletAddNetworkV2Request, WalletAddNetworkV2Result, WalletAddNetworkV2SuccessResponse, WalletChangeNetworkParams, WalletChangeNetworkRequest, WalletChangeNetworkResult, WalletChangeNetworkSuccessResponse, WalletConnectParams, WalletConnectRequest, WalletConnectResult, WalletConnectSuccessResponse, WalletConnectV2Params, WalletConnectV2Request, WalletConnectV2Result, WalletConnectV2SuccessResponse, WalletDisconnectParams, WalletDisconnectRequest, WalletDisconnectResult, WalletDisconnectSuccessResponse, WalletEvent, WalletGetAccountParams, WalletGetAccountRequest, WalletGetAccountResult, WalletGetAccountSuccessResponse, WalletGetAccountV2Params, WalletGetAccountV2Request, WalletGetAccountV2Result, WalletGetAccountV2SuccessResponse, WalletGetCurrentPermissionsParams, WalletGetCurrentPermissionsRequest, WalletGetCurrentPermissionsResult, WalletGetCurrentPermissionsSuccessResponse, 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 };
|