Official documentation for EVVM (Ethereum Virtual Virtual Machine) - Infraless EVM Virtualization solving Scalability and Chain Fragmentation
Live Documentation: https://evvm.info
EVVM enables "virtual blockchains" to operate on top of host blockchains without requiring physical infrastructure management. Think of it as having your own blockchain without the operational overhead of validators, nodes, and infrastructure.
- Infrastructure Decoupling: Separate blockchain logic from physical infrastructure
- Gasless Transactions: Revolutionary communication methods eliminating gas fees
- Vertical Scalability: Multiple virtual blockchains on single host networks
- EIP Innovation Lab: Testing ground for Ethereum Improvement Proposals
This documentation site provides comprehensive coverage of:
- Core Concepts: Virtual blockchain architecture and transaction processing
- Smart Contracts: Complete API reference for all EVVM contracts
- Developer Guides: Tutorials for building EVVM services and integrations
- Signature Structures: EIP-191 signature formats for all operations
- NPM Libraries: TypeScript and Solidity libraries for EVVM development
- LLM-Friendly Format: AI-optimized documentation following llmstxt.org standard
- Node.js: >= 18.0
- npm: Latest version
npm installStart the local development server with live reload:
npm startThis opens a browser window at http://localhost:3000. Most changes are reflected instantly without restarting the server.
Generate static content for production:
npm run buildStatic files are generated in the build/ directory. The build process includes:
- Optimized production bundles
- LLM-friendly documentation generation (
llms.txtandllms-full.txt) - Search index creation
- Math equation rendering (KaTeX)
Serve the production build locally:
npm run serveAccess the site at http://localhost:3000 to verify production behavior.
mate-docs/
├── docs/ # Documentation content (Markdown)
│ ├── intro.md # Introduction page
│ ├── 02-QuickStart.md # Quick start guide
│ ├── 04-Contracts/01-EVVM/ # EVVM Core Contract docs
│ ├── 04-Contracts/03-Staking/ # Staking system docs
│ ├── 04-Contracts/02-NameService/ # Name service docs
│ ├── 04-Contracts/04-Treasury/ # Treasury and bridge docs
│ ├── 05-SignatureStructures/ # Signature format docs
│ ├── 08-RegistryEvvm/ # Registry contract docs
│ └── 07-Libraries/01-npmLibraries/ # Library documentation
├── src/ # Custom React components
│ ├── components/ # Reusable components
│ ├── css/ # Custom styling
│ └── pages/ # Custom pages
├── static/ # Static assets (images, files)
├── docusaurus.config.ts # Docusaurus configuration
├── sidebars.ts # Sidebar structure
└── package.json # Dependencies and scripts
- Create Markdown files in the appropriate
docs/subdirectory - Use frontmatter for metadata:
--- sidebar_position: 1 title: "Page Title" description: "SEO description" ---
- Files are auto-sorted by numeric prefixes (e.g.,
01-,02-) - Sidebar structure is defined in
sidebars.ts
- Use clear, concise language
- Include code examples where applicable
- Add diagrams or images to
static/img/ - Follow existing documentation patterns
- Use proper Markdown formatting
The site supports KaTeX for mathematical notation:
- Inline math:
$equation$ - Display math:
$$equation$$
This repository automatically generates LLM-optimized documentation:
/llms.txt: Index with links to all documentation sections (131 lines)/llms-full.txt: Complete documentation in single file (19,825 lines)
These files follow the llmstxt.org standard and are accessible at:
Files are automatically generated during npm run build via the docusaurus-plugin-llms plugin.
-
Create a new branch:
git checkout -b feature/your-feature-name
-
Make your changes and test locally:
npm start
-
Build and verify production output:
npm run build npm run serve
-
Commit with descriptive messages following conventional commits:
git commit -m "Add documentation for new feature" -
Push and create a pull request:
git push origin feature/your-feature-name
| Command | Description |
|---|---|
npm start |
Start development server with hot reload |
npm run build |
Build production static site |
npm run serve |
Serve production build locally |
npm run typecheck |
Run TypeScript type checking |
npm run clear |
Clear Docusaurus cache |
The documentation is automatically deployed to evvm.info via Vercel when changes are merged to the main branch.
For GitHub Pages deployment:
# Using SSH
USE_SSH=true npm run deploy
# Using HTTPS
GIT_USER=<username> npm run deploy- Docusaurus 3.7.0: Modern static site generator
- React 19: UI framework
- TypeScript: Type-safe development
- KaTeX: Math equation rendering
- Lunr: Client-side search
- docusaurus-plugin-llms: LLM-friendly documentation generation
We welcome contributions to improve the documentation! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Test thoroughly (both dev and production builds)
- Submit a pull request with clear description
- Follow existing documentation style and structure
- Test all changes locally before submitting
- Include screenshots for visual changes
- Update the sidebar configuration if adding new sections
- Ensure build succeeds without errors
- Documentation: https://evvm.info
- Website: https://evvm.org
- GitHub Organization: https://github.com/EVVM-org
- Twitter: https://x.com/RollAMate
- Docusaurus Docs: https://docusaurus.io/docs
- Markdown Guide: https://www.markdownguide.org/
- KaTeX Docs: https://katex.org/docs/supported.html
The EVVM protocol is licensed under the EVVM Noncommercial License v1.0. See documentation for details.
This documentation repository is open source and contributions are welcome.
For questions, issues, or contributions:
- Documentation Issues: Create an issue
- EVVM Protocol: Visit evvm.org
- Community: Follow us on Twitter
Built with ❤️ for Ethereum