bitcoinwatcher 2.9__tar.gz → 2.11b1__tar.gz

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 (37) hide show
  1. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/PKG-INFO +2 -2
  2. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_extractors/bitcoin_rpc.py +6 -2
  3. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoinwatcher.egg-info/PKG-INFO +2 -2
  4. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/pyproject.toml +1 -1
  5. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/LICENSE +0 -0
  6. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/README.md +0 -0
  7. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/__init__.py +0 -0
  8. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/address_listener/__init__.py +0 -0
  9. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/address_listener/address_listener.py +4 -4
  10. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/address_listener/simple_address_listener.py +0 -0
  11. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/models/__init__.py +0 -0
  12. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/models/address_tx_data.py +0 -0
  13. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tests/__init__.py +0 -0
  14. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tests/data/__init__.py +0 -0
  15. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tests/data/transactions.py +0 -0
  16. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tests/test_address_listener.py +0 -0
  17. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tests/test_bitcoin_rpc.py +0 -0
  18. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tests/test_bitcoin_utils.py +0 -0
  19. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_extractors/__init__.py +0 -0
  20. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_extractors/abstract_extractor.py +0 -0
  21. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_extractors/default.py +0 -0
  22. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_extractors/mempool.py +0 -0
  23. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_listener/__init__.py +0 -0
  24. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_listener/abstract_tx_listener.py +0 -0
  25. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/tx_listener/zmq_listener.py +0 -0
  26. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/utils/__init__.py +0 -0
  27. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/utils/benchmark.py +0 -0
  28. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/utils/bitcoin_rpc.py +0 -0
  29. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/utils/bitcoin_utils.py +0 -0
  30. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/utils/constants.py +0 -0
  31. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/utils/context_aware_logging.py +0 -0
  32. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoin/utils/inscription_utils.py +0 -0
  33. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoinwatcher.egg-info/SOURCES.txt +0 -0
  34. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoinwatcher.egg-info/dependency_links.txt +0 -0
  35. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoinwatcher.egg-info/requires.txt +0 -0
  36. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/bitcoinwatcher.egg-info/top_level.txt +0 -0
  37. {bitcoinwatcher-2.9 → bitcoinwatcher-2.11b1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: bitcoinwatcher
3
- Version: 2.9
3
+ Version: 2.11b1
4
4
  Summary: bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state.
5
5
  Author: twosatsmaxi
6
6
  License: Apache License
@@ -18,11 +18,15 @@ class BitcoinRPCAddressDataExtractor(AbstractTxAddressDataExtractor):
18
18
  self.bitcoinrpc = BitcoinRPC()
19
19
 
20
20
  def fetch_all_inputs(self, inputs):
21
- rpc_calls = [["getrawtransaction", input.prev_txid.hex(), True] for input in inputs]
21
+ unique_txids = list(set([input.prev_txid.hex() for input in inputs]))
22
+ rpc_calls = [["getrawtransaction", tx_id, True] for tx_id in unique_txids]
22
23
  data = self.bitcoinrpc.rpc_connection.batch_(rpc_calls)
24
+ tx_id_to_data = {tx_id: current_tx for tx_id, current_tx in zip(unique_txids, data)}
23
25
  list_of_vouts = []
24
26
  for input in inputs:
25
- vout = data.pop(0)["vout"][input.output_n_int]
27
+ tx_id = input.prev_txid.hex()
28
+ current_tx = tx_id_to_data[tx_id]
29
+ vout = current_tx["vout"][input.output_n_int]
26
30
  list_of_vouts.append(vout)
27
31
  return list_of_vouts
28
32
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: bitcoinwatcher
3
- Version: 2.9
3
+ Version: 2.11b1
4
4
  Summary: bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state.
5
5
  Author: twosatsmaxi
6
6
  License: Apache License
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "bitcoinwatcher"
8
- version = "2.9"
8
+ version = "2.11b1"
9
9
  description = "bitcoinwatcher is a Python library that implements a ZMQ subscriber and provides abstractions to build custom address watchers. This library is designed to make it easy for developers to monitor Bitcoin addresses and react to changes in their state."
10
10
  readme = "README.md"
11
11
  authors = [{name = "twosatsmaxi"}]
File without changes
File without changes
@@ -39,10 +39,6 @@ class AbstractAddressListener(AbstractTxListener, ABC):
39
39
  return
40
40
  logger.debug(f"Extracting default tx data")
41
41
  address_tx_data = self.default_tx_extractor.extract(tx)
42
- # filter the address we are interested in
43
- addresses_for_events = self.filter_address_tx_data(address_tx_data)
44
- if len(addresses_for_events) == 0:
45
- return
46
42
  # get the address tx data from mempool for full details if any address matches
47
43
  try:
48
44
  logger.info(f"Extracting rpc tx data")
@@ -50,6 +46,10 @@ class AbstractAddressListener(AbstractTxListener, ABC):
50
46
  except Exception as e:
51
47
  logger.error(f"Error in getting rpc tx data, taking defaults", exc_info=True)
52
48
  address_tx_data = address_tx_data
49
+ # filter the address we are interested in
50
+ addresses_for_events = self.filter_address_tx_data(address_tx_data)
51
+ if len(addresses_for_events) == 0:
52
+ return
53
53
 
54
54
  for address in addresses_for_events:
55
55
  self.consume(tx_hex=tx.raw_hex(), subscribed_address=address, address_tx_data=address_tx_data)
File without changes