Skip to content

v1.2.0 — Security Module

Choose a tag to compare

@ulsreall ulsreall released this 05 Jun 11:50
· 19 commits to master since this release

🔒 v1.2.0 — Security Module

Comprehensive token security analysis toolkit.

✨ New Features

  • TokenAnalyzer: Full security analysis for tokens
  • Honeypot Detection: Check if token can be sold before buying
  • Rug Pull Checker: Assess rug pull risk factors
  • Contract Audit: Detect hidden mint, blacklist, pause, proxy patterns
  • Tax Checker: Buy/sell tax analysis
  • Liquidity Analysis: Locked %, lock duration
  • Holder Analysis: Concentration, whale detection
  • Safety Score: 0-100 score with risk levels
  • GoPlus API: Real-time token security data
  • DexScreener: Liquidity data integration

📊 Stats

  • 565 tests (+36 new)
  • 20 examples
  • 20+ modules
  • CI green

📦 Installation

pip install web3-agent-kit==1.2.0

🔥 Usage

from web3_agent_kit.security import TokenAnalyzer, SecurityConfig

analyzer = TokenAnalyzer(SecurityConfig(chain="base"))
report = analyzer.analyze_token("0x...")

print(f"Safety Score: {report.safety_score}/100")
print(f"Is Honeypot: {report.is_honeypot}")