@sats-connect/core 0.4.0-e7d3e8d → 0.4.0-e8e6a66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -42,15 +42,15 @@ type SignMessageOptions = RequestOptions<SignMessagePayload, SignMessageResponse
42
42
 
43
43
  declare const signMessage: (options: SignMessageOptions) => Promise<void>;
44
44
 
45
- interface Recipient$2 {
45
+ interface Recipient$1 {
46
46
  address: string;
47
47
  amountSats: bigint;
48
48
  }
49
- type SerializedRecipient = Omit<Recipient$2, 'amountSats'> & {
49
+ type SerializedRecipient = Omit<Recipient$1, 'amountSats'> & {
50
50
  amountSats: string;
51
51
  };
52
52
  interface SendBtcTransactionPayload extends RequestPayload {
53
- recipients: Recipient$2[];
53
+ recipients: Recipient$1[];
54
54
  senderAddress: string;
55
55
  message?: string;
56
56
  }
@@ -455,61 +455,92 @@ declare const signMessageRequestMessageSchema: v.ObjectSchema<{
455
455
  }, undefined>;
456
456
  type SignMessageRequestMessage = v.InferOutput<typeof signMessageRequestMessageSchema>;
457
457
  type SignMessage = MethodParamsAndResult<v.InferOutput<typeof signMessageParamsSchema>, v.InferOutput<typeof signMessageResultSchema>>;
458
- type Recipient$1 = {
459
- /**
460
- * The recipient's address.
461
- **/
462
- address: string;
463
- /**
464
- * The amount to send to the recipient in satoshis.
465
- */
466
- amount: number;
467
- };
468
- type SendTransferParams = {
458
+ declare const sendTransferMethodName = "sendTransfer";
459
+ declare const sendTransferParamsSchema: v.ObjectSchema<{
469
460
  /**
470
461
  * Array of recipients to send to.
471
462
  * The amount to send to each recipient is in satoshis.
472
463
  */
473
- recipients: Array<Recipient$1>;
474
- };
475
- type SendTransferResult = {
464
+ readonly recipients: v.ArraySchema<v.ObjectSchema<{
465
+ readonly address: v.StringSchema<undefined>;
466
+ readonly amount: v.NumberSchema<undefined>;
467
+ }, undefined>, undefined>;
468
+ }, undefined>;
469
+ type SendTransferParams = v.InferOutput<typeof sendTransferParamsSchema>;
470
+ declare const sendTransferResultSchema: v.ObjectSchema<{
476
471
  /**
477
472
  * The transaction id as a hex-encoded string.
478
473
  */
479
- txid: string;
480
- };
474
+ readonly txid: v.StringSchema<undefined>;
475
+ }, undefined>;
476
+ type SendTransferResult = v.InferOutput<typeof sendTransferResultSchema>;
477
+ declare const sendTransferRequestMessageSchema: v.ObjectSchema<{
478
+ readonly method: v.LiteralSchema<"sendTransfer", undefined>;
479
+ readonly params: v.ObjectSchema<{
480
+ /**
481
+ * Array of recipients to send to.
482
+ * The amount to send to each recipient is in satoshis.
483
+ */
484
+ readonly recipients: v.ArraySchema<v.ObjectSchema<{
485
+ readonly address: v.StringSchema<undefined>;
486
+ readonly amount: v.NumberSchema<undefined>;
487
+ }, undefined>, undefined>;
488
+ }, undefined>;
489
+ readonly id: v.StringSchema<undefined>;
490
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
491
+ }, undefined>;
492
+ type SendTransferRequestMessage = v.InferOutput<typeof sendTransferRequestMessageSchema>;
481
493
  type SendTransfer = MethodParamsAndResult<SendTransferParams, SendTransferResult>;
482
- type SignPsbtParams = {
494
+ declare const signPsbtMethodName = "signPsbt";
495
+ declare const signPsbtParamsSchema: v.ObjectSchema<{
483
496
  /**
484
497
  * The base64 encoded PSBT to sign.
485
498
  */
486
- psbt: string;
499
+ readonly psbt: v.StringSchema<undefined>;
487
500
  /**
488
501
  * The inputs to sign.
489
502
  * The key is the address and the value is an array of indexes of the inputs to sign.
490
503
  */
491
- signInputs: Record<string, number[]>;
492
- /**
493
- * the sigHash type to use for signing.
494
- * will default to the sighash type of the input if not provided.
495
- **/
496
- allowedSignHash?: number;
504
+ readonly signInputs: v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>;
497
505
  /**
498
506
  * Whether to broadcast the transaction after signing.
499
507
  **/
500
- broadcast?: boolean;
501
- };
502
- type SignPsbtResult = {
508
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
509
+ }, undefined>;
510
+ type SignPsbtParams = v.InferOutput<typeof signPsbtParamsSchema>;
511
+ declare const signPsbtResultSchema: v.ObjectSchema<{
503
512
  /**
504
513
  * The base64 encoded PSBT after signing.
505
514
  */
506
- psbt: string;
515
+ readonly psbt: v.StringSchema<undefined>;
507
516
  /**
508
517
  * The transaction id as a hex-encoded string.
509
518
  * This is only returned if the transaction was broadcast.
510
519
  **/
511
- txid?: string;
512
- };
520
+ readonly txid: v.OptionalSchema<v.StringSchema<undefined>, never>;
521
+ }, undefined>;
522
+ type SignPsbtResult = v.InferOutput<typeof signPsbtResultSchema>;
523
+ declare const signPsbtRequestMessageSchema: v.ObjectSchema<{
524
+ readonly method: v.LiteralSchema<"signPsbt", undefined>;
525
+ readonly params: v.ObjectSchema<{
526
+ /**
527
+ * The base64 encoded PSBT to sign.
528
+ */
529
+ readonly psbt: v.StringSchema<undefined>;
530
+ /**
531
+ * The inputs to sign.
532
+ * The key is the address and the value is an array of indexes of the inputs to sign.
533
+ */
534
+ readonly signInputs: v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>;
535
+ /**
536
+ * Whether to broadcast the transaction after signing.
537
+ **/
538
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
539
+ }, undefined>;
540
+ readonly id: v.StringSchema<undefined>;
541
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
542
+ }, undefined>;
543
+ type SignPsbtRequestMessage = v.InferOutput<typeof signPsbtRequestMessageSchema>;
513
544
  type SignPsbt = MethodParamsAndResult<SignPsbtParams, SignPsbtResult>;
514
545
  declare const getAccountsMethodName = "getAccounts";
515
546
  declare const getAccountsParamsSchema: v.ObjectSchema<{
@@ -554,6 +585,7 @@ type GetAccountsRequestMessage = v.InferOutput<typeof getAccountsRequestMessageS
554
585
  type GetAccounts = MethodParamsAndResult<v.InferOutput<typeof getAccountsParamsSchema>, v.InferOutput<typeof getAccountsResultSchema>>;
555
586
  declare const getBalanceMethodName = "getBalance";
556
587
  declare const getBalanceParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
588
+ type GetBalanceParams = v.InferOutput<typeof getBalanceParamsSchema>;
557
589
  declare const getBalanceResultSchema: v.ObjectSchema<{
558
590
  /**
559
591
  * The confirmed balance of the wallet in sats. Using a string due to chrome
@@ -574,13 +606,15 @@ declare const getBalanceResultSchema: v.ObjectSchema<{
574
606
  */
575
607
  readonly total: v.StringSchema<undefined>;
576
608
  }, undefined>;
609
+ type GetBalanceResult = v.InferOutput<typeof getBalanceResultSchema>;
577
610
  declare const getBalanceRequestMessageSchema: v.ObjectSchema<{
578
611
  readonly method: v.LiteralSchema<"getBalance", undefined>;
579
612
  readonly id: v.StringSchema<undefined>;
580
613
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
581
614
  readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, never>;
582
615
  }, undefined>;
583
- type GetBalance = MethodParamsAndResult<v.InferOutput<typeof getBalanceParamsSchema>, v.InferOutput<typeof getBalanceResultSchema>>;
616
+ type GetBalanceRequestMessage = v.InferOutput<typeof getBalanceRequestMessageSchema>;
617
+ type GetBalance = MethodParamsAndResult<GetBalanceParams, GetBalanceResult>;
584
618
 
585
619
  declare const getInscriptionsMethodName = "ord_getInscriptions";
586
620
  declare const getInscriptionsParamsSchema: v.ObjectSchema<{
@@ -1049,46 +1083,491 @@ declare const stxSignTransactionRequestMessageSchema: v.ObjectSchema<{
1049
1083
  type StxSignTransactionRequestMessage = v.InferOutput<typeof stxSignTransactionRequestMessageSchema>;
1050
1084
  type StxSignTransaction = MethodParamsAndResult<StxSignTransactionParams, StxSignTransactionResult>;
1051
1085
 
1086
+ /**
1087
+ * Permissions with the clientId field omitted and optional actions. Used for
1088
+ * permission requests, since the wallet performs authentication based on the
1089
+ * client's tab origin and should not rely on the client authenticating
1090
+ * themselves.
1091
+ */
1092
+ declare const permissionTemplate: v.VariantSchema<"type", [v.ObjectSchema<{
1093
+ readonly actions: Omit<v.ObjectSchema<{
1094
+ readonly read: v.BooleanSchema<undefined>;
1095
+ readonly autoSign: v.BooleanSchema<undefined>;
1096
+ readonly rename: v.BooleanSchema<undefined>;
1097
+ }, undefined>, "_types" | "_run" | "entries"> & {
1098
+ readonly entries: {
1099
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1100
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1101
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1102
+ };
1103
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1104
+ read?: boolean | undefined;
1105
+ autoSign?: boolean | undefined;
1106
+ rename?: boolean | undefined;
1107
+ }, v.ObjectIssue | v.BooleanIssue>;
1108
+ readonly _types?: {
1109
+ readonly input: {
1110
+ read?: boolean | undefined;
1111
+ autoSign?: boolean | undefined;
1112
+ rename?: boolean | undefined;
1113
+ };
1114
+ readonly output: {
1115
+ read?: boolean | undefined;
1116
+ autoSign?: boolean | undefined;
1117
+ rename?: boolean | undefined;
1118
+ };
1119
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1120
+ } | undefined;
1121
+ };
1122
+ readonly type: v.LiteralSchema<"account", undefined>;
1123
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1124
+ }, undefined>, v.ObjectSchema<{
1125
+ readonly actions: Omit<v.ObjectSchema<{
1126
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1127
+ readonly openPopup: v.BooleanSchema<undefined>;
1128
+ readonly openFullPage: v.BooleanSchema<undefined>;
1129
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1130
+ }, undefined>, "_types" | "_run" | "entries"> & {
1131
+ readonly entries: {
1132
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1133
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1134
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1135
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1136
+ };
1137
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1138
+ addPrivateKey?: boolean | undefined;
1139
+ openPopup?: boolean | undefined;
1140
+ openFullPage?: boolean | undefined;
1141
+ readAllAccounts?: boolean | undefined;
1142
+ }, v.ObjectIssue | v.BooleanIssue>;
1143
+ readonly _types?: {
1144
+ readonly input: {
1145
+ addPrivateKey?: boolean | undefined;
1146
+ openPopup?: boolean | undefined;
1147
+ openFullPage?: boolean | undefined;
1148
+ readAllAccounts?: boolean | undefined;
1149
+ };
1150
+ readonly output: {
1151
+ addPrivateKey?: boolean | undefined;
1152
+ openPopup?: boolean | undefined;
1153
+ openFullPage?: boolean | undefined;
1154
+ readAllAccounts?: boolean | undefined;
1155
+ };
1156
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1157
+ } | undefined;
1158
+ };
1159
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1160
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1161
+ }, undefined>], undefined>;
1162
+ type PermissionWithoutClientId = v.InferOutput<typeof permissionTemplate>;
1052
1163
  declare const requestPermissionsMethodName = "wallet_requestPermissions";
1053
- declare const requestPermissionsParamsSchema: v.UndefinedSchema<undefined>;
1164
+ declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1165
+ readonly actions: Omit<v.ObjectSchema<{
1166
+ readonly read: v.BooleanSchema<undefined>;
1167
+ readonly autoSign: v.BooleanSchema<undefined>;
1168
+ readonly rename: v.BooleanSchema<undefined>;
1169
+ }, undefined>, "_types" | "_run" | "entries"> & {
1170
+ readonly entries: {
1171
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1172
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1173
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1174
+ };
1175
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1176
+ read?: boolean | undefined;
1177
+ autoSign?: boolean | undefined;
1178
+ rename?: boolean | undefined;
1179
+ }, v.ObjectIssue | v.BooleanIssue>;
1180
+ readonly _types?: {
1181
+ readonly input: {
1182
+ read?: boolean | undefined;
1183
+ autoSign?: boolean | undefined;
1184
+ rename?: boolean | undefined;
1185
+ };
1186
+ readonly output: {
1187
+ read?: boolean | undefined;
1188
+ autoSign?: boolean | undefined;
1189
+ rename?: boolean | undefined;
1190
+ };
1191
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1192
+ } | undefined;
1193
+ };
1194
+ readonly type: v.LiteralSchema<"account", undefined>;
1195
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1196
+ }, undefined>, v.ObjectSchema<{
1197
+ readonly actions: Omit<v.ObjectSchema<{
1198
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1199
+ readonly openPopup: v.BooleanSchema<undefined>;
1200
+ readonly openFullPage: v.BooleanSchema<undefined>;
1201
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1202
+ }, undefined>, "_types" | "_run" | "entries"> & {
1203
+ readonly entries: {
1204
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1205
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1206
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1207
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1208
+ };
1209
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1210
+ addPrivateKey?: boolean | undefined;
1211
+ openPopup?: boolean | undefined;
1212
+ openFullPage?: boolean | undefined;
1213
+ readAllAccounts?: boolean | undefined;
1214
+ }, v.ObjectIssue | v.BooleanIssue>;
1215
+ readonly _types?: {
1216
+ readonly input: {
1217
+ addPrivateKey?: boolean | undefined;
1218
+ openPopup?: boolean | undefined;
1219
+ openFullPage?: boolean | undefined;
1220
+ readAllAccounts?: boolean | undefined;
1221
+ };
1222
+ readonly output: {
1223
+ addPrivateKey?: boolean | undefined;
1224
+ openPopup?: boolean | undefined;
1225
+ openFullPage?: boolean | undefined;
1226
+ readAllAccounts?: boolean | undefined;
1227
+ };
1228
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1229
+ } | undefined;
1230
+ };
1231
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1232
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1233
+ }, undefined>], undefined>, undefined>, never>;
1234
+ type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
1054
1235
  declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
