The Aptos Explorer is the official block explorer for the Aptos blockchain. It helps users and developers inspect on-chain activity and understand what is happening on Aptos.
Use Aptos Explorer to:
- View transactions, including payloads, events, and gas usage
- Inspect accounts, including balances and resources
- Browse blocks and network activity
- Explore validators and staking related data
- Review analytics pages backed by datasets in
analytics/
The canonical hosted instance is available at https://explorer.aptoslabs.com.
Prerequisites
- Node.js (see
.node-versionfor the expected version) pnpm(seepackage.jsonfor the pinned version)
Install
pnpm installStart the dev server
- Port 3030:
pnpm dev- Port 3000:
pnpm startBuild
pnpm buildContributions are welcome, including bug fixes, performance improvements, docs, and new features.
- Fork the repo and create a branch from
main - Make your changes
- Run formatting and lint checks before opening a pull request:
pnpm fmt
pnpm lint- Run tests when applicable:
pnpm test --run- The primary application code is in
app/. src/contains legacy or compatibility code. Preferapp/for new work.- Agent workflows and task tracking live in
AGENTS.mdand.agents/.
Use GitHub Issues to report bugs, request features, or request address verification:
- New issue:
https://github.com/aptos-labs/explorer/issues/new/choose - Existing issues:
https://github.com/aptos-labs/explorer/issues
Please pick the appropriate issue template and include clear reproduction steps and expected behavior when reporting bugs.
Thanks to all contributors who help improve Aptos Explorer.