@sats-connect/core 0.4.0-791813d → 0.4.0-954ad8d

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,94 @@ 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>;
505
+ readonly allowedSignHash: v.OptionalSchema<v.NumberSchema<undefined>, never>;
497
506
  /**
498
507
  * Whether to broadcast the transaction after signing.
499
508
  **/
500
- broadcast?: boolean;
501
- };
502
- type SignPsbtResult = {
509
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
510
+ }, undefined>;
511
+ type SignPsbtParams = v.InferOutput<typeof signPsbtParamsSchema>;
512
+ declare const signPsbtResultSchema: v.ObjectSchema<{
503
513
  /**
504
514
  * The base64 encoded PSBT after signing.
505
515
  */
506
- psbt: string;
516
+ readonly psbt: v.StringSchema<undefined>;
507
517
  /**
508
518
  * The transaction id as a hex-encoded string.
509
519
  * This is only returned if the transaction was broadcast.
510
520
  **/
511
- txid?: string;
512
- };
521
+ readonly txid: v.OptionalSchema<v.StringSchema<undefined>, never>;
522
+ }, undefined>;
523
+ type SignPsbtResult = v.InferOutput<typeof signPsbtResultSchema>;
524
+ declare const signPsbtRequestMessageSchema: v.ObjectSchema<{
525
+ readonly method: v.LiteralSchema<"signPsbt", undefined>;
526
+ readonly params: v.ObjectSchema<{
527
+ /**
528
+ * The base64 encoded PSBT to sign.
529
+ */
530
+ readonly psbt: v.StringSchema<undefined>;
531
+ /**
532
+ * The inputs to sign.
533
+ * The key is the address and the value is an array of indexes of the inputs to sign.
534
+ */
535
+ readonly signInputs: v.RecordSchema<v.StringSchema<undefined>, v.ArraySchema<v.NumberSchema<undefined>, undefined>, undefined>;
536
+ readonly allowedSignHash: v.OptionalSchema<v.NumberSchema<undefined>, never>;
537
+ /**
538
+ * Whether to broadcast the transaction after signing.
539
+ **/
540
+ readonly broadcast: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
541
+ }, undefined>;
542
+ readonly id: v.StringSchema<undefined>;
543
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
544
+ }, undefined>;
545
+ type SignPsbtRequestMessage = v.InferOutput<typeof signPsbtRequestMessageSchema>;
513
546
  type SignPsbt = MethodParamsAndResult<SignPsbtParams, SignPsbtResult>;
514
547
  declare const getAccountsMethodName = "getAccounts";