1236
+ type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSchema>;
1055
1237
  declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
1056
1238
  readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
1057
- readonly params: v.UndefinedSchema<undefined>;
1239
+ readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1240
+ readonly actions: Omit<v.ObjectSchema<{
1241
+ readonly read: v.BooleanSchema<undefined>;
1242
+ readonly autoSign: v.BooleanSchema<undefined>;
1243
+ readonly rename: v.BooleanSchema<undefined>;
1244
+ }, undefined>, "_types" | "_run" | "entries"> & {
1245
+ readonly entries: {
1246
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1247
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1248
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1249
+ };
1250
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1251
+ read?: boolean | undefined;
1252
+ autoSign?: boolean | undefined;
1253
+ rename?: boolean | undefined;
1254
+ }, v.ObjectIssue | v.BooleanIssue>;
1255
+ readonly _types?: {
1256
+ readonly input: {
1257
+ read?: boolean | undefined;
1258
+ autoSign?: boolean | undefined;
1259
+ rename?: boolean | undefined;
1260
+ };
1261
+ readonly output: {
1262
+ read?: boolean | undefined;
1263
+ autoSign?: boolean | undefined;
1264
+ rename?: boolean | undefined;
1265
+ };
1266
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1267
+ } | undefined;
1268
+ };
1269
+ readonly type: v.LiteralSchema<"account", undefined>;
1270
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1271
+ }, undefined>, v.ObjectSchema<{
1272
+ readonly actions: Omit<v.ObjectSchema<{
1273
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1274
+ readonly openPopup: v.BooleanSchema<undefined>;
1275
+ readonly openFullPage: v.BooleanSchema<undefined>;
1276
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1277
+ }, undefined>, "_types" | "_run" | "entries"> & {
1278
+ readonly entries: {
1279
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1280
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1281
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1282
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1283
+ };
1284
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1285
+ addPrivateKey?: boolean | undefined;
1286
+ openPopup?: boolean | undefined;
1287
+ openFullPage?: boolean | undefined;
1288
+ readAllAccounts?: boolean | undefined;
1289
+ }, v.ObjectIssue | v.BooleanIssue>;
1290
+ readonly _types?: {
1291
+ readonly input: {
1292
+ addPrivateKey?: boolean | undefined;
1293
+ openPopup?: boolean | undefined;
1294
+ openFullPage?: boolean | undefined;
1295
+ readAllAccounts?: boolean | undefined;
1296
+ };
1297
+ readonly output: {
1298
+ addPrivateKey?: boolean | undefined;
1299
+ openPopup?: boolean | undefined;
1300
+ openFullPage?: boolean | undefined;
1301
+ readAllAccounts?: boolean | undefined;
1302
+ };
1303
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1304
+ } | undefined;
1305
+ };
1306
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1307
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1308
+ }, undefined>], undefined>, undefined>, never>;
1058
1309
  readonly id: v.StringSchema<undefined>;
