Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/exonum/blockchain-explorer
An explorer for Exonum blockchains
https://github.com/exonum/blockchain-explorer
blockchain-explorer exonum
Last synced: about 1 month ago
JSON representation
An explorer for Exonum blockchains
- Host: GitHub
- URL: https://github.com/exonum/blockchain-explorer
- Owner: exonum
- License: apache-2.0
- Created: 2017-12-16T09:20:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-09T17:23:21.000Z (10 months ago)
- Last Synced: 2024-04-14T13:43:33.198Z (8 months ago)
- Topics: blockchain-explorer, exonum
- Language: Vue
- Size: 911 KB
- Stars: 13
- Watchers: 9
- Forks: 16
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Exonum Blockchain Explorer
An application for monitoring blocks and transactions in Exonum blockchain.
![Exonum Blockchain Explorer](Screenshot.png)
## Use with different Exonum core versions
Explorer compatibility with Exonum core:
| Core version | Tag |
|---|---|
| `1.0.*` | `v0.11` |
| `0.10.*` | `v0.10` |
| `0.9.*` | `v0.9` |
| `0.8.*` | `v0.8` |
| `0.7.*` | `v0.6` |
| `0.6.*` | `v0.6` |
| `0.5.*` | `v0.1` |
| `0.4.0` | `v0.1` |
| `0.3.0` | `v0.1` |
| `0.2.0` | `v0.1` |
| `0.1.*` | `v0.1` |## Setup
First, install dependencies:
```sh
npm install
```## Starting as a Node.JS server
Build sources:
```sh
npm run build
```Run app:
```sh
npm start -- --port=3000 --public-api-root=http://127.0.0.1:8200 --private-api-root=http://127.0.0.1:8201
```- `--port` is a port for Node.JS app.
- `--public-api-root` is a root URL of Exonum node public API.
- `--private-api-root` is a root URL of Exonum node private API.## Build a static html pages
CORS headers must be setted up in Exonum node configuration to use the application as static html pages.
See `allow_origin` parameter in [Exonum docs](https://exonum.com/doc/architecture/configuration/#api).Run [index.html](index.html).
## LICENSE
Exonum Blockchain Explorer is licensed under the Apache License (Version 2.0).
See [LICENSE](https://github.com/exonum/blockchain-explorer/blob/master/LICENSE) for details.