Pending
The transaction is accepted by at least one node but has not entered a canonical block. It can still be replaced, expire, or become stale.
BLOCK DOCUMENTATION
Everything here is for BLQ Mainnet. Start with a wallet connection, inspect activity in the explorer, and use the public RPC only through its HTTPS endpoint.
WHAT IS A BLOCK?
A block is a linked, time-ordered record of transactions and the resulting network state. It points to the previous block, carries a miner reward, and includes Proof of Work that anyone can verify.
Every node checks the same block before adding it to its local chain. This is what lets wallets, miners, explorers, and contracts share one canonical history.
NETWORK
Block is a CPU-mined Proof-of-Work network using the native BLQ-RX/2 algorithm. It uses Ethereum-style account addresses and supports EVM-compatible tools. Its adaptive cadence is centered on a 15-second target while issuance remains time-based at 0.1 BLQ per minute.
https://rpc.blq-chain.online/rpcWALLET
Use the official public endpoint. Never add an RPC endpoint received in a direct message or from an unverified site.
https://rpc.blq-chain.online/rpcTRANSACTIONS
Your wallet signs locally. BLQ nodes validate the signed transaction, relay it through authenticated peers, and miners choose eligible transactions for a block.
The transaction is accepted by at least one node but has not entered a canonical block. It can still be replaced, expire, or become stale.
A receipt proves the transaction was included. Status 1 means success; status 0 means execution reverted but the transaction remains part of the chain.
BRIDGE
The bridge converts between native BLQ and wBLQ inside BLQ Chain. Use the dedicated bridge interface at bridge.blq-chain.online/index.html, confirm the transaction, and review the contract state before signing.
Transfer wBLQ between BLQ Chain and Polygon using the cross-chain bridge.
Open bridgeLock native BLQ and receive the same amount of wBLQ on BLQ Chain.
Open WarpBurn wBLQ and receive the corresponding native BLQ on BLQ Chain.
Open UnwarpMINING
BLQ-RX/2 is the network’s native Proof-of-Work algorithm. A miner requests a template, hashes locally, and submits a valid candidate block back to a compatible node.
Native Windows and Ubuntu builds are published on GitHub. Check the release SHA-256 before running a miner, and download BLQ software only from the official organization.
Download BLQ MinerEXPLORER
The explorer separates live node information from archive-indexed information. A short indexing delay is possible while a new canonical block is being processed.
Inspect the block number, timestamp, parent and block hashes, miner, reward, gas, size, and transaction count.
Follow sender, recipient, value, fee, gas, receipt status, contract logs, and the block that included the transaction.
View native balance, indexed transactions, token holdings, and the last canonical balance update.
Unknown contracts remain visible with bytecode and activity. Verification badges appear only when source matches deployed bytecode exactly.
Pending entries come from a bounded mempool view and are reconciled against receipts and confirmed nonces. `Unavailable` means the check timed out; it does not mean a canonical transaction was deleted.
NODES
Full nodes retain historical chain data. Pruned validating nodes keep current executable state, finalized checkpoints, and the data needed to validate new blocks and choose the canonical PoW branch.
For explorers, indexers, historical RPC, and independent archival providers.
Download BLQ NodeFor normal verification and P2P participation with bounded local chain storage.
Download BLQ NodeDEVELOPERS
Use standard JSON-RPC over HTTPS for public read requests. Rate limits and method allow-lists protect the public gateway; node administration and P2P interfaces are intentionally not public APIs.
POST https://rpc.blq-chain.online/rpc{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_chainId",
"params": []
}Useful read methods include eth_blockNumber, eth_getBalance, eth_call, eth_estimateGas, eth_getTransactionReceipt, and eth_getLogs. Signed submissions use eth_sendRawTransaction.
NETWORK BEHAVIOR
Every node validates data locally. Non-mining nodes can still accept and relay transactions, while miners receive current templates from the canonical network.
TROUBLESHOOTING
Confirm the wallet uses chain ID 707070, the official HTTPS RPC, and enough BLQ for the value and gas. Inspect the transaction hash in the explorer, wait for source confirmations when using the bridge, and never share a seed phrase or private key. Miner telemetry may be unavailable through the public gateway even when templates and block submission work.
SAFETY
Check addresses and transaction hashes in the official explorer. Treat bridge transfers as cross-chain operations: wait for source confirmations, review the destination claim, and never share a wallet recovery phrase or private key.