515
548
  declare const getAccountsParamsSchema: v.ObjectSchema<{
@@ -554,6 +587,7 @@ type GetAccountsRequestMessage = v.InferOutput<typeof getAccountsRequestMessageS
554
587
  type GetAccounts = MethodParamsAndResult<v.InferOutput<typeof getAccountsParamsSchema>, v.InferOutput<typeof getAccountsResultSchema>>;
555
588
  declare const getBalanceMethodName = "getBalance";
556
589
  declare const getBalanceParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
590
+ type GetBalanceParams = v.InferOutput<typeof getBalanceParamsSchema>;
557
591
  declare const getBalanceResultSchema: v.ObjectSchema<{
558
592
  /**
559
593
  * The confirmed balance of the wallet in sats. Using a string due to chrome
@@ -574,13 +608,15 @@ declare const getBalanceResultSchema: v.ObjectSchema<{
574
608
  */
575
609
  readonly total: v.StringSchema<undefined>;
576
610
  }, undefined>;
611
+ type GetBalanceResult = v.InferOutput<typeof getBalanceResultSchema>;
577
612
  declare const getBalanceRequestMessageSchema: v.ObjectSchema<{
578
613
  readonly method: v.LiteralSchema<"getBalance", undefined>;
579
614
  readonly id: v.StringSchema<undefined>;
580
615
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
581
616
  readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, never>;
582
617
  }, undefined>;
583
- type GetBalance = MethodParamsAndResult<v.InferOutput<typeof getBalanceParamsSchema>, v.InferOutput<typeof getBalanceResultSchema>>;
618
+ type GetBalanceRequestMessage = v.InferOutput<typeof getBalanceRequestMessageSchema>;
619
+ type GetBalance = MethodParamsAndResult<GetBalanceParams, GetBalanceResult>;
584
620
 
585
621
  declare const getInscriptionsMethodName = "ord_getInscriptions";
586
622
  declare const getInscriptionsParamsSchema: v.ObjectSchema<{
@@ -1049,57 +1085,491 @@ declare const stxSignTransactionRequestMessageSchema: v.ObjectSchema<{
1049
1085
  type StxSignTransactionRequestMessage = v.InferOutput<typeof stxSignTransactionRequestMessageSchema>;
1050
1086
  type StxSignTransaction = MethodParamsAndResult<StxSignTransactionParams, StxSignTransactionResult>;
1051
1087
 
1088
+ /**
1089
+ * Permissions with the clientId field omitted and optional actions. Used for
1090
+ * permission requests, since the wallet performs authentication based on the
1091
+ * client's tab origin and should not rely on the client authenticating
1092
+ * themselves.
1093
+ */
1094
+ declare const permissionTemplate: v.VariantSchema<"type", [v.ObjectSchema<{
1095
+ readonly actions: Omit<v.ObjectSchema<{
1096
+ readonly read: v.BooleanSchema<undefined>;
1097
+ readonly autoSign: v.BooleanSchema<undefined>;
1098
+ readonly rename: v.BooleanSchema<undefined>;
1099
+ }, undefined>, "_types" | "_run" | "entries"> & {
1100
+ readonly entries: {
1101
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1102
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1103
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1104
+ };
1105
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1106
+ read?: boolean | undefined;
1107
+ autoSign?: boolean | undefined;
1108
+ rename?: boolean | undefined;
1109
+ }, v.ObjectIssue | v.BooleanIssue>;
1110
+ readonly _types?: {
1111
+ readonly input: {
1112
+ read?: boolean | undefined;
1113
+ autoSign?: boolean | undefined;
1114
+ rename?: boolean | undefined;
1115
+ };
1116
+ readonly output: {
1117
+ read?: boolean | undefined;
1118
+ autoSign?: boolean | undefined;
1119
+ rename?: boolean | undefined;
1120
+ };
1121
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1122
+ } | undefined;
1123
+ };
1124
+ readonly type: v.LiteralSchema<"account", undefined>;
1125
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1126
+ }, undefined>, v.ObjectSchema<{
1127
+ readonly actions: Omit<v.ObjectSchema<{
1128
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1129
+ readonly openPopup: v.BooleanSchema<undefined>;
1130
+ readonly openFullPage: v.BooleanSchema<undefined>;
1131
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1132
+ }, undefined>, "_types" | "_run" | "entries"> & {
1133
+ readonly entries: {
1134
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1135
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1136
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1137
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1138
+ };
1139
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1140
+ addPrivateKey?: boolean | undefined;
1141
+ openPopup?: boolean | undefined;
1142
+ openFullPage?: boolean | undefined;
1143
+ readAllAccounts?: boolean | undefined;
1144
+ }, v.ObjectIssue | v.BooleanIssue>;
1145
+ readonly _types?: {
1146
+ readonly input: {
1147
+ addPrivateKey?: boolean | undefined;
1148
+ openPopup?: boolean | undefined;
1149
+ openFullPage?: boolean | undefined;
1150
+ readAllAccounts?: boolean | undefined;
1151
+ };
1152
+ readonly output: {
1153
+ addPrivateKey?: boolean | undefined;
1154
+ openPopup?: boolean | undefined;
1155
+ openFullPage?: boolean | undefined;
1156
+ readAllAccounts?: boolean | undefined;
1157
+ };
1158
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1159
+ } | undefined;
1160
+ };
1161
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1162
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1163
+ }, undefined>], undefined>;
1164
+ type PermissionWithoutClientId = v.InferOutput<typeof permissionTemplate>;
1052
1165
  declare const requestPermissionsMethodName = "wallet_requestPermissions";
1053
- declare const requestPermissionsParamsSchema: v.UndefinedSchema<undefined>;
1166
+ declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1167
+ readonly actions: Omit<v.ObjectSchema<{
1168
+ readonly read: v.BooleanSchema<undefined>;
1169
+ readonly autoSign: v.BooleanSchema<undefined>;
1170
+ readonly rename: v.BooleanSchema<undefined>;
1171
+ }, undefined>, "_types" | "_run" | "entries"> & {
1172
+ readonly entries: {
1173
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1174
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1175
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1176
+ };
1177
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1178
+ read?: boolean | undefined;
1179
+ autoSign?: boolean | undefined;
1180
+ rename?: boolean | undefined;
1181
+ }, v.ObjectIssue | v.BooleanIssue>;
1182
+ readonly _types?: {
1183
+ readonly input: {
1184
+ read?: boolean | undefined;
1185
+ autoSign?: boolean | undefined;
1186
+ rename?: boolean | undefined;
1187
+ };
1188
+ readonly output: {
1189
+ read?: boolean | undefined;
1190
+ autoSign?: boolean | undefined;
1191
+ rename?: boolean | undefined;
1192
+ };
1193
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1194
+ } | undefined;
1195
+ };
1196
+ readonly type: v.LiteralSchema<"account", undefined>;
1197
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1198
+ }, undefined>, v.ObjectSchema<{
1199
+ readonly actions: Omit<v.ObjectSchema<{
1200
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1201
+ readonly openPopup: v.BooleanSchema<undefined>;
1202
+ readonly openFullPage: v.BooleanSchema<undefined>;
1203
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1204
+ }, undefined>, "_types" | "_run" | "entries"> & {
1205
+ readonly entries: {
1206
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1207
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1208
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1209
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1210
+ };
1211
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1212
+ addPrivateKey?: boolean | undefined;
1213
+ openPopup?: boolean | undefined;
1214
+ openFullPage?: boolean | undefined;
1215
+ readAllAccounts?: boolean | undefined;
1216
+ }, v.ObjectIssue | v.BooleanIssue>;
1217
+ readonly _types?: {
1218
+ readonly input: {
1219
+ addPrivateKey?: boolean | undefined;
1220
+ openPopup?: boolean | undefined;
1221
+ openFullPage?: boolean | undefined;
1222
+ readAllAccounts?: boolean | undefined;
1223
+ };
1224
+ readonly output: {
1225
+ addPrivateKey?: boolean | undefined;
1226
+ openPopup?: boolean | undefined;
1227
+ openFullPage?: boolean | undefined;
1228
+ readAllAccounts?: boolean | undefined;
1229
+ };
1230
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1231
+ } | undefined;
1232
+ };
1233
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1234
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1235
+ }, undefined>], undefined>, undefined>, never>;
1236
+ type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
1054
1237
  declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
