blob: 87432e85d407c88599743dcc58a0c0b308dc0ed4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Monzero block explorer
A dependency-free PHP and JavaScript explorer for the Monzero restricted RPC.
It is read-only and never handles wallet seeds, private keys, or passwords.
## Run locally
Requirement: PHP 8. The API uses cURL when available and otherwise falls back
to PHP's native HTTP streams.
```bash
cd explorer
php -S 127.0.0.1:8081
```
Open `http://127.0.0.1:8081`.
The RPC URL is defined by `NODE_RPC` at the top of `api.php`. It currently uses
the public node at `http://node.monzero.org:6175`.
## Later deployment
Upload the directory to a PHP-enabled web root or subdomain. For production,
place it at a dedicated hostname such as `explorer.monzero.org`, enable HTTPS,
and retain a restricted node RPC. The PHP endpoint uses an action allowlist and
does not expose a generic RPC proxy.
|