-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcluster.yaml.example
More file actions
46 lines (39 loc) · 934 Bytes
/
cluster.yaml.example
File metadata and controls
46 lines (39 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Disentangle Protocol - Cluster Configuration Example
#
# Copy this file to cluster.yaml and adjust for your deployment.
cluster:
name: "disentangle-testnet"
version: "0.3.0"
nodes:
# Genesis/bootstrap node
- name: node1
role: bootstrap
p2p_port: 9000
rpc_port: 8000
peers: []
# Follower nodes
- name: node2
role: follower
p2p_port: 9000
rpc_port: 8000
peers:
- "/dns4/node1/tcp/9000"
- name: node3
role: follower
p2p_port: 9000
rpc_port: 8000
peers:
- "/dns4/node1/tcp/9000"
consensus:
# Bootstrap ramping: linear alpha ramp over blocks 1000-6000
bootstrap_start: 1000
bootstrap_end: 6000
confirmation_depth: 6
# Curvature parameters
curvature_method: "jaccard"
fixed_point_scale: 65536
crypto:
# Post-quantum suite (NIST Level 5)
signature: "ML-DSA-87" # Dilithium5
kem: "ML-KEM-1024" # Kyber1024
hash: "SHA3-256"