You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Timestamp when it was cached. Set automatically when added to the persistent state.
343
339
*/
344
340
timestamp?: Date|undefined;
345
-
346
341
/**
347
342
* Individual components of the balance for the current address.
348
343
* Must contain only _unspent_ transactions and the total amount MUST equal the main `amount` field of the `Balance` object.
@@ -357,9 +352,9 @@ export interface Balance {
357
352
* Bitcoin UTXO details
358
353
*/
359
354
exportinterfaceUtxo{
355
+
amount: string;
360
356
txid: string;
361
357
vout: number;
362
-
amount: string;
363
358
}
364
359
365
360
/**
@@ -390,14 +385,12 @@ export interface Cache {
390
385
* @param ttl_seconds (optionally) a Time To Live for that value. Note that the cache purges the data only occasionally and data may live longer in the cache
0 commit comments