https://github.com/infertux/trappisto
Interactive Blockchain Explorer for Decred
https://github.com/infertux/trappisto
blockchain blockexplorer dcr decred elm-lang
Last synced: 2 months ago
JSON representation
Interactive Blockchain Explorer for Decred
- Host: GitHub
- URL: https://github.com/infertux/trappisto
- Owner: infertux
- License: other
- Created: 2017-12-12T06:27:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-06T18:57:28.000Z (almost 7 years ago)
- Last Synced: 2025-02-12T10:55:57.817Z (4 months ago)
- Topics: blockchain, blockexplorer, dcr, decred, elm-lang
- Language: Elm
- Homepage: https://decred.org/
- Size: 295 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Trappisto
[](https://gitlab.com/infertux/trappisto/commits/master)
Trappisto is a block explorer designed primarily to explore the
[Decred](https://www.decred.org) blockchain. It aims to:- have a simple interface
- be mobile-friendly
- always display the latest data
(the page is refreshed automatically thanks to
web sockets)
- be fully usable with keyboard shortcuts only (no mouse required)
(_work in progress_)
- not drown the user with too much technical information
(a handy link to [dcrdata.org](https://explorer.dcrdata.org)
is available if you need more details)## Support for other coins than DCR
Trappisto has experimental support for BTC and BCH. Both coins provide a
similar JSON RPC API with the exception of the `searchrawtransactions` command.
This means it is not possible to browse addresses as we have no way to retrieve
transactions for a particular address. However it is possible to explore blocks
and transactions.To configure Trappisto for a different coin, you will need to adjust `file.index: [ 'index-dcr.html' ]` in _h2o.conf_.
## What does Trappisto mean?
[TRAPPIST-1](http://www.trappist.one/#about) is a planetary system located 12
parsecs away from the Solar system. But before we get to explore another
planetary system, we can explore our very own blockchain in the Solar system
and since the number zero is preceding one:
`TRAPPIST-1 -> TRAPPIST-0 -> TRAPPIST0 -> Trappist0 -> Trappisto`.
Yeah I know.## Development
Dependencies:
```
npm i -g elm
npm i -g elm-test
npm i -g uglify-js
```Build:
```
make
```Test:
```
make test
```Run:
```
make dcrd
make h2o
```## License
AGPLv3+