@omnity/ree-client-ts-sdk 0.5.8 → 0.5.9
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.cjs.js +6 -6
- package/dist/index.d.ts +7 -0
- package/dist/index.es.js +121 -117
- package/dist/react.d.ts +7 -0
- package/package.json +1 -1
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;
|