What's on the front page
- Chain stats โ current block height, difficulty, hash rate (historical PoW), stake weight (current PoS)
- Money supply โ circulating mainchain supply (excludes bridge-held SPL)
- Latest blocks โ 10 most recent, with miner/staker address and reward
- Latest transactions โ 10 most recent, with input/output counts and total MOTA moved
- Search bar โ accepts block height, block hash, transaction ID, or address
Address lookup
Paste any mainchain address (prefix M) into the search bar. You'll get:
- Current balance (confirmed + unconfirmed)
- Total received / total sent (lifetime)
- Full transaction history, paginated, with in/out flags and confirmation count
- QR code of the address (scannable)
- Address label if it's been claimed via signmessage (see below)
Claiming an address label
Iquidus supports verified address claims โ you sign a message with the address's private key, post it to the explorer, and a label appears next to the address for everyone. The bridge escrow, for example, is labeled "MotaCoin Bridge Escrow" via this flow.
$ motacoin-cli signmessage "MFqkH1fjMvYLLvNhce1BzRCgEQnjc8Lfxx" "I own this address."
"H5Bj2kP8dQ/..."
# Then POST to /address/<addr>/claim with the signature + chosen label
Transaction lookup
Paste a txid and you'll get:
- Block height + confirmations + timestamp
- Input list (previous-out references + addresses + amounts)
- Output list (addresses + amounts, or OP_RETURN data for bridge routing)
- Raw transaction hex (expandable)
- Fee (difference between inputs and outputs)
- Special tags:
COINSTAKEfor stake rewards,COINBASEfor legacy PoW blocks
Richlist
Public top-100 of mainchain MOTA holders at explorer.motacoin.net/richlist. Useful for confirming the bridge escrow address ranks near the top (that's the mainchain-side MOTA the bridge is holding).
REST API reference
Iquidus exposes a public read-only REST API. Base URL: https://explorer.motacoin.net. All endpoints return JSON unless noted.
Chain stats
$ curl -s https://explorer.motacoin.net/api/getblockcount
184523
$ curl -s https://explorer.motacoin.net/api/getdifficulty
142.857
$ curl -s https://explorer.motacoin.net/api/getconnectioncount
18
$ curl -s https://explorer.motacoin.net/api/getblockhash?index=184520
"000000000000001a4b..."
$ curl -s https://explorer.motacoin.net/api/getblock?hash=000...
{
"hash": "000...",
"confirmations": 3,
"height": 184520,
"time": 1712345678,
"tx": ["a4c8...", "b72e..."],
"previousblockhash": "...",
...
}
Address endpoints
# Total balance (confirmed)
$ curl -s https://explorer.motacoin.net/ext/getbalance/MFqkH1fjMvYLLvNhce1BzRCgEQnjc8Lfxx
"87432118.00000000"
# Address summary (balance, received, sent, last_txs)
$ curl -s https://explorer.motacoin.net/ext/getaddress/MFqk...
{
"address": "MFqk...",
"balance": "87432118.00000000",
"received": "125000000.00000000",
"sent": "37567882.00000000",
"last_txs": [{ "addresses": "...", "type": "vin" }, ...]
}
Transaction endpoints
$ curl -s https://explorer.motacoin.net/api/getrawtransaction?txid=a4c8...&decrypt=1
{
"txid": "a4c8...",
"vin": [{ "txid": "prev...", "vout": 0 }],
"vout": [{ "value": 1000.0, "scriptPubKey": { "addresses": ["MFqk..."] } }],
"confirmations": 3,
...
}
Network / supply
$ curl -s https://explorer.motacoin.net/ext/getmoneysupply
"87432118.00000000"
$ curl -s https://explorer.motacoin.net/ext/getdistribution
{
"supply": 87432118.0,
"t_1_25": { "percent": 24.5, "total": 21420863.0 },
"t_26_50": { ... },
...
}
Stake rewards
$ curl -s https://explorer.motacoin.net/ext/getaddresstxs/MFqk...?start=0&length=50
# Returns tx list for the address, including coinstake rewards tagged with type="stake"
Mainchain supply vs. SPL supply
Because MOTA uses an inverted-escrow model, /ext/getmoneysupply returns the mainchain-circulating supply only โ not the full 125M. To see the complete picture:
| Component | Value | Source |
|---|---|---|
| SPL MOTA total (fixed, mint revoked) | 125,000,000 | Solana RPC, getTokenSupply |
| SPL MOTA held by bridge escrow ATA | ~37.5M (varies) | Solana RPC, getTokenAccountBalance on bridge ATA |
| Mainchain circulating MOTA | ~87.4M (varies) | explorer.motacoin.net /ext/getmoneysupply |
| Total MOTA ever mintable | = SPL total = 125,000,000 | Solana RPC (unalterable) |
The invariant holds: mainchain_circulating + bridge_escrow_spl = 125,000,000. If it ever didn't, the bridge would be insolvent.
Verify the bridge escrow on-chain
# Mainchain escrow balance
$ curl -s https://explorer.motacoin.net/ext/getbalance/MFqkH1fjMvYLLvNhce1BzRCgEQnjc8Lfxx
# Solana-side SPL escrow ATA balance (via Solana RPC)
$ curl -sS -X POST -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"getTokenAccountBalance","params":["77uVYUxp8pFFSP81VjPWUbzoANPzxNnT54jYj6h37yE9"]}' \
https://api.mainnet-beta.solana.com | jq '.result.value.uiAmount'
Sum the two. If it's 125,000,000 โ bridge is solvent.
Downloads index
All release binaries plus their SHA-256 checksums live at explorer.motacoin.net/downloads/. The index is the authoritative source โ GitHub Releases is a mirror for discoverability, but the explorer serves the canonical files.