Back to Home

Block Explorer

BLOCK EXPLORER — RNOISE CHAIN LEDGER

RNOISE Block Explorer is the official open ledger registry for RNOISE Chain. It provides developers, validators, and token holders with real-time transaction lookup, block production monitoring, validator performance status, and smart contract execution data transparency.

Mainnet Network Parameters

RNOISE Chain utilizes a high-performance Clique Proof-of-Authority (PoA) consensus mechanism, guaranteeing high throughput and minimal transaction fee overhead.

Blockchain Name
RNOISE Chain
Chain ID
20260616
Consensus
Clique PoA
Block Time
~3.0 Secs

Latest Blocks

Block Height Validator (Signer) Time Transactions Gas Used
#16,024 0x7099...79C8 3s ago 2 txs 126,504 (0.42%)
#16,023 0xf39F...2266 6s ago 5 txs 342,118 (1.14%)
#16,022 0x3C44...90E5 9s ago 0 txs 0 (0%)

Latest Transactions

Txn Hash From To Value Tx Fee
0x9c3e...c218 0x8627...1122 0x1AFd...D3a2 120.0 RNS 0.00021 RNS
0x4b90...e5c4 0x7099...79C8 0x6b99...56e5 0.0 RNS (Mint NFT) 0.00048 RNS
0xd3a2...8b5c 0x3C44...90E5 0xF3ba...911f 50.0 RNS (Stake) 0.00035 RNS

Smart Contract Verification

To preserve decentralization transparency, developers can submit Solidity source code and ABI metadata to verify their smart contracts on-chain. Verified contracts display a verification badge, allowing users to interact directly through "Read" and "Write" tabs inside the explorer UI.

// ERC20 Contract Interface Verification Example
interface IRNOISEToken {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
}