mempool: fixes

This commit is contained in:
nym21
2026-05-08 11:51:44 +02:00
parent dd88996f7f
commit 25b2268563
11 changed files with 125 additions and 69 deletions
+1 -5
View File
@@ -1318,9 +1318,6 @@ class RbfTx(TypedDict):
rbf: BIP-125 signaling: at least one input has sequence < 0xffffffff-1.
fullRbf: Only populated on the root `tx` of an RBF response. `true` iff
this tx displaced at least one non-signaling predecessor.
mined: `Some(true)` iff the tx is currently confirmed in the indexed
chain. Absent on serialization when the tx is still pending or
has been evicted without confirming.
"""
txid: Txid
fee: Sats
@@ -1330,7 +1327,6 @@ has been evicted without confirming.
time: Timestamp
rbf: bool
fullRbf: Optional[bool]
mined: Optional[bool]
class ReplacementNode(TypedDict):
"""
@@ -6653,7 +6649,7 @@ class SeriesTree:
class BrkClient(BrkClientBase):
"""Main BRK client with series tree and API methods."""
VERSION = "v0.3.0-beta.7"
VERSION = "v0.3.0-beta.8"
INDEXES = [
"minute10",
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "brk-client"
version = "0.3.0-beta.7"
version = "0.3.0-beta.8"
description = "Bitcoin on-chain analytics client — thousands of metrics, block explorer, and address index"
readme = "README.md"
requires-python = ">=3.9"