mirror of
https://github.com/luxfi/netrunner.git
synced 2026-07-27 00:04:23 +00:00
Drop the Avalanche-heritage /ext prefix; /v1 is the single canonical route surface (one way, no backward compat). The node's baseURL is the source of truth; clients, SDKs, CLI, indexer, maker, genesis, netrunner, and the k8s/compose/gateway/explorer configs are updated to match. Co-authored-by: Hanzo Dev <dev@hanzo.ai>
46 lines
892 B
YAML
46 lines
892 B
YAML
name: lux-l1-l2-local
|
|
version: 1.0.0
|
|
description: Local Lux L1 with OP-based L2
|
|
|
|
engines:
|
|
- name: lux-l1
|
|
type: lux
|
|
network_id: 96369
|
|
http_port: 9630
|
|
staking_port: 9631
|
|
log_level: info
|
|
wait_healthy: true
|
|
extra:
|
|
dev-mode: true
|
|
sybil-protection-disabled-weight: 100
|
|
|
|
- name: lux-l2-op
|
|
type: op
|
|
network_id: 200200
|
|
http_port: 8545
|
|
ws_port: 8546
|
|
staking_port: 30303
|
|
log_level: info
|
|
depends_on:
|
|
- lux-l1
|
|
extra:
|
|
l1-rpc: http://localhost:9630/v1/bc/C/rpc
|
|
sequencer: true
|
|
sequencer-l1-confs: 0
|
|
|
|
networks:
|
|
- name: lux-local
|
|
type: l1
|
|
engine: lux-l1
|
|
chain_id: 96369
|
|
endpoints:
|
|
- http://localhost:9630
|
|
|
|
- name: lux-l2
|
|
type: l2
|
|
engine: lux-l2-op
|
|
parent: lux-local
|
|
chain_id: 200200
|
|
endpoints:
|
|
- http://localhost:8545
|
|
- ws://localhost:8546 |