🔍Block Explorer

Search transactions, look up address balances, inspect blocks, and query the live MaryJaneCoin chain via a public REST API. Powered by Iquidus Explorer at explorer.maryjanecoin.net.

Layout

The homepage shows four stat cards above a live Latest Transactions feed:

CardWhat it shows
Network (GH/s)Hashrate (always - on a pure PoS chain)
DifficultyTwo lines: POW: x.xxx and POS: x.xxx
Coin Supply (MARYJ)Fixed at 1,000,000,000
BTC PriceCurrently 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

  1. Click into the search box

    Placeholder text reads exactly: "You may enter a block height, block hash, tx hash or address."

  2. 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
  3. Hit Search

    You'll be redirected to the matching detail page (/block/..., /tx/..., or /address/...).

Pages you'll use

URLWhat it shows
/Stat cards + latest transactions
/movementLarge-transaction feed (whale watch)
/networkPeers seen in the last 24h, with country / protocol / sub-version
/richlistTop 100 holders, plus wealth-distribution buckets
/infoSelf-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

  1. Copy the txid from your wallet's history
  2. Visit https://explorer.maryjanecoin.net/tx/<txid>
  3. Look at vout for the output amounts and recipient addresses
  4. confirmations ≥ 6 = safely settled. The privacy chain matures coinbase at 10 blocks specifically.

Look up an address balance

  1. Web view

    Visit https://explorer.maryjanecoin.net/address/<M-address> for sent / received / balance / tx history.

  2. One-line API call

    $ curl https://explorer.maryjanecoin.net/ext/getbalance/MNCfNkGJuku1DLtVHeimVVLCtfk2YWKq8c
    898437411.44
  3. 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.

EndpointReturns
/api/getblockcountCurrent chain height (number)
/api/getdifficultyPoW + PoS difficulty
/api/getconnectioncountPeer count
/api/getinfoFull node state including privacy flags
/api/getmininginfoblocks, difficulty, netstakeweight, stakeweight
/api/getblockhash?index=NBlock hash for height N
/api/getblock?hash=HFull block JSON
/api/getrawtransaction?txid=T&decrypt=1Decoded transaction
/ext/summaryDashboard JSON (all stat-card data in one shot)
/ext/getmoneysupplyPlain-text supply
/ext/getdistributionWealth 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)
Endpoints that return errors /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