-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.json
116 lines (116 loc) · 3.96 KB
/
settings.json
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"consensusMechanisms": {
"hotstuff": {
"testbed": "hotstuff",
"key": {
"name": "ubuntu",
"path": "/home/ubuntu/.ssh/geodec"
},
"ports": {
"consensus": 8000,
"mempool": 7000,
"front": 6000
},
"repo": {
"name": "hotstuff",
"url": "https://github.com/GeoDecConsensus/hotstuff",
"branch": "main"
},
"geodec": {
"interface": "ens3",
"geo_input": "/home/ubuntu/geodec/rundata/geo_input.csv",
"servers_file": "/home/ubuntu/geodec/frontend/public/servers.csv",
"pings_grouped_file": "/home/ubuntu/geodec/rundata/ping_grouped.csv",
"pings_file": "/home/ubuntu/geodec/rundata/pings.csv"
},
"instances": {
"type": "m5d.8xlarge",
"regions": [
"us-east-1",
"eu-north-1",
"ap-southeast-2",
"us-west-1",
"ap-northeast-1"
]
},
"configuration": {
"provider": "google_compute_engine",
"ip_file": "/home/ubuntu/geodec/rundata/ip_file.csv"
}
},
"cometbft": {
"testbed": "cometbft",
"key": {
"name": "ubuntu",
"path": "/home/ubuntu/.ssh/geodec"
},
"ports": {
"consensus": 8000,
"mempool": 7000,
"front": 6000
},
"repo": {
"name": "cometbft",
"url": "https://github.com/GeoDecConsensus/cometbft",
"branch": "v1.x-geodec"
},
"geodec": {
"interface": "ens3",
"geo_input": "/home/ubuntu/geodec/rundata/geo_input.csv",
"servers_file": "/home/ubuntu/geodec/frontend/public/servers.csv",
"pings_grouped_file": "/home/ubuntu/geodec/rundata/ping_grouped.csv",
"pings_file": "/home/ubuntu/geodec/rundata/pings.csv"
},
"instances": {
"type": "m5d.8xlarge",
"regions": [
"us-east-1",
"eu-north-1",
"ap-southeast-2",
"us-west-1",
"ap-northeast-1"
]
},
"configuration": {
"provider": "google_compute_engine",
"ip_file": "/home/ubuntu/geodec/rundata/ip_file.csv"
}
},
"bullshark": {
"testbed": "bullshark",
"key": {
"name": "ubuntu",
"path": "/home/ubuntu/.ssh/geodec"
},
"ports": {
"base": 5000
},
"repo": {
"name": "narwhal",
"url": "https://github.com/asonnino/narwhal",
"branch": "bullshark"
},
"geodec": {
"interface": "ens3",
"geo_input": "/home/ubuntu/geodec/rundata/geo_input.csv",
"servers_file": "/home/ubuntu/geodec/frontend/public/servers.csv",
"pings_grouped_file": "/home/ubuntu/geodec/rundata/ping_grouped.csv",
"pings_file": "/home/ubuntu/geodec/rundata/pings.csv"
},
"instances": {
"type": "m5d.8xlarge",
"regions": [
"us-east-1",
"eu-north-1",
"ap-southeast-2",
"us-west-1",
"ap-northeast-1"
]
},
"configuration": {
"provider": "google_compute_engine",
"ip_file": "/home/ubuntu/geodec/rundata/ip_file.csv"
}
}
}
}