bitcoingraph
bitcoingraph copied to clipboard
A Python library for exploring the Bitcoin transaction graph.
I will soon try this tool but I would like to understand in advance three things: 1. What are the requirements in terms of CPU, Disk and RAM, to run...
As i understand the input address file stores the [txId,input_address] combo for all transactions with multiple inputs. In the entities.py file, the function calculate_input_addresses() uses a certain variable called matching_address...
The part from "Then, start the Neo4J shell...:" up to and including "$NEO4J_HOME/bin/neo4j start" is outdated. The correct procedure with neo4j-4.4 and later is If you did not run the...
For those who have never used neo4j before, one or several examples of neo4j browser commands would be extremely helpful. For example how to query chains of payments or wallet...
The correct command since at least neo4j-4.4 is ``` neo4j-admin database import full \ --nodes=Block=blocks_header.csv,blocks.csv \ --nodes=Transaction=transactions_header.csv,transactions.csv \ --nodes=Output=outputs_header.csv,outputs.csv \ --nodes=Address=addresses_header.csv,addresses.csv \ --nodes=Entity=entities.csv \ --relationships=CONTAINS=rel_block_tx_header.csv,rel_block_tx.csv \ --relationships=OUTPUT=rel_tx_output_header.csv,rel_tx_output.csv \ --relationships=INPUT=rel_input_header.csv,rel_input.csv \...
On line 39 of bcgraph-export, host is hard-coded. Making it a variable (with localhost as default) would help both speed and required disk space by using a non-local bitcoind. And...