brk-client 0.3.0-beta.8 → 0.3.0-beta.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.
Files changed (2) hide show
  1. package/index.js +1 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -930,9 +930,6 @@ ancestors and no descendants (matches mempool.space).
930
930
  * @property {boolean} rbf - BIP-125 signaling: at least one input has sequence < 0xffffffff-1.
931
931
  * @property {?boolean=} fullRbf - Only populated on the root `tx` of an RBF response. `true` iff
932
932
  this tx displaced at least one non-signaling predecessor.
933
- * @property {?boolean=} mined - `Some(true)` iff the tx is currently confirmed in the indexed
934
- chain. Absent on serialization when the tx is still pending or
935
- has been evicted without confirming.
936
933
  */
937
934
  /**
938
935
  * Recommended fee rates in sat/vB
@@ -7502,7 +7499,7 @@ function createTransferPattern(client, acc) {
7502
7499
  * @extends BrkClientBase
7503
7500
  */
7504
7501
  class BrkClient extends BrkClientBase {
7505
- VERSION = "v0.3.0-beta.8";
7502
+ VERSION = "v0.3.0-beta.9";
7506
7503
 
7507
7504
  INDEXES = /** @type {const} */ ([
7508
7505
  "minute10",
package/package.json CHANGED
@@ -40,5 +40,5 @@
40
40
  "url": "git+https://github.com/bitcoinresearchkit/brk.git"
41
41
  },
42
42
  "type": "module",
43
- "version": "0.3.0-beta.8"
43
+ "version": "0.3.0-beta.9"
44
44
  }