Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Doc Ritezel 602b0de198 Configure Heroku settings 7 years ago
assets Contributor sees the POA Network logo on the homepage 7 years ago
config Configure Heroku settings 7 years ago
lib Configure Heroku settings 7 years ago
priv Create Phoenix app 7 years ago
test Contributor sees the POA Network logo on the homepage 7 years ago
.gitignore Create Phoenix app 7 years ago
.pairs Add pairs 7 years ago
Procfile Configure Heroku settings 7 years ago
README.md Configure Heroku settings 7 years ago
elixir_buildpack.config Configure Heroku settings 7 years ago
mix.exs Add Wallaby for integration testing. 7 years ago
mix.lock Configure Heroku settings 7 years ago

README.md

POA Explorer CircleCI

This is a tool for inspecting and analyzing the POA Network blockchain.

Machine Requirements

  • Elixir 1.3
  • Postgres 10.0

Required Accounts

  • Heroku for deployment
  • Github for code storage

Setup Instructions

Development

To get POA Explorer up and running locally:

  • Install dependencies with $ mix deps.get
  • Create and migrate your database with $ mix ecto.create && mix ecto.migrate
  • Install Node.js dependencies with $ cd assets && npm install && cd ..
  • Start Phoenix with $ mix phx.server

Now you can visit localhost:4000 from your browser.

You can also run IEx (Interactive Elixir): $ iex -S mix phx.server

Testing

To run the test suite: $ mix test

Contributing

  1. Fork it ( https://github.com/poanetwork/explorer/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Write tests that cover your work
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create a new Pull Request