@omnity/ree-client-ts-sdk 0.3.8 → 0.4.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 +4 -2
- package/dist/ree-sdk.cjs.js +39 -39
- package/dist/ree-sdk.es.js +2595 -2569
- package/package.json +1 -2
package/dist/index.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export declare type InputCoin = {
|
|
|
71
71
|
};
|
|
72
72
|
|
|
73
73
|
export declare type Intention = {
|
|
74
|
+
exchangeId?: string;
|
|
74
75
|
inputCoins: InputCoin[];
|
|
75
76
|
outputCoins: OutputCoin[];
|
|
76
77
|
action: string;
|
|
@@ -230,10 +231,10 @@ export declare class ReeClient {
|
|
|
230
231
|
*/
|
|
231
232
|
private getPendingBtcUtxos;
|
|
232
233
|
/**
|
|
233
|
-
* Get pending (zero-confirmation) Rune UTXOs for an address
|
|
234
|
+
* Get pending (zero-confirmation) Rune UTXOs for an ordinals address
|
|
234
235
|
* These are UTXOs from Ree protocol transactions that have been broadcast but not yet confirmed
|
|
235
236
|
* Filters to include only UTXOs that contain runes
|
|
236
|
-
* @param address - The
|
|
237
|
+
* @param address - The ordinals address to check for pending rune UTXOs
|
|
237
238
|
* @returns Array of pending UTXOs containing runes from Ree transactions
|
|
238
239
|
*/
|
|
239
240
|
private getPendingRuneUtxos;
|
|
@@ -496,6 +497,7 @@ export declare class Transaction {
|
|
|
496
497
|
build(): Promise<{
|
|
497
498
|
psbt: bitcoin.Psbt;
|
|
498
499
|
txid: string;
|
|
500
|
+
fee: bigint;
|
|
499
501
|
}>;
|
|
500
502
|
/**
|
|
501
503
|
* Submit the signed transaction to the orchestrator for execution
|