Last Updated: 2025-11-15
Complete index of files in the repository root directory.
- README.md ⭐ - Project overview and quickstart
- AGENTS.md ⭐ - Repository guidelines for AI agents
- package.json ⭐ - Node.js package configuration
- README.md ⭐ - Project overview and quickstart
- Purpose: Main project documentation
- Content: Quickstart, configuration, troubleshooting, safety warnings
- When to Use: First point of contact for new users
- AGENTS.md ⭐ - Repository guidelines for AI agents
- Purpose: Guidelines for AI agents working on this repository
- Content: Project structure, coding style, testing guidelines, commit guidelines
- When to Use: AI agents should read this before making changes
- docs/ - Complete documentation directory
- Purpose: All detailed documentation
- Index: Index of Indexes ⭐
- When to Use: Deep dive into specific topics
-
package.json ⭐ - Node.js package configuration
- Purpose: Dependencies, scripts, project metadata
- Format: JSON
- When to Use:
npm install,npm run <script>
-
package-lock.json - Dependency lock file
- Purpose: Lock exact dependency versions
- Format: JSON
- When to Use: Automatically used by
npm install
- tsconfig.json - TypeScript compiler configuration
- Purpose: TypeScript compilation settings
- Format: JSON
- When to Use: Build system automatically uses this
- See Configuration Files Index for complete list
- .env - Active configuration (gitignored)
- .env.example - Configuration template
- ecosystem.config.cjs - PM2 ecosystem configuration
- Purpose: PM2 process management configuration
- Format: CommonJS
- When to Use: PM2 process management (if used)
- keep-alive.ts - Watchdog script
- Purpose: Auto-restart bot on crashes
- Format: TypeScript
- Usage:
npm run start:keep-alive - When to Use: Production runs
- mint-insights.json - Successful mint transaction analysis
- Purpose: Stores analysis of successful mint transactions
- Generated By:
npm run analyze:mints:known - When to Use: Gas strategy research
-
.miteddy-state.json - Bot state persistence
- Purpose: Stores bot state for crash recovery
- Auto-Generated: Yes (by bot)
- Gitignored: Yes
-
.miteddy.lock - Single-instance lock
- Purpose: Prevents multiple bot instances
- Auto-Generated: Yes (by bot)
- Gitignored: Yes
- DATA_FILES_INDEX.md - Index of data files
- CONFIGURATION_FILES_INDEX.md - Index of configuration files
- ROOT_FILES_INDEX.md - This file
- docs/INDEX_OF_INDEXES.md ⭐ - Master documentation navigation
- scripts/SCRIPTS_INDEX.md - Scripts index
- src/UTILITY_FILES_INDEX.md - Source utility files index
- tmp_analyze.log - Temporary analysis log
- tmp_layer7.log - Temporary layer7 log
- test.bat - Test batch file
- Purpose: Windows batch file for testing
- When to Use: Windows testing
- Start with README.md ⭐
- Then see docs/INDEX_OF_INDEXES.md for detailed docs
- Read AGENTS.md ⭐ first
- Follow repository guidelines
- Check coding style and conventions
- See CONFIGURATION_FILES_INDEX.md
- Copy
.env.exampleto.env - Fill in your values
- See scripts/SCRIPTS_INDEX.md
- Use
npm run <script>commands
- See DATA_FILES_INDEX.md
- Understand state files and analysis data
- Index of Indexes ⭐ - Master navigation hub for all indexes
- Documentation Index - Complete documentation index
- Audit Index - Complete audit index (80+ audits)
- Analysis Index - Complete analysis index (80+ reports)
- Guides Index - Complete guides index (27 guides)
- Research Index - Research documents index
- Cross-Reference Map - Relationships between documents
- Timeline Index - Chronological index (117+ cross-references)
- Changelog - All changes (67+ cross-references)
- Configuration Files Index - Configuration reference
- Data Files Index - Data files reference
- Scripts Index - Scripts reference
- Utility Files Index - Source utility files index
.env- ContainsPRIVATE_KEY.miteddy-state.json- Bot state.miteddy.lock- Lock filelogs/- Log filesdata/- Analysis datadist/- Compiled outputnode_modules/- Dependenciestmp_*.log- Temporary logs
README.md- Main documentationAGENTS.md- Repository guidelinespackage.json,package-lock.json- Dependenciestsconfig.json- Build configuration.env.example*- Configuration templates- All documentation files
- All index files
⭐ = Most important / Frequently used