Phase 13 Completion: - Add ZK-Rollup Docker infrastructure (sequencer, provers, gateway) - Create zk-sequencer binary with health checks and metrics - Add docker-compose.zk.yml for full ZK stack deployment - Include nginx gateway and Prometheus monitoring configs Integration Tests: - Add comprehensive Phase 13 integration test suite - Cover DAGKnight, quantum crypto, ZK-rollup, gateway tests - All 149 tests passing (39 DAG + 45 crypto + 25 ZK + 40 storage) Phase 14 Planning: - Document 4-milestone roadmap (20 weeks) - M1: Cross-chain IBC interoperability - M2: Privacy layer (RingCT, stealth addresses) - M3: Sharding protocol (100K TPS target) - M4: Developer tooling (formal verification, Hardhat) Docker Services: - synor-zk-sequencer: API port 3001, prover RPC 3002, metrics 9001 - synor-zk-prover-1/2: Dedicated proof generation workers - synor-zk-gateway: nginx API gateway port 3080 - synor-zk-prometheus: Metrics collection port 9090
16 lines
344 B
YAML
16 lines
344 B
YAML
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 15s
|
|
|
|
scrape_configs:
|
|
- job_name: 'zk-sequencer'
|
|
static_configs:
|
|
- targets: ['zk-sequencer:9001']
|
|
metrics_path: /metrics
|
|
|
|
- job_name: 'zk-provers'
|
|
static_configs:
|
|
- targets:
|
|
- 'zk-prover-1:9001'
|
|
- 'zk-prover-2:9001'
|
|
metrics_path: /metrics
|