Bitcoin Block Data
Various metrics for each block in the Bitcoin blockchain.
@kaggle.callumrafter_bitcoin_block_data
Various metrics for each block in the Bitcoin blockchain.
@kaggle.callumrafter_bitcoin_block_data
This data was sourced from a personal Bitcoin node.
You can see the script used for data extraction on Github.
You can see example data visualizations in Displaying Bitcoin Block Data.
For more information about Bitcoin see bitcoin.org.
To verify data integrity, you can see how to create your own Bitcoin node at bitcoin.org/en/full-node.
CREATE TABLE blockdata (
"block_height" BIGINT,
"block_reward" DOUBLE,
"coinbase" DOUBLE,
"time" BIGINT,
"median_time" BIGINT,
"difficulty" DOUBLE,
"chainwork" VARCHAR,
"ntx" BIGINT,
"stripped_size" BIGINT,
"size" BIGINT,
"weight" BIGINT
);Anyone who has the link will be able to view this.