mukan-consensus/test/e2e/networks/ci.toml
Mukan Erkin Törük ef24c0b67e
Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
initial: sovereign Mukan Network fork
2026-05-11 03:18:27 +03:00

97 lines
2.1 KiB
TOML

# This testnet is run by CI, and attempts to cover a broad range of
# functionality with a single network.
ipv6 = true
initial_height = 1000
vote_extensions_update_height = 1004
vote_extensions_enable_height = 1007
evidence = 5
initial_state = { initial01 = "a", initial02 = "b", initial03 = "c" }
prepare_proposal_delay = "100ms"
process_proposal_delay = "100ms"
check_tx_delay = "0ms"
# The most common case (e.g. Cosmos SDK-based chains).
abci_protocol = "builtin"
prometheus = true
[validators]
validator01 = 100
[validator_update.0]
validator01 = 10
validator02 = 20
validator03 = 30
validator04 = 40
[validator_update.1010]
validator05 = 50
# validator03 gets killed and validator05 has lots of perturbations, so weight them low.
[validator_update.1020]
validator01 = 100
validator02 = 100
validator03 = 50
validator04 = 100
validator05 = 50
[node.seed01]
mode = "seed"
perturb = ["restart"]
[node.validator01]
seeds = ["seed01"]
snapshot_interval = 5
perturb = ["disconnect"]
[node.validator02]
seeds = ["seed01"]
database = "boltdb"
privval_protocol = "tcp"
persist_interval = 0
perturb = ["restart"]
[node.validator03]
seeds = ["seed01"]
database = "badgerdb"
privval_protocol = "unix"
persist_interval = 3
retain_blocks = 20
perturb = ["kill"]
key_type = "secp256k1"
[node.validator04]
persistent_peers = ["validator01"]
database = "rocksdb"
perturb = ["pause"]
key_type = "sr25519"
[node.validator05]
start_at = 1005 # Becomes part of the validator set at 1010
persistent_peers = ["validator01", "full01"]
database = "cleveldb"
privval_protocol = "tcp"
perturb = ["kill", "pause", "disconnect", "restart"]
[node.full01]
start_at = 1010
mode = "full"
persistent_peers = ["validator01", "validator02", "validator03", "validator04", "validator05"]
retain_blocks = 20
perturb = ["restart"]
[node.full02]
start_at = 1015
mode = "full"
state_sync = true
seeds = ["seed01"]
perturb = ["restart"]
[node.light01]
mode= "light"
start_at= 1005
persistent_peers = ["validator01", "validator02", "validator03"]
[node.light02]
mode= "light"
start_at= 1015
persistent_peers = ["validator04", "full01", "validator05"]