BNB Chain smart contract audit
Paste a BNB Chain contract address and the scanner runs 201 detectors against it in your browser — the source never reaches our servers. Free, no sign-up, no wallet needed to read a result.
BNB Chain, as this product sees it
| Chain ID | 56 |
|---|---|
| Native coin | BNB |
| Explorer | bscscan.com |
| Public RPC endpoints verified | 3 (bsc-rpc.publicnode.com, bsc-dataseed.binance.org, bsc-dataseed1.defibit.io) |
| Honeypot simulation router | PancakeSwap V2 0x10ED43C718714eb63d5aA57B78B54704E256024E |
| Explorer JSON-RPC on the free plan | No — the scanner uses the public endpoints above instead. Same results, one more hop. |
| Testnet | BSC Testnet (chain 97) — our faucet funds it |
What has actually gone wrong on BNB Chain
4 incidents in our Hall of Hacks name BNB Chain, for $1.33B between them. These are researched write-ups with the real code, not a list of headlines.
Every one of these was a live, audited-or-not contract holding real money. The failure class of each is linked to the detectors that look for it.
What the scanner checks on BNB Chain
The same 201 detectors run on every chain. We do not have BNB Chain-specific rules and this page will not pretend otherwise — what differs by chain is the explorer, the RPC endpoints, the router used for the buy/sell simulation, and the incidents above. The analysis itself is one engine.
It covers 203 documented weaknesses across 20 categories:
- Access Control
- Arithmetic
- Best Practice
- Bridge / Cross-Chain
- Centralization
- DeFi Economic
- Denial of Service
- External Calls
- Governance
- Input Validation
- Logic / State
- Low-Level / Assembly
- MEV / Ordering
- Oracle / Price
- Randomness
- Reentrancy
- Signatures
- Time Dependence
- Token Standards
- Upgradeability
Each one has a page in the vulnerability database explaining the weakness, what it looks like in Solidity and how to fix it — generated from the detector table itself, so the explanation can never describe a different rule from the one that graded you.
If the contract is not verified on bscscan.com
Most of what is worth checking is unverified, and for those the source engine has nothing to read. The bytecode analyser reads the deployed bytecode instead: the function selectors in the dispatcher, the opcodes present, proxy shape and the implementation slot, and the addresses compiled in.
It reports powers, not intent. A mint(address,uint256) selector proves a mint
entry point exists; it cannot prove who is allowed to call it. Access control lives in control flow, and
reconstructing that from bytecode is decompilation, which this is not.
Free, runs locally, no account. Includes the PancakeSwap V2 buy/sell simulation.