@omnity/ree-client-ts-sdk 0.5.8 → 0.6.0

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.ts CHANGED
@@ -325,6 +325,12 @@ export declare interface RuneInfo {
325
325
 
326
326
  declare function toBitcoinNetwork(network: Network): bitcoin.networks.Network;
327
327
 
328
+ declare type ToSignInput = {
329
+ publicKey?: string;
330
+ address?: string;
331
+ index: number;
332
+ };
333
+
328
334
  /**
329
335
  * Transaction builder for Bitcoin and Rune transactions
330
336
  * Handles PSBT creation, UTXO selection, and fee calculation
@@ -493,6 +499,7 @@ export declare class Transaction {
493
499
  psbt: bitcoin.Psbt;
494
500
  txid: string;
495
501
  fee: bigint;
502
+ toSignInputs: ToSignInput[];
496
503
  }>;
497
504
  private static estimateTxVirtualSize;
498
505
  private static parseAddressType;