What problem does it solve? Smart contract developers integrating or building tokens face hidden risks from non-standard ERC20/ERC721 behavior, such as missing return values, fee-on-transfer mechanics, and reentrancy hooks, which can silently break protocol accounting or enable exploits. ## Core Features & Use Cases - Weird Token Pattern Detection: Checks for 24 known non-standard token behaviors including missing return values (USDT), fee-on-transfer (STA, PAXG), rebasing, blocklists, and flash minting. - ERC Conformity & Slither Integration: Runs slither-check-erc, human-summary, contract-summary, and slither-prop to verify standard compliance and contract complexity. - On-chain Scarcity Analysis: Queries deployed contracts for holder distribution, supply concentration, exchange listings, and admin configuration. - Use Case: Before launching a vault that accepts USDT, DAI, and UNI, run this analysis to discover that USDT's missing return value is not handled in your transferFrom call, then fix it with SafeERC20 before mainnet deployment. ## Quick Start Analyze my Solidity codebase for token integration security risks, checking ERC20 conformity and weird token patterns for the external tokens my protocol accepts.