Simple Blockchain written in Elixir. The chain is placed on a GenServer.
iex -S mix
# Create a new Blockchain
iex> {:ok, pid} = Blockchain.Server.start_link # Insert a new block with data
iex> Blockchain.Server.add(pid, "MESSAGE")# Check the Blockchain
iex> Blockchain.Server.view(pid) mix test --trace