https://github.com/axentro/explorer
SushiChain Blockchain Explorer
https://github.com/axentro/explorer
Last synced: about 1 month ago
JSON representation
SushiChain Blockchain Explorer
- Host: GitHub
- URL: https://github.com/axentro/explorer
- Owner: Axentro
- License: mit
- Created: 2019-06-21T08:23:12.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-12-29T05:58:10.000Z (over 5 years ago)
- Last Synced: 2025-02-27T21:51:07.051Z (over 1 year ago)
- Language: Crystal
- Homepage:
- Size: 319 KB
- Stars: 0
- Watchers: 9
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Axentro Blockchain Explorer
Axentro Explorer is an open source utility to browse activity on the Blockchain.
## Development
### Configure the database
r.db('rethinkdb').table('users').insert({id: 'explorer_testnet', password: 'explorer_testnet'});
r.dbCreate('explorer_testnet');
r.db('explorer_testnet').grant('explorer_testnet', {read: true, write: true, config: true});
### Build the mint webapp
cd src/explorer/web/static
mint format && mint build
cd ./../../../..
### Run the explorer
DEBUG=1 crystal run src/explorer.cr -- -n http://testnet.axentro.io:3000
### Compile the binary
shards build --production
Start the compiled web application (static files are in binary)
./bin/explorer -n http://testnet.axentro.io:3000
### RethinkDB docker doc
[Link to RethinkDB docker documentation](https://docs.docker.com/samples/library/rethinkdb/)
docker run -p 8080:8080 -p 28015:28015 --name rethinkdb -v "$PWD:/data" -d rethinkdb
# Connecting to the web admin interface on the same host
xdg-open http://localhost:8080
## Contributing
1. Fork it ()
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request
## Contributors
* [Christian Kakesa](https://github.com/your-github-user) - creator and maintainer