https://github.com/xrplf/xrpl-technical-explorer
Technical (JSON viewer) explorer for XRPL devs. Click on account / hash / ... to zoom in.
https://github.com/xrplf/xrpl-technical-explorer
blockchain explorer xrp xrpl
Last synced: 10 days ago
JSON representation
Technical (JSON viewer) explorer for XRPL devs. Click on account / hash / ... to zoom in.
- Host: GitHub
- URL: https://github.com/xrplf/xrpl-technical-explorer
- Owner: XRPLF
- License: mit
- Created: 2021-07-06T23:49:46.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T21:52:16.000Z (about 2 years ago)
- Last Synced: 2025-01-04T06:30:30.684Z (over 1 year ago)
- Topics: blockchain, explorer, xrp, xrpl
- Language: Vue
- Homepage: https://explorer.xrplf.org
- Size: 817 KB
- Stars: 14
- Watchers: 11
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XRP Ledger Technical Explorer [](https://app.netlify.com/sites/xrpl-technical-explorer/deploys)
A technical (geeky) JSON viewing explorer for the XRP Ledger.
## BETA!
Early beta of a new (technical) tx / ledger / object / hash explorer I'm working on, for XRPLF.
- Mainnet: https://explorer.xrplf.org
- Testnet: https://explorer-testnet.xrplf.org
- Xahau Mainnet: https://explorer.xahau.network
- Xahau Testnet: https://explorer.xahau-test.net
It's easy to roll your own as the wss endpoint is an env. var.
## Custom nodes
You can connect to a custom node by appending a websocket location without the two slashes after the protocol to the URL, e.g.:
`https://explorer.my-domain.com/wss:xahau-test.net:444/`
Lots to do, but the beginning is here. You can view (JSON, technical (!) explorer) ledgers, transactions, meta, etc. and click through, on ledger numbers, hashes, transaction hashes, accounts, etc.
## Project setup
```
npm install
```
Configure alternative WebSocket endpoint with the env. variable:
```
VUE_APP_WSS_ENDPOINT
```
E.g. `VUE_APP_WSS_ENDPOINT=wss://hooks-testnet-v3.xrpl-labs.com`
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Lints and fixes files
```
npm run lint
```