1059
1310
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1060
1311
  }, undefined>;
1061
- type RequestPermissions = MethodParamsAndResult<v.InferOutput<typeof requestPermissionsParamsSchema>, v.InferOutput<typeof requestPermissionsResultSchema>>;
1312
+ type RequestPermissionsRequestMessage = v.InferOutput<typeof requestPermissionsRequestMessageSchema>;
1313
+ type RequestPermissions = MethodParamsAndResult<RequestPermissionsParams, RequestPermissionsResult>;
1062
1314
  declare const renouncePermissionsMethodName = "wallet_renouncePermissions";
1063
- declare const renouncePermissionsParamsSchema: v.UndefinedSchema<undefined>;
1064
- declare const renouncePermissionsResultSchema: v.LiteralSchema<true, undefined>;
1315
+ declare const renouncePermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1316
+ type RenouncePermissionsParams = v.InferOutput<typeof renouncePermissionsParamsSchema>;
1317
+ declare const renouncePermissionsResultSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1318
+ type RenouncePermissionsResult = v.InferOutput<typeof renouncePermissionsResultSchema>;
1065
1319
  declare const renouncePermissionsRequestMessageSchema: v.ObjectSchema<{
1066
1320
  readonly method: v.LiteralSchema<"wallet_renouncePermissions", undefined>;
1067
- readonly params: v.UndefinedSchema<undefined>;
1321
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1068
1322
  readonly id: v.StringSchema<undefined>;
1069
1323
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1070
1324
  }, undefined>;