1238
+ type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSchema>;
1055
1239
  declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
1056
1240
  readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
1057
- readonly params: v.UndefinedSchema<undefined>;
1241
+ readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1242
+ readonly actions: Omit<v.ObjectSchema<{
1243
+ readonly read: v.BooleanSchema<undefined>;
1244
+ readonly autoSign: v.BooleanSchema<undefined>;
1245
+ readonly rename: v.BooleanSchema<undefined>;
1246
+ }, undefined>, "_types" | "_run" | "entries"> & {
1247
+ readonly entries: {
1248
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1249
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1250
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1251
+ };
1252
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1253
+ read?: boolean | undefined;
1254
+ autoSign?: boolean | undefined;
1255
+ rename?: boolean | undefined;
1256
+ }, v.ObjectIssue | v.BooleanIssue>;
1257
+ readonly _types?: {
1258
+ readonly input: {
1259
+ read?: boolean | undefined;
1260
+ autoSign?: boolean | undefined;
1261
+ rename?: boolean | undefined;
1262
+ };
1263
+ readonly output: {
1264
+ read?: boolean | undefined;
1265
+ autoSign?: boolean | undefined;
1266
+ rename?: boolean | undefined;
1267
+ };
1268
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1269
+ } | undefined;
1270
+ };
1271
+ readonly type: v.LiteralSchema<"account", undefined>;
1272
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1273
+ }, undefined>, v.ObjectSchema<{
1274
+ readonly actions: Omit<v.ObjectSchema<{
1275
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1276
+ readonly openPopup: v.BooleanSchema<undefined>;
1277
+ readonly openFullPage: v.BooleanSchema<undefined>;
1278
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1279
+ }, undefined>, "_types" | "_run" | "entries"> & {
1280
+ readonly entries: {
1281
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1282
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1283
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1284
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1285
+ };
1286
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1287
+ addPrivateKey?: boolean | undefined;
1288
+ openPopup?: boolean | undefined;
1289
+ openFullPage?: boolean | undefined;
1290
+ readAllAccounts?: boolean | undefined;
1291
+ }, v.ObjectIssue | v.BooleanIssue>;
1292
+ readonly _types?: {
1293
+ readonly input: {
1294
+ addPrivateKey?: boolean | undefined;
1295
+ openPopup?: boolean | undefined;
1296
+ openFullPage?: boolean | undefined;
1297
+ readAllAccounts?: boolean | undefined;
1298
+ };
1299
+ readonly output: {
1300
+ addPrivateKey?: boolean | undefined;
1301
+ openPopup?: boolean | undefined;
1302
+ openFullPage?: boolean | undefined;
1303
+ readAllAccounts?: boolean | undefined;
1304
+ };
1305
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1306
+ } | undefined;
1307
+ };
1308
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1309
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1310
+ }, undefined>], undefined>, undefined>, never>;
1058
1311
  readonly id: v.StringSchema<undefined>;
