-
Notifications
You must be signed in to change notification settings - Fork 33
/
ethereum_spec.py
156 lines (112 loc) · 5.31 KB
/
ethereum_spec.py
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
"""
Relevant methods from the official [eth2.0-specs](https://github.com/ethereum/eth2.0-specs) specification repo.
* Phase 0: https://github.com/ethereum/eth2.0-specs/blob/dev/specs/phase0/beacon-chain.md
* Altair updates: https://github.com/ethereum/eth2.0-specs/blob/dev/specs/altair/beacon-chain.md
"""
import model.constants as constants
from model.state_variables import StateVariables
from model.system_parameters import Parameters
from model.types import Gwei
# Beacon state accessors
def get_active_validator_indices(state: StateVariables) -> Gwei:
"""
See https://github.com/ethereum/eth2.0-specs/blob/dev/specs/phase0/beacon-chain.md#get_active_validator_indices
```python
def get_active_validator_indices(state: BeaconState, epoch: Epoch) -> Sequence[ValidatorIndex]:
'''
Return the sequence of active validator indices at ``epoch``.
'''
return [ValidatorIndex(i) for i, v in enumerate(state.validators) if is_active_validator(v, epoch)]
```
"""
return state["number_of_active_validators"]
def get_awake_validator_indices(params: Parameters, state: StateVariables) -> Gwei:
"""
Simplified Active Validator Cap and Rotation Proposal
See https://ethresear.ch/t/simplified-active-validator-cap-and-rotation-proposal
"""
# Parameters
MAX_VALIDATOR_COUNT = params["MAX_VALIDATOR_COUNT"]
# State Variables
active_validators = get_active_validator_indices(state)
# Get awake validators as subset of active validators
awake_validators = min(MAX_VALIDATOR_COUNT or float("inf"), active_validators)
return awake_validators
def get_total_active_balance(params: Parameters, state: StateVariables) -> Gwei:
"""
See https://github.com/ethereum/eth2.0-specs/blob/dev/specs/phase0/beacon-chain.md#get_total_active_balance
```python
def get_total_active_balance(state: BeaconState) -> Gwei:
'''
Return the combined effective balance of the active validators.
Note: ``get_total_balance`` returns ``EFFECTIVE_BALANCE_INCREMENT`` Gwei minimum to avoid divisions by zero.
'''
return get_total_balance(state, set(get_active_validator_indices(state, get_current_epoch(state))))
```
"""
# Parameters
EFFECTIVE_BALANCE_INCREMENT = params["EFFECTIVE_BALANCE_INCREMENT"]
MAX_EFFECTIVE_BALANCE = params["MAX_EFFECTIVE_BALANCE"]
# State Variables
eth_staked = state["eth_staked"]
# Get active & awake validators (see proposal)
number_of_validators = get_awake_validator_indices(params, state)
# Calculate total active balance
total_active_balance = (
eth_staked * constants.gwei
- (eth_staked * constants.gwei) % EFFECTIVE_BALANCE_INCREMENT
)
max_total_active_balance = MAX_EFFECTIVE_BALANCE * number_of_validators
total_active_balance = min(total_active_balance, max_total_active_balance)
return Gwei(max(EFFECTIVE_BALANCE_INCREMENT, total_active_balance))
def integer_squareroot(n):
"""
Return the largest integer ``x`` such that ``x**2 <= n``.
See https://benjaminion.xyz/eth2-annotated-spec/phase0/beacon-chain/
"""
x = n
y = (x + 1) // 2
while y < x:
x = y
y = (x + n // x) // 2
return x
def get_base_reward_per_increment(params: Parameters, state: StateVariables) -> Gwei:
"""Get the base reward per increment (single validator)"""
EFFECTIVE_BALANCE_INCREMENT = params["EFFECTIVE_BALANCE_INCREMENT"]
BASE_REWARD_FACTOR = params["BASE_REWARD_FACTOR"]
return Gwei(
EFFECTIVE_BALANCE_INCREMENT
* BASE_REWARD_FACTOR
// integer_squareroot(int(get_total_active_balance(params, state)))
)
def get_base_reward(params: Parameters, state: StateVariables) -> Gwei:
"""Get the base reward for the current epoch"""
# Parameters
MAX_EFFECTIVE_BALANCE = params["MAX_EFFECTIVE_BALANCE"]
EFFECTIVE_BALANCE_INCREMENT = params["EFFECTIVE_BALANCE_INCREMENT"]
# State Variables
average_effective_balance = state["average_effective_balance"]
increments = (
min(average_effective_balance, MAX_EFFECTIVE_BALANCE)
// EFFECTIVE_BALANCE_INCREMENT
)
return Gwei(increments * get_base_reward_per_increment(params, state))
def get_proposer_reward(params: Parameters, state: StateVariables) -> Gwei:
"""Get the proposer reward as a proportion of the base reward"""
PROPOSER_REWARD_QUOTIENT = params["PROPOSER_REWARD_QUOTIENT"]
return Gwei(get_base_reward(params, state) // PROPOSER_REWARD_QUOTIENT)
def get_validator_churn_limit(params: Parameters, state: StateVariables) -> int:
"""
Return the validator churn limit for the current epoch.
See https://github.com/ethereum/eth2.0-specs/blob/dev/specs/phase0/beacon-chain.md#get_validator_churn_limit
```python
active_validator_indices = get_active_validator_indices(state, get_current_epoch(state))
return max(MIN_PER_EPOCH_CHURN_LIMIT, uint64(len(active_validator_indices)) // CHURN_LIMIT_QUOTIENT)
```
"""
# Parameters
MIN_PER_EPOCH_CHURN_LIMIT = params["MIN_PER_EPOCH_CHURN_LIMIT"]
CHURN_LIMIT_QUOTIENT = params["CHURN_LIMIT_QUOTIENT"]
# Get active & awake validators (see proposal)
number_of_validators = get_awake_validator_indices(params, state)
return max(MIN_PER_EPOCH_CHURN_LIMIT, number_of_validators // CHURN_LIMIT_QUOTIENT)