Layout
The homepage shows four stat cards above a live Latest Transactions feed:
| Card | What it shows |
|---|---|
Network (GH/s) | Hashrate (always - on a pure PoS chain) |
Difficulty | Two lines: POW: x.xxx and POS: x.xxx |
Coin Supply (MARYJ) | Fixed at 1,000,000,000 |
BTC Price | Currently 0.00000000 BTC (no market feed wired) |
The footer shows current block height and peer count: 2,186 blocks · 3 connections at the time of writing.
Searching
-
Click into the search box
Placeholder text reads exactly: "You may enter a block height, block hash, tx hash or address."
-
Paste any of the following
- A block height — integer, e.g.
2186 - A block hash — 64 hex chars, e.g.
000001b8e7e172fd... - A transaction id — 64 hex chars, copied from your wallet
- A MaryJaneCoin address — base58 starting with
M
- A block height — integer, e.g.
-
Hit
SearchYou'll be redirected to the matching detail page (
/block/...,/tx/..., or/address/...).
Pages you'll use
| URL | What it shows |
|---|---|
/ | Stat cards + latest transactions |
/movement | Large-transaction feed (whale watch) |
/network | Peers seen in the last 24h, with country / protocol / sub-version |
/richlist | Top 100 holders, plus wealth-distribution buckets |
/info | Self-documenting API reference |
/block/<hash> | Block detail: height, difficulty, confirmations, size, bits, nonce, timestamp, transactions list |
/tx/<txid> | Transaction detail: vin, vout, total, blockindex, blockhash, confirmations |
/address/<addr> | Address detail: sent, received, balance, last transactions |
/qr/<addr> | QR code generator for any address |
Common workflows
Check a payment you sent or received
- Copy the txid from your wallet's history
- Visit
https://explorer.maryjanecoin.net/tx/<txid> - Look at
voutfor the output amounts and recipient addresses confirmations≥ 6 = safely settled. The privacy chain matures coinbase at 10 blocks specifically.
Look up an address balance
-
Web view
Visit
https://explorer.maryjanecoin.net/address/<M-address>for sent / received / balance / tx history. -
One-line API call
$ curl https://explorer.maryjanecoin.net/ext/getbalance/MNCfNkGJuku1DLtVHeimVVLCtfk2YWKq8c 898437411.44 -
Full activity dump
$ curl https://explorer.maryjanecoin.net/ext/getaddress/MNCfNkGJuku1DLtVHeimVVLCtfk2YWKq8c { "address": "MNCfNkGJuku1DLtVHeimVVLCtfk2YWKq8c", "sent": 0, "received": 898437411.44, "balance": 898437411.44, "last_txs": [...] }
Pull live network stats
$ curl https://explorer.maryjanecoin.net/api/getblockcount
2186
$ curl https://explorer.maryjanecoin.net/api/getdifficulty
{"proof-of-work":0.00139217,"proof-of-stake":88.67924329,"search-interval":1}
$ curl https://explorer.maryjanecoin.net/api/getconnectioncount
3
$ curl https://explorer.maryjanecoin.net/ext/summary
[{"difficulty":88.67,"supply":1000000000,"connections":3,"blockcount":2186,...}]
Check privacy activation status
$ curl https://explorer.maryjanecoin.net/api/getinfo | jq .
{
"version": "v1.0.0",
"protocolversion": 100001,
"blocks": 2186,
"moneysupply": "1000000000.00000000",
"transparent_balance": "900000000",
"shielded_balance": 0,
"stealth_mandatory": true,
"ring_mixing_mandatory": true,
"two_pool_active": true,
"automix_enabled": true
}
The boolean privacy flags reflect which consensus layers are currently enforced.
Full API endpoint reference
All endpoints return JSON unless noted. The explorer is Iquidus v1.7.4 — these match the upstream Iquidus API.
| Endpoint | Returns |
|---|---|
/api/getblockcount | Current chain height (number) |
/api/getdifficulty | PoW + PoS difficulty |
/api/getconnectioncount | Peer count |
/api/getinfo | Full node state including privacy flags |
/api/getmininginfo | blocks, difficulty, netstakeweight, stakeweight |
/api/getblockhash?index=N | Block hash for height N |
/api/getblock?hash=H | Full block JSON |
/api/getrawtransaction?txid=T&decrypt=1 | Decoded transaction |
/ext/summary | Dashboard JSON (all stat-card data in one shot) |
/ext/getmoneysupply | Plain-text supply |
/ext/getdistribution | Wealth distribution buckets |
/ext/getbalance/<addr> | Plain-text balance |
/ext/getaddress/<addr> | Address activity JSON |
/ext/gettx/<txid> | Transaction detail JSON |
/ext/getlasttxsajax/<min> | Recent tx feed (DataTables format) |
/api/getmoneysupply and /api/getbasicstats are restricted by Iquidus config — use /ext/ equivalents instead. /api/getnetworkhashps returns "Method not found" because pure-PoS chains have no hashrate.
Build your own dashboard
The /ext/summary endpoint gives you everything you need for a one-line health probe:
$ while true; do
clear
curl -s https://explorer.maryjanecoin.net/ext/summary | jq -r '.[0] | "Height: \(.blockcount) | Diff: \(.difficulty) | Peers: \(.connections) | Supply: \(.supply)"'
sleep 30
done
Height: 2186 | Diff: 88.67 | Peers: 3 | Supply: 1000000000