@omnity/ree-client-ts-sdk 0.6.4 → 0.6.5
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 +3 -3
- package/dist/react.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -339,18 +339,18 @@ export declare class Transaction {
|
|
|
339
339
|
* Add a UTXO as transaction input
|
|
340
340
|
* @param utxo - The UTXO to add as input
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
addInput(utxo: Utxo): void;
|
|
343
343
|
/**
|
|
344
344
|
* Add a standard output to the transaction
|
|
345
345
|
* @param address - Recipient address
|
|
346
346
|
* @param amount - Amount in satoshis
|
|
347
347
|
*/
|
|
348
|
-
|
|
348
|
+
addOutput(address: string, amount: bigint): void;
|
|
349
349
|
/**
|
|
350
350
|
* Add an OP_RETURN script output (for Runestone)
|
|
351
351
|
* @param script - The script buffer to include
|
|
352
352
|
*/
|
|
353
|
-
|
|
353
|
+
addScriptOutput(script: Uint8Array): void;
|
|
354
354
|
/**
|
|
355
355
|
* Select UTXOs containing specific runes for the transaction
|
|
356
356
|
* @param runeUtxos - Available rune UTXOs
|
package/dist/react.d.ts
CHANGED
|
@@ -367,18 +367,18 @@ declare class Transaction {
|
|
|
367
367
|
* Add a UTXO as transaction input
|
|
368
368
|
* @param utxo - The UTXO to add as input
|
|
369
369
|
*/
|
|
370
|
-
|
|
370
|
+
addInput(utxo: Utxo): void;
|
|
371
371
|
/**
|
|
372
372
|
* Add a standard output to the transaction
|
|
373
373
|
* @param address - Recipient address
|
|
374
374
|
* @param amount - Amount in satoshis
|
|
375
375
|
*/
|
|
376
|
-
|
|
376
|
+
addOutput(address: string, amount: bigint): void;
|
|
377
377
|
/**
|
|
378
378
|
* Add an OP_RETURN script output (for Runestone)
|
|
379
379
|
* @param script - The script buffer to include
|
|
380
380
|
*/
|
|
381
|
-
|
|
381
|
+
addScriptOutput(script: Uint8Array): void;
|
|
382
382
|
/**
|
|
383
383
|
* Select UTXOs containing specific runes for the transaction
|
|
384
384
|
* @param runeUtxos - Available rune UTXOs
|