@sats-connect/core 0.4.0-d60f0ef → 0.4.0-de32322

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.mjs CHANGED
@@ -113,16 +113,127 @@ var rpcResponseMessageSchema = v2.union([
113
113
  ]);
114
114
 
115
115
  // src/request/index.ts
116
- import * as v10 from "valibot";
116
+ import * as v17 from "valibot";
117
117
 
118
- // src/request/types/stxMethods.ts
118
+ // src/request/types/stxMethods/callContract.ts
119
+ import * as v3 from "valibot";
120
+ var stxCallContractMethodName = "stx_callContract";
121
+ var stxCallContractParamsSchema = v3.object({
122
+ /**
123
+ * The contract principal.
124
+ *
125
+ * E.g. `"SPKE...GD5C.my-contract"`
126
+ */
127
+ contract: v3.string(),
128
+ /**
129
+ * The name of the function to call.
130
+ *
131
+ * Note: spec changes ongoing,
132
+ * https://github.com/stacksgov/sips/pull/166#pullrequestreview-1914236999
133
+ */
134
+ functionName: v3.string(),
135
+ /**
136
+ * The function's arguments. The arguments are expected to be hex-encoded
137
+ * strings of Clarity values.
138
+ *
139
+ * To convert Clarity values to their hex representation, the `cvToString`
140
+ * helper from the `@stacks/transactions` package may be helpful.
141
+ *
142
+ * ```js
143
+ * import { cvToString } from '@stacks/transactions';
144
+ *
145
+ * const functionArgs = [someClarityValue1, someClarityValue2];
146
+ * const hexArgs = functionArgs.map(cvToString);
147
+ * ```
148
+ */
149
+ arguments: v3.optional(v3.array(v3.string()))
150
+ });
151
+ var stxCallContractResultSchema = v3.object({
152
+ /**
153
+ * The ID of the transaction.
154
+ */
155
+ txid: v3.string(),
156
+ /**
157
+ * A Stacks transaction as a hex-encoded string.
158
+ */
159
+ transaction: v3.string()
160
+ });
161
+ var stxCallContractRequestMessageSchema = v3.object({
162
+ ...rpcRequestMessageSchema.entries,
163
+ ...v3.object({
164
+ method: v3.literal(stxCallContractMethodName),
165
+ params: stxCallContractParamsSchema,
166
+ id: v3.string()
167
+ }).entries
168
+ });
169
+
170
+ // src/request/types/stxMethods/deployContract.ts
119
171
  import * as v4 from "valibot";
172
+ var stxDeployContractMethodName = "stx_deployContract";
173
+ var stxDeployContractParamsSchema = v4.object({
174
+ /**
175
+ * Name of the contract.
176
+ */
177
+ name: v4.string(),
178
+ /**
179
+ * The source code of the Clarity contract.
180
+ */
181
+ clarityCode: v4.string(),
182
+ /**
183
+ * The version of the Clarity contract.
184
+ */
185
+ clarityVersion: v4.optional(v4.string())
186
+ });
187
+ var stxDeployContractResultSchema = v4.object({
188
+ /**
189
+ * The ID of the transaction.
190
+ */
191
+ txid: v4.string(),
192
+ /**
193
+ * A Stacks transaction as a hex-encoded string.
194
+ */
195
+ transaction: v4.string()
196
+ });
197
+ var stxDeployContractRequestMessageSchema = v4.object({
198
+ ...rpcRequestMessageSchema.entries,
199
+ ...v4.object({
200
+ method: v4.literal(stxDeployContractMethodName),
201
+ params: stxDeployContractParamsSchema,
202
+ id: v4.string()
203
+ }).entries
204
+ });
205
+
206
+ // src/request/types/stxMethods/getAccounts.ts
207
+ import * as v5 from "valibot";
208
+ var stxGetAccountsMethodName = "stx_getAccounts";
209
+ var stxGetAccountsParamsSchema = v5.nullish(v5.null());
210
+ var stxGetAccountsResultSchema = v5.object({
211
+ /**
212
+ * The addresses generated for the given purposes.
213
+ */
214
+ addresses: v5.array(
215
+ v5.object({
216
+ address: v5.string(),
217
+ publicKey: v5.string(),
218
+ gaiaHubUrl: v5.string(),
219
+ gaiaAppKey: v5.string()
220
+ })
221
+ )
222
+ });
223
+ var stxGetAccountsRequestMessageSchema = v5.object({
224
+ ...rpcRequestMessageSchema.entries,
225
+ ...v5.object({
226
+ method: v5.literal(stxGetAccountsMethodName),
227
+ params: stxGetAccountsParamsSchema,
228
+ id: v5.string()
229
+ }).entries
230
+ });
120
231
 
121
232
  // src/addresses/index.ts
122
233
  import { createUnsecuredToken } from "jsontokens";
123
234
 
124
235
  // src/addresses/types.ts
