On-Chain Analytics Dashboard
Free to download on every platform. Comes pre-installed on BotFone, BotPad and BotFlip — with extra free apps included.
About this app
WHAT IT DOES
On-Chain Analytics Dashboard gives you a real-time snapshot of the Ethereum Virtual Machine (EVM) network and any address you choose. In one view, you see the current block number, network gas price in Gwei, native ETH balance, transaction count, and contract type (EOA or contract) for the target address. It also displays recent transaction history and a summary of Transfer event logs from the address. The dashboard updates on demand, giving you a clear picture of both network conditions and address activity in seconds.
HOW TO USE
Connect your EVM wallet (optional—the tool works read-only) using the button in the header. Select the network from the dropdown: Ethereum Mainnet, Goerli, Sepolia, Polygon, Arbitrum, or Optimism. Enter any address (0x…42) in the input field, or leave it blank to use your connected wallet. Click "load analytics" to fetch the latest data. The results card displays network metrics, address details, and a table of recent transactions. Use the "clear" button to reset and start a new query. No signing, no approvals, no wallet actions—just pure analytics.
TECHNICAL MECHANISM
The tool uses ethers.js v5.7.2 via the BGWallet provider bridge. It calls provider.getBlockNumber() for the current block, provider.getGasPrice() for gas costs, and provider.getBalance() and provider.getTransactionCount() for address-specific data. It checks provider.getCode() to determine if an address is a contract or an externally owned account. For transaction history, it uses provider.getHistory() to fetch recent transactions, which are displayed in a table with hash, destination, and value. The dashboard also attempts to fetch Transfer event logs from the address using a chunked log fetcher that automatically halves block ranges on RPC limit errors—ensuring the scan completes even on public nodes with strict eth_getLogs caps. All data is presented in clean, human-readable format with no raw hex dumps.
WHAT IT CANNOT SEE
This tool cannot provide real-time streaming data or websocket updates—it is a point-in-time snapshot. It cannot analyze off-chain activity, the transaction mempool, or pending transactions. It cannot predict future gas prices or transaction outcomes. Historical data is limited by the archive node's availability—older blocks may be unavailable depending on the provider. It cannot decode private or unverified contract implementations beyond basic event logs. It cannot verify signatures or prove the original intent behind transactions. Token balances beyond native ETH are not shown in this simplified version.
PLEASE NOTE
Works exclusively on EVM-compatible chains: Ethereum Mainnet, Goerli, Sepolia, Polygon, Arbitrum, and Optimism. Solana, Tron, Starknet, SUI, TON, Aptos, Bitcoin, Cosmos, and XRP are not supported. This is a read-only, free analytics tool—use it to monitor network conditions and address activity, but always cross-check critical data with a block explorer or your own node.