1071
- type RenouncePermissions = MethodParamsAndResult<v.InferOutput<typeof renouncePermissionsParamsSchema>, v.InferOutput<typeof renouncePermissionsResultSchema>>;
1325
+ type RenouncePermissionsRequestMessage = v.InferOutput<typeof renouncePermissionsRequestMessageSchema>;
1326
+ type RenouncePermissions = MethodParamsAndResult<RenouncePermissionsParams, RenouncePermissionsResult>;
1327
+ declare const disconnectMethodName = "wallet_disconnect";
1328
+ declare const disconnectParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1329
+ type DisconnectParams = v.InferOutput<typeof disconnectParamsSchema>;
1330
+ declare const disconnectResultSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1331
+ type DisconnectResult = v.InferOutput<typeof disconnectResultSchema>;
1332
+ declare const disconnectRequestMessageSchema: v.ObjectSchema<{
1333
+ readonly method: v.LiteralSchema<"wallet_disconnect", undefined>;
1334
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1335
+ readonly id: v.StringSchema<undefined>;
1336
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1337
+ }, undefined>;
1338
+ type DisconnectRequestMessage = v.InferOutput<typeof disconnectRequestMessageSchema>;
1339
+ type Disconnect = MethodParamsAndResult<DisconnectParams, DisconnectResult>;
1072
1340
  declare const getWalletTypeMethodName = "wallet_getWalletType";
