@sats-connect/core 0.0.9-7e4d74e → 0.0.9-8c9a7c6

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
@@ -501,6 +501,17 @@ interface GetRunesBalanceResult {
501
501
  }[];
502
502
  }
503
503
  type GetRunesBalance = MethodParamsAndResult<GetRunesBalanceParams, GetRunesBalanceResult>;
504
+ type TransferRunesParams = {
505
+ recipients: {
506
+ runeName: string;
507
+ amount: string;
508
+ address: string;
509
+ }[];
510
+ };
511
+ interface TransferRunesResult {
512
+ txid: string;
513
+ }
514
+ type TransferRunes = MethodParamsAndResult<TransferRunesParams, TransferRunesResult>;
504
515
 
505
516
  interface Pubkey {
506
517
  /**
@@ -711,6 +722,7 @@ interface RunesRequests {
711
722
  runes_estimateRbfOrder: EstimateRbfOrder;
712
723
  runes_rbfOrder: RbfOrder;
713
724
  runes_getBalance: GetRunesBalance;
725
+ runes_transfer: TransferRunes;
714
726
  }
715
727
  type RunesRequestMethod = keyof RunesRequests;
716
728
  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-7e4d74e",
3
+ "version": "0.0.9-8c9a7c6",
4
4
  "main": "dist/index.mjs",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.mts",