PlutoHash Tutorials

Empty Blocks in the Bitcoin Blockchain?

Empty Blocks in the Bitcoin Blockchain? In [1]: # First we import blocksci import blocksci # We import Counter from collections, which we will use to count items in the lists we’ll create from collections import Counter # we instantiate the chain object chain = blocksci.Blockchain(“/BlockSci/config_file”) # we also import import pandas as pd import matplotlib.pyplot …

Empty Blocks in the Bitcoin Blockchain? Read More »

Bitcoin Blockchain specific block data with Jupyter Notebook and Python

Hallo, for this tutorial we’ll see how to display information about a single block with PlutoHash Jupyter Notebook. First thing to do is to import BlockSci module. #import BlockSci moduleimport blocksci The second thing we need to do is to instantiate the chain object: # instantiate the chain objectchain = blocksci.Blockchain(“/BlockSci/config_file”) Now we select the …

Bitcoin Blockchain specific block data with Jupyter Notebook and Python Read More »

Using BlockSci with Jupyter Notebook

BlockSci was designed and built as an open-source software platform for analyzing blockchains. The use cases in blockchain analysis are many, useful applications can be made in both research and business fields. However, BlockSci requires a local setup, which means having to parse the blockchain you want to analyze, which takes time and resources. The …

Using BlockSci with Jupyter Notebook Read More »