1073
1341
  declare const getWalletTypeParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1342
+ type GetWalletTypeParams = v.InferOutput<typeof getWalletTypeParamsSchema>;
1074
1343
  declare const getWalletTypeResultSchema: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
1344
+ type GetWalletTypeResult = v.InferOutput<typeof getWalletTypeResultSchema>;
1075
1345
  declare const getWalletTypeRequestMessageSchema: v.ObjectSchema<{
1076
1346
  readonly method: v.LiteralSchema<"wallet_getWalletType", undefined>;
1347
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1077
1348
  readonly id: v.StringSchema<undefined>;
1078
1349
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1079
- readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, never>;
1080
1350
  }, undefined>;
1081
- type GetWalletType = MethodParamsAndResult<v.InferOutput<typeof getWalletTypeParamsSchema>, v.InferOutput<typeof getWalletTypeResultSchema>>;
1351
+ type GetWalletTypeRequestMessage = v.InferOutput<typeof getWalletTypeRequestMessageSchema>;
1352
+ type GetWalletType = MethodParamsAndResult<GetWalletTypeParams, GetWalletTypeResult>;
1082
1353
  declare const getCurrentPermissionsMethodName = "wallet_getCurrentPermissions";
1083
1354
  declare const getCurrentPermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1084
- declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.StringSchema<undefined>, undefined>;
1355
+ type GetCurrentPermissionsParams = v.InferOutput<typeof getCurrentPermissionsParamsSchema>;
1356
+ declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1357
+ readonly type: v.LiteralSchema<"account", undefined>;
1358
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1359
+ readonly clientId: v.StringSchema<undefined>;
1360
+ readonly actions: v.ObjectSchema<{
1361
+ readonly read: v.BooleanSchema<undefined>;
1362
+ readonly autoSign: v.BooleanSchema<undefined>;
1363
+ readonly rename: v.BooleanSchema<undefined>;
1364
+ }, undefined>;
1365
+ }, undefined>, v.ObjectSchema<{
1366
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1367
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1368
+ readonly clientId: v.StringSchema<undefined>;
1369
+ readonly actions: v.ObjectSchema<{
1370
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1371
+ readonly openPopup: v.BooleanSchema<undefined>;
1372
+ readonly openFullPage: v.BooleanSchema<undefined>;
1373
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1374
+ }, undefined>;
1375
+ }, undefined>], undefined>, undefined>;
1376
+ type GetCurrentPermissionsResult = v.InferOutput<typeof getCurrentPermissionsResultSchema>;
1085
1377
  declare const getCurrentPermissionsRequestMessageSchema: v.ObjectSchema<{
1086
1378
  readonly method: v.LiteralSchema<"wallet_getCurrentPermissions", undefined>;
1379
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1380
+ readonly id: v.StringSchema<undefined>;
1381
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1382
+ }, undefined>;
1383
+ type GetCurrentPermissionsRequestMessage = v.InferOutput<typeof getCurrentPermissionsRequestMessageSchema>;
1384
+ type GetCurrentPermissions = MethodParamsAndResult<GetCurrentPermissionsParams, GetCurrentPermissionsResult>;
1385
+ declare const getAccountMethodName = "wallet_getAccount";
1386
+ declare const getAccountParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1387
+ type GetAccountParams = v.InferOutput<typeof getAccountParamsSchema>;
1388
+ declare const getAccountResultSchema: v.ObjectSchema<{
1389
+ readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountId">]>;
1390
+ readonly addresses: v.ArraySchema<v.ObjectSchema<{
1391
+ readonly address: v.StringSchema<undefined>;
1392
+ readonly publicKey: v.StringSchema<undefined>;
1393
+ readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
1394
+ readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
1395
+ }, undefined>, undefined>;
1396
+ readonly walletType: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
1397
+ }, undefined>;
1398
+ type GetAccountResult = v.InferOutput<typeof getAccountResultSchema>;
1399
+ declare const getAccountRequestMessageSchema: v.ObjectSchema<{
1400
+ readonly method: v.LiteralSchema<"wallet_getAccount", undefined>;
1401
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1402
+ readonly id: v.StringSchema<undefined>;
1403
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1404
+ }, undefined>;
1405
+ type GetAccountRequestMessage = v.InferOutput<typeof getAccountRequestMessageSchema>;
1406
+ type GetAccount = MethodParamsAndResult<GetAccountParams, GetAccountResult>;
1407
+ declare const connectMethodName = "wallet_connect";
1408
+ declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
1409
+ readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1410
+ readonly actions: Omit<v.ObjectSchema<{
1411
+ readonly read: v.BooleanSchema<undefined>;
1412
+ readonly autoSign: v.BooleanSchema<undefined>;
1413
+ readonly rename: v.BooleanSchema<undefined>;
1414
+ }, undefined>, "_types" | "_run" | "entries"> & {
1415
+ readonly entries: {
1416
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1417
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1418
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1419
+ };
1420
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1421
+ read?: boolean | undefined;
1422
+ autoSign?: boolean | undefined;
1423
+ rename?: boolean | undefined;
1424
+ }, v.ObjectIssue | v.BooleanIssue>;
1425
+ readonly _types?: {
1426
+ readonly input: {
1427
+ read?: boolean | undefined;
1428
+ autoSign?: boolean | undefined;
1429
+ rename?: boolean | undefined;
1430
+ };
1431
+ readonly output: {
1432
+ read?: boolean | undefined;
1433
+ autoSign?: boolean | undefined;
1434
+ rename?: boolean | undefined;
1435
+ };
1436
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1437
+ } | undefined;
1438
+ };
1439
+ readonly type: v.LiteralSchema<"account", undefined>;
1440
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1441
+ }, undefined>, v.ObjectSchema<{
1442
+ readonly actions: Omit<v.ObjectSchema<{
1443
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1444
+ readonly openPopup: v.BooleanSchema<undefined>;
1445
+ readonly openFullPage: v.BooleanSchema<undefined>;
1446
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1447
+ }, undefined>, "_types" | "_run" | "entries"> & {
1448
+ readonly entries: {
1449
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1450
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1451
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1452
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1453
+ };
1454
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1455
+ addPrivateKey?: boolean | undefined;
1456
+ openPopup?: boolean | undefined;
1457
+ openFullPage?: boolean | undefined;
1458
+ readAllAccounts?: boolean | undefined;
1459
+ }, v.ObjectIssue | v.BooleanIssue>;
1460
+ readonly _types?: {
1461
+ readonly input: {
1462
+ addPrivateKey?: boolean | undefined;
1463
+ openPopup?: boolean | undefined;
1464
+ openFullPage?: boolean | undefined;
1465
+ readAllAccounts?: boolean | undefined;
1466
+ };
1467
+ readonly output: {
1468
+ addPrivateKey?: boolean | undefined;
1469
+ openPopup?: boolean | undefined;
1470
+ openFullPage?: boolean | undefined;
1471
+ readAllAccounts?: boolean | undefined;
1472
+ };
1473
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1474
+ } | undefined;
1475
+ };
1476
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1477
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1478
+ }, undefined>], undefined>, undefined>, never>;
1479
+ }, undefined>, never>;
1480
+ type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
1481
+ declare const connectResultSchema: v.ObjectSchema<{
1482
+ readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountId">]>;
1483
+ readonly addresses: v.ArraySchema<v.ObjectSchema<{
1484
+ readonly address: v.StringSchema<undefined>;
1485
+ readonly publicKey: v.StringSchema<undefined>;
1486
+ readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
1487
+ readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
1488
+ }, undefined>, undefined>;
1489
+ readonly walletType: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
1490
+ }, undefined>;
1491
+ type ConnectResult = v.InferOutput<typeof connectResultSchema>;
1492
+ declare const connectRequestMessageSchema: v.ObjectSchema<{
1493
+ readonly method: v.LiteralSchema<"wallet_connect", undefined>;
1494
+ readonly params: v.NullishSchema<v.ObjectSchema<{
1495
+ readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1496
+ readonly actions: Omit<v.ObjectSchema<{
1497
+ readonly read: v.BooleanSchema<undefined>;
1498
+ readonly autoSign: v.BooleanSchema<undefined>;
1499
+ readonly rename: v.BooleanSchema<undefined>;
1500
+ }, undefined>, "_types" | "_run" | "entries"> & {
1501
+ readonly entries: {
1502
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1503
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1504
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1505
+ };
1506
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1507
+ read?: boolean | undefined;
1508
+ autoSign?: boolean | undefined;
1509
+ rename?: boolean | undefined;
1510
+ }, v.ObjectIssue | v.BooleanIssue>;
1511
+ readonly _types?: {
1512
+ readonly input: {
1513
+ read?: boolean | undefined;
1514
+ autoSign?: boolean | undefined;
1515
+ rename?: boolean | undefined;
1516
+ };
1517
+ readonly output: {
1518
+ read?: boolean | undefined;
1519
+ autoSign?: boolean | undefined;
1520
+ rename?: boolean | undefined;
1521
+ };
1522
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1523
+ } | undefined;
1524
+ };
1525
+ readonly type: v.LiteralSchema<"account", undefined>;
1526
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1527
+ }, undefined>, v.ObjectSchema<{
1528
+ readonly actions: Omit<v.ObjectSchema<{
1529
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1530
+ readonly openPopup: v.BooleanSchema<undefined>;
1531
+ readonly openFullPage: v.BooleanSchema<undefined>;
1532
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1533
+ }, undefined>, "_types" | "_run" | "entries"> & {
1534
+ readonly entries: {
1535
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1536
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1537
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1538
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1539
+ };
1540
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1541
+ addPrivateKey?: boolean | undefined;
1542
+ openPopup?: boolean | undefined;
1543
+ openFullPage?: boolean | undefined;
1544
+ readAllAccounts?: boolean | undefined;
1545
+ }, v.ObjectIssue | v.BooleanIssue>;
1546
+ readonly _types?: {
1547
+ readonly input: {
1548
+ addPrivateKey?: boolean | undefined;
1549
+ openPopup?: boolean | undefined;
1550
+ openFullPage?: boolean | undefined;
1551
+ readAllAccounts?: boolean | undefined;
1552
+ };
1553
+ readonly output: {
1554
+ addPrivateKey?: boolean | undefined;
1555
+ openPopup?: boolean | undefined;
1556
+ openFullPage?: boolean | undefined;
1557
+ readAllAccounts?: boolean | undefined;
1558
+ };
1559
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1560
+ } | undefined;
1561
+ };
1562
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1563
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1564
+ }, undefined>], undefined>, undefined>, never>;
1565
+ }, undefined>, never>;
1087
1566
  readonly id: v.StringSchema<undefined>;
