@omnity/ree-client-ts-sdk 0.3.6 → 0.3.8
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 +16 -0
- package/dist/ree-sdk.cjs.js +40 -40
- package/dist/ree-sdk.es.js +487 -434
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -221,6 +221,22 @@ export declare class ReeClient {
|
|
|
221
221
|
* @returns Filtered array of UTXOs excluding spent/used ones
|
|
222
222
|
*/
|
|
223
223
|
private filterSpentUtxos;
|
|
224
|
+
/**
|
|
225
|
+
* Get pending (zero-confirmation) Bitcoin UTXOs for a payment address
|
|
226
|
+
* These are UTXOs from Ree protocol transactions that have been broadcast but not yet confirmed
|
|
227
|
+
* Filters out UTXOs that contain runes to get pure Bitcoin UTXOs only
|
|
228
|
+
* @param paymentAddress - The Bitcoin payment address to check for pending UTXOs
|
|
229
|
+
* @returns Array of pending Bitcoin UTXOs without runes from Ree transactions
|
|
230
|
+
*/
|
|
231
|
+
private getPendingBtcUtxos;
|
|
232
|
+
/**
|
|
233
|
+
* Get pending (zero-confirmation) Rune UTXOs for an address
|
|
234
|
+
* These are UTXOs from Ree protocol transactions that have been broadcast but not yet confirmed
|
|
235
|
+
* Filters to include only UTXOs that contain runes
|
|
236
|
+
* @param address - The Bitcoin address to check for pending rune UTXOs
|
|
237
|
+
* @returns Array of pending UTXOs containing runes from Ree transactions
|
|
238
|
+
*/
|
|
239
|
+
private getPendingRuneUtxos;
|
|
224
240
|
/**
|
|
225
241
|
* Get all Bitcoin UTXOs for the payment address
|
|
226
242
|
* Handles pagination automatically to fetch all available UTXOs
|