Complete index of utility files in src/ directory (non-core bot files).
Last Updated: 2025-11-13
- find-tokens.ts β - Find Steady Teddy and Mibera token IDs
- verify-mint.ts β - Verify mint transaction success
- analyze-successful-mints.ts β - Analyze successful mint transactions
-
find-tokens.ts β - Find Steady Teddy and Mibera token IDs
- Purpose: Automatically find token IDs owned by wallet
- Usage:
npm run find-tokens - Output: Token IDs for Steady Teddy and Mibera
- When to Use: First-time setup, when you don't know token IDs
-
find-miteddy-contract.ts - Find MiTeddy contract
- Purpose: Locate MiTeddy contract address
- Usage: Direct execution or via script
- When to Use: Contract verification
- verify-mint.ts β - Verify mint transaction success
- Purpose: Verify if a transaction successfully minted a MiTeddy
- Usage:
npm run verify-mint <txHash> - Output: Mint verification status, token ID if successful
- When to Use: After mint attempts, verification
- analyze-successful-mints.ts β - Analyze successful mint transactions
- Purpose: Analyze gas/timing data for successful mints
- Usage:
npm run analyze:mints:known(via scripts/) - Output: Analysis data for gas strategy research
- When to Use: Gas strategy research, competitive analysis
- calculate-unlock.ts - Calculate unlock time from timer
- Purpose: Convert website timer to exact unlock timestamp
- Usage:
npm run calc-unlock "HH:MM:SS" - Output: Updates
.envwithEXPECTED_UNLOCK_TIME - When to Use: Time-based spam setup
- estimate-time-20x.ts - Estimate time (20x multiplier)
- estimate-time-20x-final.ts - Final time estimation
- estimate-time-browser.ts - Browser-based time estimation
- estimate-time-browser-loop.ts - Browser loop estimation
- estimate-time-manual.ts - Manual time estimation
- estimate-time-multiple.ts - Multiple time estimation
- read-timer-20x.ts - Read timer (20x)
- read-timer-20x-final.ts - Final timer reading
- sample-timer-multiple.ts - Sample timer multiple times
- calc-mean-time.ts - Calculate mean time
- check-mint-timing-pattern.ts - Check mint timing patterns
- Purpose: Analyze timing patterns in mint windows
- When to Use: Timing research
- test-rpc-latency.ts - Test RPC latency
- Purpose: Basic RPC latency testing
- Note: Consider using
scripts/latency-probe.tsinstead
- audit-bot-run.ts - Audit bot run
- Purpose: Audit bot execution
- Usage:
npm run audit:bot-run(if available) - When to Use: Post-mortem analysis
- post-mortem-analysis.ts - Post-mortem analysis
- Purpose: Analyze bot failures
- Usage: Direct execution or via script
- When to Use: After failures, troubleshooting
- auto-start.ts - Auto-start bot before unlock
- Purpose: Automatically start bot 10 minutes before unlock
- Usage:
npm run auto-start - When to Use: Hands-free operation
- find-tokens.ts - Find token IDs
- calculate-unlock.ts - Calculate unlock time
- find-miteddy-contract.ts - Find contract
- verify-mint.ts - Verify mint success
- test-rpc-latency.ts - Test RPC latency
- analyze-successful-mints.ts - Analyze mints
- post-mortem-analysis.ts - Post-mortem analysis
- check-mint-timing-pattern.ts - Timing patterns
- estimate-time-*.ts - Various time estimation scripts
- read-timer-*.ts - Timer reading scripts
- sample-timer-multiple.ts - Timer sampling
# 1. Find your token IDs
npm run find-tokens
# 2. Calculate unlock time (if using time-based spam)
npm run calc-unlock "HH:MM:SS"
# 3. Auto-start before unlock (optional)
npm run auto-start# Verify mint transaction
npm run verify-mint <txHash>
# Test RPC latency
npm run test-rpc-latency# Analyze successful mints
npm run analyze:mints:known
# Post-mortem analysis
npm run audit:bot-run- Index of Indexes β - Master navigation hub for all indexes
- Documentation Index - Complete documentation index
- Scripts Index - Utility scripts index
- Guides Index - Complete guides index (27 guides)
- Cross-Reference Map - Relationships between documents
- Timeline Index - Chronological index (117+ cross-references)
- Changelog - All changes (67+ cross-references)
- Configuration Guide - Configuration reference
- Getting Started - Setup guide
index.ts- Main bot logicconfig.ts- Configuration loadinglog.ts,log-hotpath.ts,detailed-log.ts- Loggingcache.ts- Cachinglockfile.ts- Lock managementnonceStore.ts- Nonce persistencerpc-utils.ts- RPC utilitiestime-utils.ts- Time utilitiesrpc/- RPC managementtiming/- Timing systemtime/- Time unitshelpers/- Helper modulesanalysis/- Analysis types
- Token finding scripts
- Mint verification scripts
- Timing calculation scripts
- Analysis scripts
- Testing scripts
Last Updated: 2025-11-13
Total Utility Files: 20+
β = Most used / Recommended