Skip to content

Instantly share code, notes, and snippets.

View hkalodner's full-sized avatar

Harry Kalodner hkalodner

View GitHub Profile

Keybase proof

I hereby claim:

  • I am hkalodner on github.
  • I am hkalodner (https://keybase.io/hkalodner) on keybase.
  • I have a public key ASCFV0jg_8_8zz6Mf4--ZIh9ukNTKdmfK1utffFvQo60Tgo

To claim this, I am signing this object:

@hkalodner
hkalodner / utxo_age.py
Last active February 1, 2024 15:33
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