Skip to content

Instantly share code, notes, and snippets.

@chinitadelrey
chinitadelrey / utxo_age.py
Created July 14, 2018 18:06 — forked from hkalodner/utxo_age.py
BlockSci UTXO age distribution
import blocksci
import pandas as pd
import numpy as np
chain = blocksci.Blockchain("/blocksci/bitcoin")
block_day = 6 * 24
block_year = 365 * block_day
block_week = 7 * block_day
block_month = block_year // 12