1059
1312
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1060
1313
  }, undefined>;
1061
- type RequestPermissions = MethodParamsAndResult<v.InferOutput<typeof requestPermissionsParamsSchema>, v.InferOutput<typeof requestPermissionsResultSchema>>;
1314
+ type RequestPermissionsRequestMessage = v.InferOutput<typeof requestPermissionsRequestMessageSchema>;
1315
+ type RequestPermissions = MethodParamsAndResult<RequestPermissionsParams, RequestPermissionsResult>;
1062
1316
  declare const renouncePermissionsMethodName = "wallet_renouncePermissions";
1063
- declare const renouncePermissionsParamsSchema: v.UndefinedSchema<undefined>;
1064
- declare const renouncePermissionsResultSchema: v.LiteralSchema<true, undefined>;
1317
+ declare const renouncePermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1318
+ type RenouncePermissionsParams = v.InferOutput<typeof renouncePermissionsParamsSchema>;
1319
+ declare const renouncePermissionsResultSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1320
+ type RenouncePermissionsResult = v.InferOutput<typeof renouncePermissionsResultSchema>;
1065
1321
  declare const renouncePermissionsRequestMessageSchema: v.ObjectSchema<{
1066
1322
  readonly method: v.LiteralSchema<"wallet_renouncePermissions", undefined>;
1067
- readonly params: v.UndefinedSchema<undefined>;
1323
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1324
+ readonly id: v.StringSchema<undefined>;
1325
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1326
+ }, undefined>;
1327
+ type RenouncePermissionsRequestMessage = v.InferOutput<typeof renouncePermissionsRequestMessageSchema>;
1328
+ type RenouncePermissions = MethodParamsAndResult<RenouncePermissionsParams, RenouncePermissionsResult>;
1329
+ declare const disconnectMethodName = "wallet_disconnect";
1330
+ declare const disconnectParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1331
+ type DisconnectParams = v.InferOutput<typeof disconnectParamsSchema>;
1332
+ declare const disconnectResultSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1333
+ type DisconnectResult = v.InferOutput<typeof disconnectResultSchema>;
1334
+ declare const disconnectRequestMessageSchema: v.ObjectSchema<{
1335
+ readonly method: v.LiteralSchema<"wallet_disconnect", undefined>;
1336
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1068
1337
  readonly id: v.StringSchema<undefined>;
1069
1338
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1070
1339
  }, undefined>;
1071
- type RenouncePermissions = MethodParamsAndResult<v.InferOutput<typeof renouncePermissionsParamsSchema>, v.InferOutput<typeof renouncePermissionsResultSchema>>;
1340
+ type DisconnectRequestMessage = v.InferOutput<typeof disconnectRequestMessageSchema>;
1341
+ type Disconnect = MethodParamsAndResult<DisconnectParams, DisconnectResult>;
1072
1342
  declare const getWalletTypeMethodName = "wallet_getWalletType";
1073
1343
  declare const getWalletTypeParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1344
+ type GetWalletTypeParams = v.InferOutput<typeof getWalletTypeParamsSchema>;
1074
1345
  declare const getWalletTypeResultSchema: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
