├── .gitignore ├── MIT-LICENSE ├── README.markdown ├── rebar.config └── src ├── blockchain.app.src └── blockchain.erl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choptastic/erlang-blockchain/HEAD/.gitignore -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choptastic/erlang-blockchain/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choptastic/erlang-blockchain/HEAD/README.markdown -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choptastic/erlang-blockchain/HEAD/rebar.config -------------------------------------------------------------------------------- /src/blockchain.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choptastic/erlang-blockchain/HEAD/src/blockchain.app.src -------------------------------------------------------------------------------- /src/blockchain.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choptastic/erlang-blockchain/HEAD/src/blockchain.erl --------------------------------------------------------------------------------