1088
1567
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1089
- readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, never>;
1090
1568
  }, undefined>;
1091
- type GetCurrentPermissions = MethodParamsAndResult<v.InferOutput<typeof getCurrentPermissionsParamsSchema>, v.InferOutput<typeof getCurrentPermissionsResultSchema>>;
1569
+ type ConnectRequestMessage = v.InferOutput<typeof connectRequestMessageSchema>;
1570
+ type Connect = MethodParamsAndResult<ConnectParams, ConnectResult>;
1092
1571
 
1093
1572
  declare const walletTypes: readonly ["software", "ledger"];
1094
1573
  declare const walletTypeSchema: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
@@ -1169,4 +1648,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
1169
1648
  declare const DefaultAdaptersInfo: Record<string, Provider>;
1170
1649
  declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
1171
1650
 
1172
- export { type AccountChangeEvent, type AddListener, type Address$1 as Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type CallContractParams, type CallContractResult, type Capability, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type DeployContractParams, type DeployContractResult, type DisconnectEvent, type EstimateRbfOrder, type EstimateRunesEtch, type EstimateRunesEtchParams, type EstimateRunesEtchResult, type EstimateRunesMint, type EstimateRunesMintParams, type EstimateRunesMintResult, type EtchRunes, type EtchRunesParams, type EtchRunesResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetOrder, type GetRunesBalance, type GetRunesBalanceParams, type GetRunesBalanceRequestMessage, type GetRunesBalanceResult, type GetWalletType, type InputToSign, MessageSigningProtocols, type MethodParamsAndResult, type MintRunes, type MintRunesParams, type MintRunesResult, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, type Provider, type PsbtPayload, type RbfOrder, type Recipient$2 as Recipient, type RenouncePermissions, type RequestOptions, type RequestPayload, type RequestPermissions, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesRequestMethod, type RunesRequests, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendTransfer, type SendTransferParams, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtResult, type SignStructuredMessageResult, type SignStxMessageParams, type SignStxMessageResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type StxCallContract, type StxDeployContract, type StxGetAccounts, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignStructuredMessage, type StxSignStxMessage, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxTransferStx, type SupportedWallet, type TransferRunes, type TransferRunesParams, type TransferRunesRequest, type TransferRunesResult, TransferRunesResultSchema, type TransferStxParams, type TransferStxResult, type WalletEvent, type WalletRequests, type WalletType, accountChangeEventName, accountChangeSchema, addListener, addressSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsResultSchema, getInscriptionsSchema, getProviderById, getProviderOrThrow, getProviders, getRunesBalanceMethodName, getRunesBalanceParamsSchema, getRunesBalanceRequestMessageSchema, getRunesBalanceResultSchema, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsResultSchema, sendInscriptionsSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signTransaction, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, transferRunesMethodName, transferRunesParamsSchema, transferRunesRequestSchema, walletEventSchema, walletTypeSchema, walletTypes };
1651
+ export { type AccountChangeEvent, type AddListener, type Address$1 as Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type CallContractParams, type CallContractResult, type Capability, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type DeployContractParams, type DeployContractResult, type Disconnect, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type EstimateRbfOrder, type EstimateRunesEtch, type EstimateRunesEtchParams, type EstimateRunesEtchResult, type EstimateRunesMint, type EstimateRunesMintParams, type EstimateRunesMintResult, type EtchRunes, type EtchRunesParams, type EtchRunesResult, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetOrder, type GetRunesBalance, type GetRunesBalanceParams, type GetRunesBalanceRequestMessage, type GetRunesBalanceResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, MessageSigningProtocols, type MethodParamsAndResult, type MintRunes, type MintRunesParams, type MintRunesResult, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, type PermissionWithoutClientId, type Provider, type PsbtPayload, type RbfOrder, type Recipient$1 as Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesRequestMethod, type RunesRequests, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignStructuredMessageResult, type SignStxMessageParams, type SignStxMessageResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type StxCallContract, type StxDeployContract, type StxGetAccounts, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignStructuredMessage, type StxSignStxMessage, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxTransferStx, type SupportedWallet, type TransferRunes, type TransferRunesParams, type TransferRunesRequest, type TransferRunesResult, TransferRunesResultSchema, type TransferStxParams, type TransferStxResult, type WalletEvent, type WalletRequests, type WalletType, accountChangeEventName, accountChangeSchema, addListener, addressSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsResultSchema, getInscriptionsSchema, getProviderById, getProviderOrThrow, getProviders, getRunesBalanceMethodName, getRunesBalanceParamsSchema, getRunesBalanceRequestMessageSchema, getRunesBalanceResultSchema, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permissionTemplate, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsResultSchema, sendInscriptionsSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, transferRunesMethodName, transferRunesParamsSchema, transferRunesRequestSchema, walletEventSchema, walletTypeSchema, walletTypes };