BlockchainParser
Bitcoin Blockchain parser. Work in progress, still not suitable for usage.
Installation
If available in Hex, the package can be installed as:
-
Add
blockchain_parserto your list of dependencies inmix.exs:
```elixir
def deps do
[{:blockchain_parser, "~> 0.1.0"}]
end
```-
Ensure
blockchain_parseris started before your application:
```elixir
def application do
[applications: [:blockchain_parser]]
end
```