-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.d.ts
170 lines (153 loc) · 5.8 KB
/
config.d.ts
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
// This file contains TypeScript types for the configuration file formats.
/** A configuration for a Leios simulation. */
export interface Config {
// Simulation Configuration
"relay-strategy": RelayStrategy;
/** Only supported by Haskell simulation. */
"tcp-congestion-control": boolean;
/** Only supported by Haskell simulation. */
"multiplex-mini-protocols": boolean;
/** Only supported by Rust simulation. */
"simulate-transactions": boolean;
/**
* When `true`, any delays and message sizes are calculated as if
* each block contained as much data as the expected average, rounded up.
* In particular, for the sake of the above, we consider that:
* - Each RB includes a certificate.
* - Certificates contain votes from `vote-threshold` nodes.
* - Vote bundles vote for `ceil eb-generation-probability` EBs.
* - EBs reference `ceil (ib-generation-probability * leios-stage-length-slots)` IBs.
* Only supported by Haskell simulation. */
"treat-blocks-as-full": boolean;
/** Only supported by Haskell simulation. */
"cleanup-policies": CleanupPolicies;
// Leios Protocol Configuration
"leios-stage-length-slots": bigint;
"leios-stage-active-voting-slots": bigint;
/**
* Determines whether a Leios pipeline has separate Vote (Send) and Vote (Recv) stages.
* If this is set to `true`, it is recommended to set `leios-stage-active-voting-slots`
* to be equal to `leios-stage-length-slots`.
*
* Only supported by Haskell simulation. */
"leios-vote-send-recv-stages": boolean;
// Transaction Configuration
/** Only supported by Rust simulation. */
"tx-generation-distribution": Distribution;
/** Only supported by Rust simulation. */
"tx-size-bytes-distribution": Distribution;
/** Only supported by Rust simulation. */
"tx-validation-cpu-time-ms": number;
/** Only supported by Rust simulation. */
"tx-max-size-bytes": bigint;
// Ranking Block Configuration
"rb-generation-probability": number;
"rb-generation-cpu-time-ms": number;
"rb-head-validation-cpu-time-ms": number;
"rb-head-size-bytes": bigint;
"rb-body-max-size-bytes": bigint;
"rb-body-legacy-praos-payload-validation-cpu-time-ms-constant": number;
"rb-body-legacy-praos-payload-validation-cpu-time-ms-per-byte": number;
"rb-body-legacy-praos-payload-avg-size-bytes": bigint;
// Input Block Configuration
"ib-generation-probability": number;
"ib-generation-cpu-time-ms": number;
/** Only supported by Rust simulation. */
"ib-shards": number;
"ib-head-size-bytes": bigint;
"ib-head-validation-cpu-time-ms": number;
"ib-body-validation-cpu-time-ms-constant": number;
"ib-body-validation-cpu-time-ms-per-byte": number;
"ib-body-avg-size-bytes": bigint;
/** Only supported by Rust simulation. */
"ib-body-max-size-bytes": bigint;
"ib-diffusion-strategy": DiffusionStrategy;
/** Only supported by Haskell simulation. */
"ib-diffusion-max-window-size": bigint;
/** Only supported by Haskell simulation. */
"ib-diffusion-max-headers-to-request": bigint;
/** Only supported by Haskell simulation. */
"ib-diffusion-max-bodies-to-request": bigint;
// Endorsement Block Configuration
"eb-generation-probability": number;
"eb-generation-cpu-time-ms": number;
"eb-validation-cpu-time-ms": number;
"eb-size-bytes-constant": bigint;
"eb-size-bytes-per-ib": bigint;
/** Only supported by Haskell simulation. */
"eb-diffusion-strategy": DiffusionStrategy;
/** Only supported by Haskell simulation. */
"eb-diffusion-max-window-size": bigint;
/** Only supported by Haskell simulation. */
"eb-diffusion-max-headers-to-request": bigint;
/** Only supported by Haskell simulation. */
"eb-diffusion-max-bodies-to-request": bigint;
/**
* The maximum age of EBs included in RBs:
* an EB from slot `s` can only be included in RBs
* up to slot `s+eb-max-age-slots`. */
"eb-max-age-slots": bigint;
// Vote Configuration
"vote-generation-probability": number;
"vote-generation-cpu-time-ms-constant": number;
"vote-generation-cpu-time-ms-per-ib": number;
"vote-validation-cpu-time-ms": number;
"vote-threshold": bigint;
"vote-bundle-size-bytes-constant": bigint;
"vote-bundle-size-bytes-per-eb": bigint;
/** Only supported by Haskell simulation. */
"vote-diffusion-strategy": DiffusionStrategy;
/** Only supported by Haskell simulation. */
"vote-diffusion-max-window-size": bigint;
/** Only supported by Haskell simulation. */
"vote-diffusion-max-headers-to-request": bigint;
/** Only supported by Haskell simulation. */
"vote-diffusion-max-bodies-to-request": bigint;
// Certificate Configuration
"cert-generation-cpu-time-ms-constant": number;
"cert-generation-cpu-time-ms-per-node": number;
"cert-validation-cpu-time-ms-constant": number;
"cert-validation-cpu-time-ms-per-node": number;
"cert-size-bytes-constant": bigint;
"cert-size-bytes-per-node": bigint;
}
export type CleanupPolicies = "all" | CleanupPolicy[];
export type CleanupPolicy =
| "cleanup-expired-ib"
| "cleanup-expired-uncertified-eb"
| "cleanup-expired-unadopted-eb"
| "cleanup-expired-vote"
| "cleanup-expired-certificate";
export type Distribution =
| NormalDistribution
| ExpDistribution
| LogNormalDistribution
| ConstantDistribution;
export interface NormalDistribution {
distribution: "normal";
mean: number;
std_dev: number;
}
export interface ExpDistribution {
distribution: "exp";
lambda: number;
scale?: number;
}
export interface LogNormalDistribution {
distribution: "log-normal";
mu: number;
sigma: number;
}
export interface ConstantDistribution {
distribution: "constant";
value: number;
}
export enum DiffusionStrategy {
PeerOrder = "peer-order",
FreshestFirst = "freshest-first",
OldestFirst = "oldest-first",
}
export enum RelayStrategy {
RequestFromAll = "request-from-all",
RequestFromFirst = "request-from-first",
}