A next-generation Layer 1 blockchain platform with advanced DeFi capabilities, privacy-preserving smart contracts, and the LEP100 multi-chain token standard.
🏗️ Monorepo Structure
This repository uses pnpm workspaces and Turborepo for efficient monorepo management.
# Install dependencies
pnpm install
# Build all packages
pnpm build
# Run tests
pnpm test
# Development mode
pnpm dev
pnpm build # Build all packages with Turborepo
pnpm test # Run all tests
pnpm lint # Lint all packages
pnpm lint:fix # Fix linting issues
pnpm typecheck # Type check all TypeScript
pnpm format # Format code with Prettier
pnpm clean # Clean build artifacts
# Application-specific development
pnpm dev # Run all dev servers in parallel
pnpm dev:api # Run API server only
pnpm dev:web # Run web frontend only
# Start all core services
docker compose up -d
# Start with monitoring stack (Prometheus + Grafana)
docker compose -f docker-compose.yaml -f docker-compose.monitoring.yaml up -d
# View logs
docker compose logs -f
# Stop all services
docker compose down
# Configuration structure
clusters/
├── devnet/ # Development cluster
├── staging/ # Staging cluster
└── mainnet/ # Production cluster