1346
+ type GetWalletTypeResult = v.InferOutput<typeof getWalletTypeResultSchema>;
1075
1347
  declare const getWalletTypeRequestMessageSchema: v.ObjectSchema<{
1076
1348
  readonly method: v.LiteralSchema<"wallet_getWalletType", undefined>;
1349
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1077
1350
  readonly id: v.StringSchema<undefined>;
1078
1351
  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
1352
  }, undefined>;
1081
- type GetWalletType = MethodParamsAndResult<v.InferOutput<typeof getWalletTypeParamsSchema>, v.InferOutput<typeof getWalletTypeResultSchema>>;
1353
+ type GetWalletTypeRequestMessage = v.InferOutput<typeof getWalletTypeRequestMessageSchema>;
1354
+ type GetWalletType = MethodParamsAndResult<GetWalletTypeParams, GetWalletTypeResult>;
1082
1355
  declare const getCurrentPermissionsMethodName = "wallet_getCurrentPermissions";
1083
1356
  declare const getCurrentPermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1084
- declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.ObjectSchema<{
1085
- readonly resource: v.VariantSchema<"type", [v.ObjectSchema<{
1086
- readonly type: v.LiteralSchema<"account", undefined>;
1087
- readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1088
- readonly accountId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountId">]>;
1089
- readonly name: v.StringSchema<undefined>;
1090
- readonly description: v.OptionalSchema<v.StringSchema<undefined>, never>;
1091
- }, undefined>], undefined>;
1092
- readonly clientId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.UrlAction<string, undefined>, v.BrandAction<string, "ClientId">]>;
1093
- readonly resourceId: v.UnionSchema<[v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountResourceId">]>], undefined>;
1094
- readonly actions: v.SetSchema<v.PicklistSchema<["create", "read", "update", "delete"], undefined>, undefined>;
1095
- }, undefined>, undefined>;
1357
+ type GetCurrentPermissionsParams = v.InferOutput<typeof getCurrentPermissionsParamsSchema>;
1358
+ declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1359
+ readonly type: v.LiteralSchema<"account", undefined>;
1360
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1361
+ readonly clientId: v.StringSchema<undefined>;
1362
+ readonly actions: v.ObjectSchema<{
1363
+ readonly read: v.BooleanSchema<undefined>;
1364
+ readonly autoSign: v.BooleanSchema<undefined>;
1365
+ readonly rename: v.BooleanSchema<undefined>;
1366
+ }, undefined>;
1367
+ }, undefined>, v.ObjectSchema<{
1368
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1369
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1370
+ readonly clientId: v.StringSchema<undefined>;
1371
+ readonly actions: v.ObjectSchema<{
1372
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1373
+ readonly openPopup: v.BooleanSchema<undefined>;
1374
+ readonly openFullPage: v.BooleanSchema<undefined>;
1375
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1376
+ }, undefined>;
1377
+ }, undefined>], undefined>, undefined>;
1378
+ type GetCurrentPermissionsResult = v.InferOutput<typeof getCurrentPermissionsResultSchema>;
1096
1379
  declare const getCurrentPermissionsRequestMessageSchema: v.ObjectSchema<{
1097
1380
  readonly method: v.LiteralSchema<"wallet_getCurrentPermissions", undefined>;
1381
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1382
+ readonly id: v.StringSchema<undefined>;
1383
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1384
+ }, undefined>;
1385
+ type GetCurrentPermissionsRequestMessage = v.InferOutput<typeof getCurrentPermissionsRequestMessageSchema>;
1386
+ type GetCurrentPermissions = MethodParamsAndResult<GetCurrentPermissionsParams, GetCurrentPermissionsResult>;
1387
+ declare const getAccountMethodName = "wallet_getAccount";
1388
+ declare const getAccountParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
1389
+ type GetAccountParams = v.InferOutput<typeof getAccountParamsSchema>;
1390
+ declare const getAccountResultSchema: v.ObjectSchema<{
1391
+ readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountId">]>;
1392
+ readonly addresses: v.ArraySchema<v.ObjectSchema<{
1393
+ readonly address: v.StringSchema<undefined>;
1394
+ readonly publicKey: v.StringSchema<undefined>;
1395
+ readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
1396
+ readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
1397
+ }, undefined>, undefined>;
1398
+ readonly walletType: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
1399
+ }, undefined>;
1400
+ type GetAccountResult = v.InferOutput<typeof getAccountResultSchema>;
1401
+ declare const getAccountRequestMessageSchema: v.ObjectSchema<{
1402
+ readonly method: v.LiteralSchema<"wallet_getAccount", undefined>;
1403
+ readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
1404
+ readonly id: v.StringSchema<undefined>;
1405
+ readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1406
+ }, undefined>;
1407
+ type GetAccountRequestMessage = v.InferOutput<typeof getAccountRequestMessageSchema>;
1408
+ type GetAccount = MethodParamsAndResult<GetAccountParams, GetAccountResult>;
1409
+ declare const connectMethodName = "wallet_connect";
1410
+ declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
1411
+ readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1412
+ readonly actions: Omit<v.ObjectSchema<{
1413
+ readonly read: v.BooleanSchema<undefined>;
1414
+ readonly autoSign: v.BooleanSchema<undefined>;
1415
+ readonly rename: v.BooleanSchema<undefined>;
1416
+ }, undefined>, "_types" | "_run" | "entries"> & {
1417
+ readonly entries: {
1418
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1419
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1420
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1421
+ };
1422
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1423
+ read?: boolean | undefined;
1424
+ autoSign?: boolean | undefined;
1425
+ rename?: boolean | undefined;
1426
+ }, v.ObjectIssue | v.BooleanIssue>;
1427
+ readonly _types?: {
1428
+ readonly input: {
1429
+ read?: boolean | undefined;
1430
+ autoSign?: boolean | undefined;
1431
+ rename?: boolean | undefined;
1432
+ };
1433
+ readonly output: {
1434
+ read?: boolean | undefined;
1435
+ autoSign?: boolean | undefined;
1436
+ rename?: boolean | undefined;
1437
+ };
1438
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1439
+ } | undefined;
1440
+ };
1441
+ readonly type: v.LiteralSchema<"account", undefined>;
1442
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1443
+ }, undefined>, v.ObjectSchema<{
1444
+ readonly actions: Omit<v.ObjectSchema<{
1445
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1446
+ readonly openPopup: v.BooleanSchema<undefined>;
1447
+ readonly openFullPage: v.BooleanSchema<undefined>;
1448
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1449
+ }, undefined>, "_types" | "_run" | "entries"> & {
1450
+ readonly entries: {
1451
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1452
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1453
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1454
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1455
+ };
1456
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1457
+ addPrivateKey?: boolean | undefined;
1458
+ openPopup?: boolean | undefined;
1459
+ openFullPage?: boolean | undefined;
1460
+ readAllAccounts?: boolean | undefined;
1461
+ }, v.ObjectIssue | v.BooleanIssue>;
1462
+ readonly _types?: {
1463
+ readonly input: {
1464
+ addPrivateKey?: boolean | undefined;
1465
+ openPopup?: boolean | undefined;
1466
+ openFullPage?: boolean | undefined;
1467
+ readAllAccounts?: boolean | undefined;
1468
+ };
1469
+ readonly output: {
1470
+ addPrivateKey?: boolean | undefined;
1471
+ openPopup?: boolean | undefined;
1472
+ openFullPage?: boolean | undefined;
1473
+ readAllAccounts?: boolean | undefined;
1474
+ };
1475
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1476
+ } | undefined;
1477
+ };
1478
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1479
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1480
+ }, undefined>], undefined>, undefined>, never>;
1481
+ }, undefined>, never>;
1482
+ type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
1483
+ declare const connectResultSchema: v.ObjectSchema<{
1484
+ readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountId">]>;
1485
+ readonly addresses: v.ArraySchema<v.ObjectSchema<{
1486
+ readonly address: v.StringSchema<undefined>;
1487
+ readonly publicKey: v.StringSchema<undefined>;
1488
+ readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
1489
+ readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
1490
+ }, undefined>, undefined>;
1491
+ readonly walletType: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
1492
+ }, undefined>;
1493
+ type ConnectResult = v.InferOutput<typeof connectResultSchema>;
1494
+ declare const connectRequestMessageSchema: v.ObjectSchema<{
1495
+ readonly method: v.LiteralSchema<"wallet_connect", undefined>;
1496
+ readonly params: v.NullishSchema<v.ObjectSchema<{
1497
+ readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
1498
+ readonly actions: Omit<v.ObjectSchema<{
1499
+ readonly read: v.BooleanSchema<undefined>;
1500
+ readonly autoSign: v.BooleanSchema<undefined>;
1501
+ readonly rename: v.BooleanSchema<undefined>;
1502
+ }, undefined>, "_types" | "_run" | "entries"> & {
1503
+ readonly entries: {
1504
+ readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1505
+ readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1506
+ readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1507
+ };
1508
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1509
+ read?: boolean | undefined;
1510
+ autoSign?: boolean | undefined;
1511
+ rename?: boolean | undefined;
1512
+ }, v.ObjectIssue | v.BooleanIssue>;
1513
+ readonly _types?: {
1514
+ readonly input: {
1515
+ read?: boolean | undefined;
1516
+ autoSign?: boolean | undefined;
1517
+ rename?: boolean | undefined;
1518
+ };
1519
+ readonly output: {
1520
+ read?: boolean | undefined;
1521
+ autoSign?: boolean | undefined;
1522
+ rename?: boolean | undefined;
1523
+ };
1524
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1525
+ } | undefined;
1526
+ };
1527
+ readonly type: v.LiteralSchema<"account", undefined>;
1528
+ readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
1529
+ }, undefined>, v.ObjectSchema<{
1530
+ readonly actions: Omit<v.ObjectSchema<{
1531
+ readonly addPrivateKey: v.BooleanSchema<undefined>;
1532
+ readonly openPopup: v.BooleanSchema<undefined>;
1533
+ readonly openFullPage: v.BooleanSchema<undefined>;
1534
+ readonly readAllAccounts: v.BooleanSchema<undefined>;
1535
+ }, undefined>, "_types" | "_run" | "entries"> & {
1536
+ readonly entries: {
1537
+ readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1538
+ readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1539
+ readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1540
+ readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
1541
+ };
1542
+ readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
1543
+ addPrivateKey?: boolean | undefined;
1544
+ openPopup?: boolean | undefined;
1545
+ openFullPage?: boolean | undefined;
1546
+ readAllAccounts?: boolean | undefined;
1547
+ }, v.ObjectIssue | v.BooleanIssue>;
1548
+ readonly _types?: {
1549
+ readonly input: {
1550
+ addPrivateKey?: boolean | undefined;
1551
+ openPopup?: boolean | undefined;
1552
+ openFullPage?: boolean | undefined;
1553
+ readAllAccounts?: boolean | undefined;
1554
+ };
1555
+ readonly output: {
1556
+ addPrivateKey?: boolean | undefined;
1557
+ openPopup?: boolean | undefined;
1558
+ openFullPage?: boolean | undefined;
1559
+ readAllAccounts?: boolean | undefined;
1560
+ };
1561
+ readonly issue: v.ObjectIssue | v.BooleanIssue;
1562
+ } | undefined;
1563
+ };
1564
+ readonly type: v.LiteralSchema<"wallet", undefined>;
1565
+ readonly resourceId: v.LiteralSchema<"wallet", undefined>;
1566
+ }, undefined>], undefined>, undefined>, never>;
1567
+ }, undefined>, never>;
1098
1568
  readonly id: v.StringSchema<undefined>;
1099
1569
  readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
1100
- readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, never>;
1101
1570
  }, undefined>;
1102
- type GetCurrentPermissions = MethodParamsAndResult<v.InferOutput<typeof getCurrentPermissionsParamsSchema>, v.InferOutput<typeof getCurrentPermissionsResultSchema>>;
1571
+ type ConnectRequestMessage = v.InferOutput<typeof connectRequestMessageSchema>;
1572
+ type Connect = MethodParamsAndResult<ConnectParams, ConnectResult>;
1103
1573
 
1104
1574
  declare const walletTypes: readonly ["software", "ledger"];
1105
1575
  declare const walletTypeSchema: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
@@ -1180,4 +1650,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
1180
1650
  declare const DefaultAdaptersInfo: Record<string, Provider>;
1181
1651
  declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
1182
1652
 
1183
- 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 };
1653
+ 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 };