https://github.com/byteball/obyte-explorer
View the DAG and all public transactions https://explorer.obyte.org
https://github.com/byteball/obyte-explorer
cryptocurrency dag directed-acyclic-graph distributed-ledger-technology dlt
Last synced: about 1 month ago
JSON representation
View the DAG and all public transactions https://explorer.obyte.org
- Host: GitHub
- URL: https://github.com/byteball/obyte-explorer
- Owner: byteball
- License: mit
- Created: 2016-12-20T18:46:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-17T16:57:08.000Z (2 months ago)
- Last Synced: 2025-04-14T14:17:34.815Z (about 1 month ago)
- Topics: cryptocurrency, dag, directed-acyclic-graph, distributed-ledger-technology, dlt
- Language: JavaScript
- Homepage: https://explorer.obyte.org
- Size: 744 KB
- Stars: 6
- Watchers: 3
- Forks: 20
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Obyte explorer backend
Backend for https://github.com/byteball/obyte-explorer-frontend#### Installation
Install node.js 10+, clone the repository, then
1) `yarn`
2) `node migration.js`#### Run
`node explorer.js`
### Nginx config
```text
server {
listen 80;
server_name localhost;location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://127.0.0.1:4000;
}location ~ \.(js|ico|css|png) {
root /path/to/dist;
}
}
```By default, the explorer will be available at http://localhost:4000