Verify WEM Blockchain Data in 60 Seconds
The WEMscan API is currently not available for public use.
Blockchain data can be verified directly via the public RPC.
All data shown on the explorer is directly sourced from the public blockchain and can be independently verified in seconds using standard RPC calls.
Public RPC Access
WEM provides public RPC endpoints:
https://rpc.wemblockchain.com
https://rpc2.wemblockchain.com
These endpoints return the same blockchain state as displayed on WEMscan.
Quick Verification (Command Line)
Run the following commands:
RPC=https://rpc2.wemblockchain.com
# Get latest block number
curl -s -X POST $RPC \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'
# Replace 0xBLOCK with a block number from the explorer
curl -s -X POST $RPC \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["0xBLOCK","false"],"id":1}'
Steps:
Open WEMscan
Select any block
Copy its block number
Query it via RPC
Compare:
block hash
transaction count
timestamp
If values match, the data is confirmed.
What This Proves:
1. Explorer data is real
2. Blockchain state is publicly accessible
3. Data can be verified without relying on the explorer UI
WEM is publicly listed and accessible via standard tooling:
Find WEM on:ChainList