125
- import * as v3 from "valibot";
236
+ import * as v6 from "valibot";
126
237
  var AddressPurpose = /* @__PURE__ */ ((AddressPurpose2) => {
127
238
  AddressPurpose2["Ordinals"] = "ordinals";
128
239
  AddressPurpose2["Payment"] = "payment";
@@ -138,11 +249,11 @@ var AddressType = /* @__PURE__ */ ((AddressType3) => {
138
249
  AddressType3["stacks"] = "stacks";
139
250
  return AddressType3;
140
251
  })(AddressType || {});
141
- var addressSchema = v3.object({
142
- address: v3.string(),
143
- publicKey: v3.string(),
144
- purpose: v3.enum(AddressPurpose),
145
- addressType: v3.enum(AddressType)
252
+ var addressSchema = v6.object({
253
+ address: v6.string(),
254
+ publicKey: v6.string(),
255
+ purpose: v6.enum(AddressPurpose),
256
+ addressType: v6.enum(AddressType)
146
257
  });
147
258
 
148
259
  // src/addresses/index.ts
@@ -162,118 +273,269 @@ var getAddress = async (options) => {
162
273
  }
163
274
  };
164
275
 
165
- // src/request/types/stxMethods.ts
276
+ // src/request/types/stxMethods/getAddresses.ts
277
+ import * as v7 from "valibot";
166
278
  var stxGetAddressesMethodName = "stx_getAddresses";
167
- var stxGetAddressesParamsSchema = v4.nullish(
168
- v4.object({
279
+ var stxGetAddressesParamsSchema = v7.nullish(
280
+ v7.object({
169
281
  /**
170
282
  * A message to be displayed to the user in the request prompt.
171
283
  */
172
- message: v4.optional(v4.string())
284
+ message: v7.optional(v7.string())
173
285
  })
174
286
  );
175
- var stxGetAddressesResultSchema = v4.object({
287
+ var stxGetAddressesResultSchema = v7.object({
176
288
  /**
177
289
  * The addresses generated for the given purposes.
178
290
  */
179
- addresses: v4.array(addressSchema)
291
+ addresses: v7.array(addressSchema)
180
292
  });
181
- var stxGetAddressesRequestMessageSchema = v4.object({
293
+ var stxGetAddressesRequestMessageSchema = v7.object({
182
294
  ...rpcRequestMessageSchema.entries,
183
- ...v4.object({
184
- method: v4.literal(stxGetAddressesMethodName),
295
+ ...v7.object({
296
+ method: v7.literal(stxGetAddressesMethodName),
185
297
  params: stxGetAddressesParamsSchema,
186
- id: v4.string()
298
+ id: v7.string()
299
+ }).entries
300
+ });
301
+
302
+ // src/request/types/stxMethods/signMessage.ts
303
+ import * as v8 from "valibot";
304
+ var stxSignMessageMethodName = "stx_signMessage";
305
+ var stxSignMessageParamsSchema = v8.object({
306
+ /**
307
+ * The message to sign.
308
+ */
309
+ message: v8.string(),
310
+ /**
311
+ * The public key to sign the message with.
312
+ */
313
+ publicKey: v8.string(),
314
+ /**
315
+ * The format version of the parameter.
316
+ */
317
+ parameterFormatVersion: v8.optional(v8.number())
318
+ });
319
+ var stxSignMessageResultSchema = v8.object({
320
+ /**
321
+ * The signature of the message.
322
+ */
323
+ signature: v8.string(),
324
+ /**
325
+ * The public key used to sign the message.
326
+ */
327
+ publicKey: v8.string()
328
+ });
329
+ var stxSignMessageRequestMessageSchema = v8.object({
330
+ ...rpcRequestMessageSchema.entries,
331
+ ...v8.object({
332
+ method: v8.literal(stxSignMessageMethodName),
333
+ params: stxSignMessageParamsSchema,
334
+ id: v8.string()
335
+ }).entries
336
+ });
337
+
338
+ // src/request/types/stxMethods/signStructuredMessage.ts
339
+ import * as v9 from "valibot";
340
+ var stxSignStructuredMessageMethodName = "stx_signStructuredMessage";
341
+ var stxSignStructuredMessageParamsSchema = v9.object({
342
+ /**
343
+ * The domain to be signed.
344
+ */
345
+ domain: v9.string(),
346
+ /**
347
+ * Message payload to be signed.
348
+ */
349
+ message: v9.string(),
350
+ /**
351
+ * The format version of the parameter.
352
+ */
353
+ parameterFormatVersion: v9.optional(v9.number()),
354
+ /**
355
+ * The public key to sign the message with.
356
+ */
357
+ publicKey: v9.optional(v9.string())
358
+ });
359
+ var stxSignStructuredMessageResultSchema = v9.object({
360
+ /**
361
+ * Signature of the message.
362
+ */
363
+ signature: v9.string(),
364
+ /**
365
+ * Public key as hex-encoded string.
366
+ */
367
+ publicKey: v9.string()
368
+ });
369
+ var stxSignStructuredMessageRequestMessageSchema = v9.object({
370
+ ...rpcRequestMessageSchema.entries,
371
+ ...v9.object({
372
+ method: v9.literal(stxSignStructuredMessageMethodName),
373
+ params: stxSignStructuredMessageParamsSchema,
374
+ id: v9.string()
187
375
  }).entries
188
376
  });
377
+
378
+ // src/request/types/stxMethods/signTransaction.ts
379
+ import * as v10 from "valibot";
189
380
  var stxSignTransactionMethodName = "stx_signTransaction";
190
- var stxSignTransactionParamsSchema = v4.object({
381
+ var stxSignTransactionParamsSchema = v10.object({
191
382
  /**
192
383
  * The transaction to sign as a hex-encoded string.
193
384
  */
194
- transaction: v4.string(),
385
+ transaction: v10.string(),
195
386
  /**
196
387
  * The public key to sign the transaction with. The wallet may use any key
197
388
  * when not provided.
198
389
  */
199
- pubkey: v4.optional(v4.string()),
390
+ pubkey: v10.optional(v10.string()),
200
391
  /**
201
392
  * Whether to broadcast the transaction after signing. Defaults to `true`.
202
393
  */
203
- broadcast: v4.optional(v4.boolean())
394
+ broadcast: v10.optional(v10.boolean())
204
395
  });
205
- var stxSignTransactionResultSchema = v4.object({
396
+ var stxSignTransactionResultSchema = v10.object({
206
397
  /**
207
398
  * The signed transaction as a hex-encoded string.
208
399
  */
209
- transaction: v4.string()
400
+ transaction: v10.string()
210
401
  });
211
- var stxSignTransactionRequestMessageSchema = v4.object({
402
+ var stxSignTransactionRequestMessageSchema = v10.object({
212
403
  ...rpcRequestMessageSchema.entries,
213
- ...v4.object({
214
- method: v4.literal(stxSignTransactionMethodName),
404
+ ...v10.object({
405
+ method: v10.literal(stxSignTransactionMethodName),
215
406
  params: stxSignTransactionParamsSchema,
216
- id: v4.string()
407
+ id: v10.string()
408
+ }).entries
409
+ });
410
+
411
+ // src/request/types/stxMethods/transferStx.ts
412
+ import * as v11 from "valibot";
413
+ var stxTransferStxMethodName = "stx_transferStx";
414
+ var stxTransferStxParamsSchema = v11.object({
415
+ /**
416
+ * Amount of STX tokens to transfer in microstacks as a string. Anything
417
+ * parseable by `BigInt` is acceptable.
418
+ *
419
+ * Example,
420
+ *
421
+ * ```js
422
+ * const amount1 = 1234;
423
+ * const amount2 = 1234n;
424
+ * const amount3 = '1234';
425
+ * ```
426
+ */
427
+ amount: v11.union([v11.number(), v11.string()]),
428
+ /**
429
+ * The recipeint's principal.
430
+ */
431
+ recipient: v11.string(),
432
+ /**
433
+ * A string representing the memo.
434
+ */
435
+ memo: v11.optional(v11.string()),
436
+ /**
437
+ * Version of parameter format.
438
+ */
439
+ version: v11.optional(v11.string()),
440
+ /**
441
+ * The mode of the post conditions.
442
+ */
443
+ postConditionMode: v11.optional(v11.number()),
444
+ /**
445
+ * A hex-encoded string representing the post conditions.
446
+ *
447
+ * A post condition may be converted to it's hex representation using the `serializePostCondition` helper from the `@stacks/transactions` package,
448
+ *
449
+ * ```js
450
+ * import { serializePostCondition } from '@stacks/transactions';
451
+ *
452
+ * const postCondition = somePostCondition;
453
+ * const hexPostCondition = serializePostCondition(postCondition).toString('hex');
454
+ * ```
455
+ */
456
+ postConditions: v11.optional(v11.array(v11.string())),
457
+ /**
458
+ * The public key to sign the transaction with. The wallet may use any key
459
+ * when not provided.
460
+ */
461
+ pubkey: v11.optional(v11.string())
462
+ });
463
+ var stxTransferStxResultSchema = v11.object({
464
+ /**
465
+ * The ID of the transaction.
466
+ */
467
+ txid: v11.string(),
468
+ /**
469
+ * A Stacks transaction as a hex-encoded string.
470
+ */
471
+ transaction: v11.string()
472
+ });
473
+ var stxTransferStxRequestMessageSchema = v11.object({
474
+ ...rpcRequestMessageSchema.entries,
475
+ ...v11.object({
476
+ method: v11.literal(stxTransferStxMethodName),
477
+ params: stxTransferStxParamsSchema,
478
+ id: v11.string()
217
479
  }).entries
218
480
  });
219
481
 
220
482
  // src/request/types/btcMethods.ts
221
- import * as v6 from "valibot";
483
+ import * as v13 from "valibot";
222
484
 
223
485
  // src/request/types/common.ts
224
- import * as v5 from "valibot";
486
+ import * as v12 from "valibot";
225
487
  var walletTypes = ["software", "ledger"];
226
- var walletTypeSchema = v5.picklist(walletTypes);
488
+ var walletTypeSchema = v12.picklist(walletTypes);
227
489
 
228
490
  // src/request/types/btcMethods.ts
229
491
  var getInfoMethodName = "getInfo";
230
- var getInfoParamsSchema = v6.nullish(v6.null());
231
- var getInfoResultSchema = v6.object({
492
+ var getInfoParamsSchema = v13.nullish(v13.null());
493
+ var getInfoResultSchema = v13.object({
232
494
  /**
233
495
  * Version of the wallet.
234
496
  */
235
- version: v6.string(),
497
+ version: v13.string(),
236
498
  /**
237
499
  * [WBIP](https://wbips.netlify.app/wbips/WBIP002) methods supported by the wallet.
238
500
  */
239
- methods: v6.optional(v6.array(v6.string())),
501
+ methods: v13.optional(v13.array(v13.string())),
240
502
  /**
241
503
  * List of WBIP standards supported by the wallet. Not currently used.
242
504
  */
243
- supports: v6.array(v6.string())
505
+ supports: v13.array(v13.string())
244
506
  });
245
- var getInfoRequestMessageSchema = v6.object({
507
+ var getInfoRequestMessageSchema = v13.object({
246
508
  ...rpcRequestMessageSchema.entries,
247
- ...v6.object({
248
- method: v6.literal(getInfoMethodName),
509
+ ...v13.object({
510
+ method: v13.literal(getInfoMethodName),
249
511
  params: getInfoParamsSchema,
250
- id: v6.string()
512
+ id: v13.string()
251
513
  }).entries
252
514
  });
253
515
  var getAddressesMethodName = "getAddresses";
254
- var getAddressesParamsSchema = v6.object({
516
+ var getAddressesParamsSchema = v13.object({
255
517
  /**
256
518
  * The purposes for which to generate addresses. See
257
519
  * {@linkcode AddressPurpose} for available purposes.
258
520
  */
259
- purposes: v6.array(v6.enum(AddressPurpose)),
521
+ purposes: v13.array(v13.enum(AddressPurpose)),
260
522
  /**
261
523
  * A message to be displayed to the user in the request prompt.
262
524
  */
263
- message: v6.optional(v6.string())
525
+ message: v13.optional(v13.string())
264
526
  });
265
- var getAddressesResultSchema = v6.object({
527
+ var getAddressesResultSchema = v13.object({
266
528
  /**
267
529
  * The addresses generated for the given purposes.
268
530
  */
269
- addresses: v6.array(addressSchema)
531
+ addresses: v13.array(addressSchema)
270
532
  });
271
- var getAddressesRequestMessageSchema = v6.object({
533
+ var getAddressesRequestMessageSchema = v13.object({
272
534
  ...rpcRequestMessageSchema.entries,
273
- ...v6.object({
274
- method: v6.literal(getAddressesMethodName),
535
+ ...v13.object({
536
+ method: v13.literal(getAddressesMethodName),
275
537
  params: getAddressesParamsSchema,
276
- id: v6.string()
538
+ id: v13.string()
277
539
  }).entries
278
540
  });
279
541
  var signMessageMethodName = "signMessage";
@@ -282,328 +544,364 @@ var MessageSigningProtocols = /* @__PURE__ */ ((MessageSigningProtocols2) => {
282
544
  MessageSigningProtocols2["BIP322"] = "BIP322";
283
545
  return MessageSigningProtocols2;
284
546
  })(MessageSigningProtocols || {});
285
- var signMessageParamsSchema = v6.object({
547
+ var signMessageParamsSchema = v13.object({
286
548
  /**
287
549
  * The address used for signing.
288
550
  **/
289
- address: v6.string(),
551
+ address: v13.string(),
290
552
  /**
291
553
  * The message to sign.
292
554
  **/
293
- message: v6.string(),
555
+ message: v13.string(),
294
556
  /**
295
557
  * The protocol to use for signing the message.
296
558
  */
297
- protocol: v6.optional(v6.enum(MessageSigningProtocols))
559
+ protocol: v13.optional(v13.enum(MessageSigningProtocols))
298
560
  });
299
- var signMessageResultSchema = v6.object({
561
+ var signMessageResultSchema = v13.object({
300
562
  /**
301
563
  * The signature of the message.
302
564
  */
303
- signature: v6.string(),
565
+ signature: v13.string(),
304
566
  /**
305
567
  * hash of the message.
306
568
  */
307
- messageHash: v6.string(),
569
+ messageHash: v13.string(),
308
570
  /**
309
571
  * The address used for signing.
310
572
  */
311
- address: v6.string(),
573
+ address: v13.string(),
312
574
  /**
313
575
  * The protocol to use for signing the message.
314
576
  */
315
- protocol: v6.enum(MessageSigningProtocols)
577
+ protocol: v13.enum(MessageSigningProtocols)
316
578
  });
317
- var signMessageRequestMessageSchema = v6.object({
579
+ var signMessageRequestMessageSchema = v13.object({
318
580
  ...rpcRequestMessageSchema.entries,
319
- ...v6.object({
320
- method: v6.literal(signMessageMethodName),
581
+ ...v13.object({
582
+ method: v13.literal(signMessageMethodName),
321
583
  params: signMessageParamsSchema,
322
- id: v6.string()
584
+ id: v13.string()
323
585
  }).entries
324
586
  });
325
587
  var sendTransferMethodName = "sendTransfer";
326
- var sendTransferParamsSchema = v6.object({
588
+ var sendTransferParamsSchema = v13.object({
327
589
  /**
328
590
  * Array of recipients to send to.
329
591
  * The amount to send to each recipient is in satoshis.
330
592
  */
331
- recipients: v6.array(
332
- v6.object({
333
- address: v6.string(),
334
- amount: v6.number()
593
+ recipients: v13.array(
594
+ v13.object({
595
+ address: v13.string(),
596
+ amount: v13.number()
335
597
  })
336
598
  )
337
599
  });
338
- var sendTransferResultSchema = v6.object({
600
+ var sendTransferResultSchema = v13.object({
339
601
  /**
340
602
  * The transaction id as a hex-encoded string.
341
603
  */
342
- txid: v6.string()
604
+ txid: v13.string()
343
605
  });
344
- var sendTransferRequestMessageSchema = v6.object({
606
+ var sendTransferRequestMessageSchema = v13.object({
345
607
  ...rpcRequestMessageSchema.entries,
346
- ...v6.object({
347
- method: v6.literal(sendTransferMethodName),
608
+ ...v13.object({
609
+ method: v13.literal(sendTransferMethodName),
348
610
  params: sendTransferParamsSchema,
349
- id: v6.string()
611
+ id: v13.string()
612
+ }).entries
613
+ });
614
+ var signPsbtMethodName = "signPsbt";
615
+ var signPsbtParamsSchema = v13.object({
616
+ /**
617
+ * The base64 encoded PSBT to sign.
618
+ */
619
+ psbt: v13.string(),
620
+ /**
621
+ * The inputs to sign.
622
+ * The key is the address and the value is an array of indexes of the inputs to sign.
623
+ */
624
+ signInputs: v13.record(v13.string(), v13.array(v13.number())),
625
+ allowedSignHash: v13.optional(v13.number()),
626
+ /**
627
+ * Whether to broadcast the transaction after signing.
628
+ **/
629
+ broadcast: v13.optional(v13.boolean())
630
+ });
631
+ var signPsbtResultSchema = v13.object({
632
+ /**
633
+ * The base64 encoded PSBT after signing.
634
+ */
635
+ psbt: v13.string(),
636
+ /**
637
+ * The transaction id as a hex-encoded string.
638
+ * This is only returned if the transaction was broadcast.
639
+ **/
640
+ txid: v13.optional(v13.string())
641
+ });
642
+ var signPsbtRequestMessageSchema = v13.object({
643
+ ...rpcRequestMessageSchema.entries,
644
+ ...v13.object({
645
+ method: v13.literal(signPsbtMethodName),
646
+ params: signPsbtParamsSchema,
647
+ id: v13.string()
350
648
  }).entries
351
649
  });
352
650
  var getAccountsMethodName = "getAccounts";
353
- var getAccountsParamsSchema = v6.object({
651
+ var getAccountsParamsSchema = v13.object({
354
652
  /**
355
653
  * The purposes for which to generate addresses. See
356
654
  * {@linkcode AddressPurpose} for available purposes.
357
655
  */
358
- purposes: v6.array(v6.enum(AddressPurpose)),
656
+ purposes: v13.array(v13.enum(AddressPurpose)),
359
657
  /**
360
658
  * A message to be displayed to the user in the request prompt.
361
659
  */
362
- message: v6.optional(v6.string())
660
+ message: v13.optional(v13.string())
363
661
  });
364
- var getAccountsResultSchema = v6.array(
365
- v6.object({
662
+ var getAccountsResultSchema = v13.array(
663
+ v13.object({
366
664
  ...addressSchema.entries,
367
- ...v6.object({
665
+ ...v13.object({
368
666
  walletType: walletTypeSchema
369
667
  }).entries
370
668
  })
371
669
  );
372
- var getAccountsRequestMessageSchema = v6.object({
670
+ var getAccountsRequestMessageSchema = v13.object({
373
671
  ...rpcRequestMessageSchema.entries,
374
- ...v6.object({
375
- method: v6.literal(getAccountsMethodName),
672
+ ...v13.object({
673
+ method: v13.literal(getAccountsMethodName),
376
674
  params: getAccountsParamsSchema,
377
- id: v6.string()
675
+ id: v13.string()
378
676
  }).entries
379
677
  });
380
678
  var getBalanceMethodName = "getBalance";
381
- var getBalanceParamsSchema = v6.nullish(v6.null());
382
- var getBalanceResultSchema = v6.object({
679
+ var getBalanceParamsSchema = v13.nullish(v13.null());
680
+ var getBalanceResultSchema = v13.object({
383
681
  /**
384
682
  * The confirmed balance of the wallet in sats. Using a string due to chrome
385
683
  * messages not supporting bigint
386
684
  * (https://issues.chromium.org/issues/40116184).
387
685
  */
388
- confirmed: v6.string(),
686
+ confirmed: v13.string(),
389
687
  /**
390
688
  * The unconfirmed balance of the wallet in sats. Using a string due to chrome
391
689
  * messages not supporting bigint
392
690
  * (https://issues.chromium.org/issues/40116184).
393
691
  */
394
- unconfirmed: v6.string(),
692
+ unconfirmed: v13.string(),
395
693
  /**
396
694
  * The total balance (both confirmed and unconfrimed UTXOs) of the wallet in
397
695
  * sats. Using a string due to chrome messages not supporting bigint
398
696
  * (https://issues.chromium.org/issues/40116184).
399
697
  */
400
- total: v6.string()
698
+ total: v13.string()
401
699
  });
402
- var getBalanceRequestMessageSchema = v6.object({
700
+ var getBalanceRequestMessageSchema = v13.object({
403
701
  ...rpcRequestMessageSchema.entries,
404
- ...v6.object({
405
- method: v6.literal(getBalanceMethodName),
406
- id: v6.string()
702
+ ...v13.object({
703
+ method: v13.literal(getBalanceMethodName),
704
+ id: v13.string()
407
705
  }).entries
408
706
  });
409
707
 
410
708
  // src/request/types/walletMethods.ts
411
- import * as v7 from "valibot";
709
+ import * as v14 from "valibot";
412
710
  import { permissions } from "@secretkeylabs/xverse-core";
413
- var permissionTemplate = v7.variant("type", [
414
- v7.object({
415
- ...v7.omit(permissions.resources.account.accountPermissionSchema, ["clientId", "actions"]).entries,
416
- actions: v7.partial(permissions.resources.account.accountActionsSchema)
711
+ var permissionTemplate = v14.variant("type", [
712
+ v14.object({
713
+ ...v14.omit(permissions.resources.account.accountPermissionSchema, ["clientId", "actions"]).entries,
714
+ actions: v14.partial(permissions.resources.account.accountActionsSchema)
417
715
  }),
418
- v7.object({
419
- ...v7.omit(permissions.resources.wallet.walletPermissionSchema, ["clientId"]).entries,
420
- actions: v7.partial(permissions.resources.wallet.walletActionsSchema)
716
+ v14.object({
717
+ ...v14.omit(permissions.resources.wallet.walletPermissionSchema, ["clientId"]).entries,
718
+ actions: v14.partial(permissions.resources.wallet.walletActionsSchema)
421
719
  })
422
720
  ]);
423
721
  var requestPermissionsMethodName = "wallet_requestPermissions";
424
- var requestPermissionsParamsSchema = v7.nullish(v7.array(permissionTemplate));
425
- var requestPermissionsResultSchema = v7.literal(true);
426
- var requestPermissionsRequestMessageSchema = v7.object({
722
+ var requestPermissionsParamsSchema = v14.nullish(v14.array(permissionTemplate));
723
+ var requestPermissionsResultSchema = v14.literal(true);
724
+ var requestPermissionsRequestMessageSchema = v14.object({
427
725
  ...rpcRequestMessageSchema.entries,
428
- ...v7.object({
429
- method: v7.literal(requestPermissionsMethodName),
726
+ ...v14.object({
727
+ method: v14.literal(requestPermissionsMethodName),
430
728
  params: requestPermissionsParamsSchema,
431
- id: v7.string()
729
+ id: v14.string()
432
730
  }).entries
433
731
  });
434
732
  var renouncePermissionsMethodName = "wallet_renouncePermissions";
435
- var renouncePermissionsParamsSchema = v7.nullish(v7.null());
436
- var renouncePermissionsResultSchema = v7.nullish(v7.null());
437
- var renouncePermissionsRequestMessageSchema = v7.object({
733
+ var renouncePermissionsParamsSchema = v14.nullish(v14.null());
734
+ var renouncePermissionsResultSchema = v14.nullish(v14.null());
735
+ var renouncePermissionsRequestMessageSchema = v14.object({
438
736
  ...rpcRequestMessageSchema.entries,
439
- ...v7.object({
440
- method: v7.literal(renouncePermissionsMethodName),
737
+ ...v14.object({
738
+ method: v14.literal(renouncePermissionsMethodName),
441
739
  params: renouncePermissionsParamsSchema,
442
- id: v7.string()
740
+ id: v14.string()
443
741
  }).entries
444
742
  });
445
743
  var disconnectMethodName = "wallet_disconnect";
446
- var disconnectParamsSchema = v7.nullish(v7.null());
447
- var disconnectResultSchema = v7.nullish(v7.null());
448
- var disconnectRequestMessageSchema = v7.object({
744
+ var disconnectParamsSchema = v14.nullish(v14.null());
745
+ var disconnectResultSchema = v14.nullish(v14.null());
746
+ var disconnectRequestMessageSchema = v14.object({
449
747
  ...rpcRequestMessageSchema.entries,
450
- ...v7.object({
451
- method: v7.literal(disconnectMethodName),
748
+ ...v14.object({
749
+ method: v14.literal(disconnectMethodName),
452
750
  params: disconnectParamsSchema,
453
- id: v7.string()
751
+ id: v14.string()
454
752
  }).entries
455
753
  });
456
754
  var getWalletTypeMethodName = "wallet_getWalletType";
457
- var getWalletTypeParamsSchema = v7.nullish(v7.null());
755
+ var getWalletTypeParamsSchema = v14.nullish(v14.null());
458
756
  var getWalletTypeResultSchema = walletTypeSchema;
459
- var getWalletTypeRequestMessageSchema = v7.object({
757
+ var getWalletTypeRequestMessageSchema = v14.object({
460
758
  ...rpcRequestMessageSchema.entries,
461
- ...v7.object({
462
- method: v7.literal(getWalletTypeMethodName),
759
+ ...v14.object({
760
+ method: v14.literal(getWalletTypeMethodName),
463
761
  params: getWalletTypeParamsSchema,
464
- id: v7.string()
762
+ id: v14.string()
465
763
  }).entries
466
764
  });
467
765
  var getCurrentPermissionsMethodName = "wallet_getCurrentPermissions";
468
- var getCurrentPermissionsParamsSchema = v7.nullish(v7.null());
469
- var getCurrentPermissionsResultSchema = v7.array(permissions.store.permission);
470
- var getCurrentPermissionsRequestMessageSchema = v7.object({
766
+ var getCurrentPermissionsParamsSchema = v14.nullish(v14.null());
767
+ var getCurrentPermissionsResultSchema = v14.array(permissions.store.permission);
768
+ var getCurrentPermissionsRequestMessageSchema = v14.object({
471
769
  ...rpcRequestMessageSchema.entries,
472
- ...v7.object({
473
- method: v7.literal(getCurrentPermissionsMethodName),
770
+ ...v14.object({
771
+ method: v14.literal(getCurrentPermissionsMethodName),
474
772
  params: getCurrentPermissionsParamsSchema,
475
- id: v7.string()
773
+ id: v14.string()
476
774
  }).entries
477
775
  });
478
776
  var getAccountMethodName = "wallet_getAccount";
479
- var getAccountParamsSchema = v7.nullish(v7.null());
480
- var getAccountResultSchema = v7.object({
777
+ var getAccountParamsSchema = v14.nullish(v14.null());
778
+ var getAccountResultSchema = v14.object({
481
779
  id: permissions.utils.account.accountIdSchema,
482
- addresses: v7.array(addressSchema),
780
+ addresses: v14.array(addressSchema),
483
781
  walletType: walletTypeSchema
484
782
  });
485
- var getAccountRequestMessageSchema = v7.object({
783
+ var getAccountRequestMessageSchema = v14.object({
486
784
  ...rpcRequestMessageSchema.entries,
487
- ...v7.object({
488
- method: v7.literal(getAccountMethodName),
785
+ ...v14.object({
786
+ method: v14.literal(getAccountMethodName),
489
787
  params: getAccountParamsSchema,
490
- id: v7.string()
788
+ id: v14.string()
491
789
  }).entries
492
790
  });
493
791
  var connectMethodName = "wallet_connect";
494
- var connectParamsSchema = v7.nullish(
495
- v7.object({
496
- permissions: v7.optional(v7.array(permissionTemplate))
792
+ var connectParamsSchema = v14.nullish(
793
+ v14.object({
794
+ permissions: v14.optional(v14.array(permissionTemplate))
497
795
  })
498
796
  );
499
797
  var connectResultSchema = getAccountResultSchema;
500
- var connectRequestMessageSchema = v7.object({
798
+ var connectRequestMessageSchema = v14.object({
501
799
  ...rpcRequestMessageSchema.entries,
502
- ...v7.object({
503
- method: v7.literal(connectMethodName),
800
+ ...v14.object({
801
+ method: v14.literal(connectMethodName),
504
802
  params: connectParamsSchema,
505
- id: v7.string()
803
+ id: v14.string()
506
804
  }).entries
507
805
  });
508
806
 
509
807
  // src/request/types/runesMethods.ts
510
- import * as v8 from "valibot";
808
+ import * as v15 from "valibot";
511
809
  var getRunesBalanceMethodName = "runes_getBalance";
512
- var getRunesBalanceParamsSchema = v8.nullish(v8.null());
513
- var getRunesBalanceResultSchema = v8.object({
514
- balances: v8.array(
515
- v8.object({
516
- runeName: v8.string(),
517
- amount: v8.string(),
518
- divisibility: v8.number(),
519
- symbol: v8.string(),
520
- inscriptionId: v8.nullish(v8.string())
810
+ var getRunesBalanceParamsSchema = v15.nullish(v15.null());
811
+ var getRunesBalanceResultSchema = v15.object({
812
+ balances: v15.array(
813
+ v15.object({
814
+ runeName: v15.string(),
815
+ amount: v15.string(),
816
+ divisibility: v15.number(),
817
+ symbol: v15.string(),
818
+ inscriptionId: v15.nullish(v15.string())
521
819
  })
522
820
  )
523
821
  });
524
- var getRunesBalanceRequestMessageSchema = v8.object({
822
+ var getRunesBalanceRequestMessageSchema = v15.object({
525
823
  ...rpcRequestMessageSchema.entries,
526
- ...v8.object({
527
- method: v8.literal(getRunesBalanceMethodName),
824
+ ...v15.object({
825
+ method: v15.literal(getRunesBalanceMethodName),
528
826
  params: getRunesBalanceParamsSchema,
529
- id: v8.string()
827
+ id: v15.string()
530
828
  }).entries
531
829
  });
532
830
  var transferRunesMethodName = "runes_transfer";
533
- var transferRunesParamsSchema = v8.object({
534
- recipients: v8.array(
535
- v8.object({
536
- runeName: v8.string(),
537
- amount: v8.string(),
538
- address: v8.string()
831
+ var transferRunesParamsSchema = v15.object({
832
+ recipients: v15.array(
833
+ v15.object({
834
+ runeName: v15.string(),
835
+ amount: v15.string(),
836
+ address: v15.string()
539
837
  })
540
838
  )
541
839
  });
542
- var transferRunesRequestSchema = v8.object({
840
+ var transferRunesRequestSchema = v15.object({
543
841
  ...rpcRequestMessageSchema.entries,
544
- ...v8.object({
545
- method: v8.literal(transferRunesMethodName),
842
+ ...v15.object({
843
+ method: v15.literal(transferRunesMethodName),
546
844
  params: transferRunesParamsSchema,
547
- id: v8.string()
845
+ id: v15.string()
548
846
  }).entries
549
847
  });
550
- var TransferRunesResultSchema = v8.object({
551
- txid: v8.string()
848
+ var TransferRunesResultSchema = v15.object({
849
+ txid: v15.string()
552
850
  });
553
851
 
554
852
  // src/request/types/ordinalsMethods.ts
555
- import * as v9 from "valibot";
853
+ import * as v16 from "valibot";
556
854
  var getInscriptionsMethodName = "ord_getInscriptions";
557
- var getInscriptionsParamsSchema = v9.object({
558
- offset: v9.number(),
559
- limit: v9.number()
560
- });
561
- var getInscriptionsResultSchema = v9.object({
562
- total: v9.number(),
563
- limit: v9.number(),
564
- offset: v9.number(),
565
- inscriptions: v9.array(
566
- v9.object({
567
- inscriptionId: v9.string(),
568
- inscriptionNumber: v9.string(),
569
- address: v9.string(),
570
- collectionName: v9.optional(v9.string()),
571
- postage: v9.string(),
572
- contentLength: v9.string(),
573
- contentType: v9.string(),
574
- timestamp: v9.number(),
575
- offset: v9.number(),
576
- genesisTransaction: v9.string(),
577
- output: v9.string()
855
+ var getInscriptionsParamsSchema = v16.object({
856
+ offset: v16.number(),
857
+ limit: v16.number()
858
+ });
859
+ var getInscriptionsResultSchema = v16.object({
860
+ total: v16.number(),
861
+ limit: v16.number(),
862
+ offset: v16.number(),
863
+ inscriptions: v16.array(
864
+ v16.object({
865
+ inscriptionId: v16.string(),
866
+ inscriptionNumber: v16.string(),
867
+ address: v16.string(),
868
+ collectionName: v16.optional(v16.string()),
869
+ postage: v16.string(),
870
+ contentLength: v16.string(),
871
+ contentType: v16.string(),
872
+ timestamp: v16.number(),
873
+ offset: v16.number(),
874
+ genesisTransaction: v16.string(),
875
+ output: v16.string()
578
876
  })
579
877
  )
580
878
  });
581
- var getInscriptionsSchema = v9.object({
879
+ var getInscriptionsSchema = v16.object({
582
880
  ...rpcRequestMessageSchema.entries,
583
- ...v9.object({
584
- method: v9.literal(getInscriptionsMethodName),
881
+ ...v16.object({
882
+ method: v16.literal(getInscriptionsMethodName),
585
883
  params: getInscriptionsParamsSchema,
586
- id: v9.string()
884
+ id: v16.string()
587
885
  }).entries
588
886
  });
589
887
  var sendInscriptionsMethodName = "ord_sendInscriptions";
590
- var sendInscriptionsParamsSchema = v9.object({
591
- transfers: v9.array(
592
- v9.object({
593
- address: v9.string(),
594
- inscriptionId: v9.string()
888
+ var sendInscriptionsParamsSchema = v16.object({
889
+ transfers: v16.array(
890
+ v16.object({
891
+ address: v16.string(),
892
+ inscriptionId: v16.string()
595
893
  })
596
894
  )
597
895
  });
598
- var sendInscriptionsResultSchema = v9.object({
599
- txid: v9.string()
896
+ var sendInscriptionsResultSchema = v16.object({
897
+ txid: v16.string()
600
898
  });
601
- var sendInscriptionsSchema = v9.object({
899
+ var sendInscriptionsSchema = v16.object({
602
900
  ...rpcRequestMessageSchema.entries,
603
- ...v9.object({
604
- method: v9.literal(sendInscriptionsMethodName),
901
+ ...v16.object({
902
+ method: v16.literal(sendInscriptionsMethodName),
605
903
  params: sendInscriptionsParamsSchema,
606
- id: v9.string()
904
+ id: v16.string()
607
905
  }).entries
608
906
  });
609
907
 
@@ -620,13 +918,13 @@ var request = async (method, params, providerId) => {
620
918
  throw new Error("A wallet method is required");
621
919
  }
622
920
  const response = await provider.request(method, params);
623
- if (v10.is(rpcErrorResponseMessageSchema, response)) {
921
+ if (v17.is(rpcErrorResponseMessageSchema, response)) {
624
922
  return {
625
923
  status: "error",
626
924
  error: response.error
627
925
  };
628
926
  }
629
- if (v10.is(rpcSuccessResponseMessageSchema, response)) {
927
+ if (v17.is(rpcSuccessResponseMessageSchema, response)) {
630
928
  return {
631
929
  status: "success",
632
930
  result: response.result
@@ -1672,15 +1970,43 @@ export {
1672
1970
  signMessageRequestMessageSchema,
1673
1971
  signMessageResultSchema,
1674
1972
  signMultipleTransactions,
1973
+ signPsbtMethodName,
1974
+ signPsbtParamsSchema,
1975
+ signPsbtRequestMessageSchema,
1976
+ signPsbtResultSchema,
1675
1977
  signTransaction,
1978
+ stxCallContractMethodName,
1979
+ stxCallContractParamsSchema,
1980
+ stxCallContractRequestMessageSchema,
1981
+ stxCallContractResultSchema,
1982
+ stxDeployContractMethodName,
1983
+ stxDeployContractParamsSchema,
1984
+ stxDeployContractRequestMessageSchema,
1985
+ stxDeployContractResultSchema,
1986
+ stxGetAccountsMethodName,
1987
+ stxGetAccountsParamsSchema,
1988
+ stxGetAccountsRequestMessageSchema,
1989
+ stxGetAccountsResultSchema,
1676
1990
  stxGetAddressesMethodName,
1677
1991
  stxGetAddressesParamsSchema,
1678
1992
  stxGetAddressesRequestMessageSchema,
1679
1993
  stxGetAddressesResultSchema,
1994
+ stxSignMessageMethodName,
1995
+ stxSignMessageParamsSchema,
1996
+ stxSignMessageRequestMessageSchema,
1997
+ stxSignMessageResultSchema,
1998
+ stxSignStructuredMessageMethodName,
1999
+ stxSignStructuredMessageParamsSchema,
2000
+ stxSignStructuredMessageRequestMessageSchema,
2001
+ stxSignStructuredMessageResultSchema,
1680
2002
  stxSignTransactionMethodName,
1681
2003
  stxSignTransactionParamsSchema,
1682
2004
  stxSignTransactionRequestMessageSchema,
1683
2005
  stxSignTransactionResultSchema,
2006
+ stxTransferStxMethodName,
2007
+ stxTransferStxParamsSchema,
2008
+ stxTransferStxRequestMessageSchema,
2009
+ stxTransferStxResultSchema,
1684
2010
  transferRunesMethodName,
1685
2011
  transferRunesParamsSchema,
1686
2012
  transferRunesRequestSchema,