@sats-connect/core 0.0.9-1c32d09 → 0.0.9-2625b37

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +12 -0
  2. package/package.json +1 -1
package/dist/index.d.mts CHANGED
@@ -503,6 +503,17 @@ interface GetRunesBalanceResult {
503
503
  }[];
504
504
  }
505
505
  type GetRunesBalance = MethodParamsAndResult<GetRunesBalanceParams, GetRunesBalanceResult>;
506
+ type TransferRunesParams = {
507
+ recipients: {
508
+ runeName: string;
509
+ amount: string;
510
+ address: string;
511
+ }[];
512
+ };
513
+ interface TransferRunesResult {
514
+ txid: string;
515
+ }
516
+ type TransferRunes = MethodParamsAndResult<TransferRunesParams, TransferRunesResult>;
506
517
 
507
518
  interface Pubkey {
508
519
  /**
@@ -713,6 +724,7 @@ interface RunesRequests {
713
724
  runes_estimateRbfOrder: EstimateRbfOrder;
714
725
  runes_rbfOrder: RbfOrder;
715
726
  runes_getBalance: GetRunesBalance;
727
+ runes_transfer: TransferRunes;
716
728
  }
717
729
  type RunesRequestMethod = keyof RunesRequests;
718
730
  type Requests = BtcRequests & StxRequests & RunesRequests;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sats-connect/core",
3
- "version": "0.0.9-1c32d09",
3
+ "version": "0.0.9-2625b37",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.mts",