2019-03-18 16:18:57 +00:00
|
|
|
import sys
|
|
|
|
import function_puller
|
|
|
|
|
|
|
|
|
2019-04-07 07:02:20 +00:00
|
|
|
def build_phase0_spec(sourcefile, outfile):
|
2019-03-18 18:51:52 +00:00
|
|
|
code_lines = []
|
|
|
|
code_lines.append("""
|
2019-05-07 09:12:33 +00:00
|
|
|
|
2019-03-18 16:18:57 +00:00
|
|
|
from typing import (
|
|
|
|
Any,
|
2019-04-07 07:02:20 +00:00
|
|
|
Dict,
|
2019-03-18 16:18:57 +00:00
|
|
|
List,
|
|
|
|
NewType,
|
|
|
|
Tuple,
|
|
|
|
)
|
2019-05-12 21:56:53 +00:00
|
|
|
from eth2spec.utils.ssz.ssz_impl import (
|
2019-05-09 05:45:00 +00:00
|
|
|
hash_tree_root,
|
|
|
|
signing_root,
|
|
|
|
)
|
2019-05-27 19:14:59 +00:00
|
|
|
from eth2spec.utils.ssz.ssz_typing import (
|
2019-06-01 00:22:14 +00:00
|
|
|
# unused: uint8, uint16, uint32, uint128, uint256,
|
|
|
|
uint64, Container, Vector, BytesN
|
2019-05-27 19:14:59 +00:00
|
|
|
)
|
2019-05-09 06:25:08 +00:00
|
|
|
from eth2spec.utils.hash_function import hash
|
2019-05-30 01:53:46 +00:00
|
|
|
from eth2spec.utils.bls import (
|
2019-05-09 05:45:00 +00:00
|
|
|
bls_aggregate_pubkeys,
|
|
|
|
bls_verify,
|
|
|
|
bls_verify_multiple,
|
|
|
|
)
|
2019-05-09 06:25:08 +00:00
|
|
|
|
2019-05-27 19:14:59 +00:00
|
|
|
# Note: 'int' type defaults to being interpreted as a uint64 by SSZ implementation.
|
2019-03-18 16:18:57 +00:00
|
|
|
Slot = NewType('Slot', int) # uint64
|
|
|
|
Epoch = NewType('Epoch', int) # uint64
|
|
|
|
Shard = NewType('Shard', int) # uint64
|
|
|
|
ValidatorIndex = NewType('ValidatorIndex', int) # uint64
|
|
|
|
Gwei = NewType('Gwei', int) # uint64
|
2019-05-27 19:14:59 +00:00
|
|
|
|
|
|
|
Bytes4 = BytesN[4]
|
2019-05-24 22:10:06 +00:00
|
|
|
Bytes32 = BytesN[32]
|
2019-05-27 19:14:59 +00:00
|
|
|
Bytes48 = BytesN[48]
|
|
|
|
Bytes96 = BytesN[96]
|
|
|
|
|
2019-04-25 08:03:02 +00:00
|
|
|
""")
|
2019-03-18 18:51:52 +00:00
|
|
|
|
2019-04-07 07:02:20 +00:00
|
|
|
code_lines += function_puller.get_spec(sourcefile)
|
2019-03-18 18:51:52 +00:00
|
|
|
|
|
|
|
code_lines.append("""
|
2019-05-01 18:56:48 +00:00
|
|
|
# Monkey patch validator compute committee code
|
|
|
|
_compute_committee = compute_committee
|
2019-03-19 17:15:51 +00:00
|
|
|
committee_cache = {}
|
2019-03-27 17:21:07 +00:00
|
|
|
|
|
|
|
|
2019-05-01 18:56:48 +00:00
|
|
|
def compute_committee(indices: List[ValidatorIndex], seed: Bytes32, index: int, count: int) -> List[ValidatorIndex]:
|
|
|
|
param_hash = (hash_tree_root(indices), seed, index, count)
|
2019-03-18 18:51:52 +00:00
|
|
|
|
2019-03-19 17:15:51 +00:00
|
|
|
if param_hash in committee_cache:
|
|
|
|
return committee_cache[param_hash]
|
2019-03-18 18:51:52 +00:00
|
|
|
else:
|
2019-05-01 18:56:48 +00:00
|
|
|
ret = _compute_committee(indices, seed, index, count)
|
2019-03-19 17:15:51 +00:00
|
|
|
committee_cache[param_hash] = ret
|
2019-03-18 18:51:52 +00:00
|
|
|
return ret
|
2019-03-18 16:18:57 +00:00
|
|
|
|
|
|
|
|
2019-03-18 18:51:52 +00:00
|
|
|
# Monkey patch hash cache
|
|
|
|
_hash = hash
|
|
|
|
hash_cache = {}
|
2019-03-27 17:21:07 +00:00
|
|
|
|
|
|
|
|
2019-03-18 18:51:52 +00:00
|
|
|
def hash(x):
|
|
|
|
if x in hash_cache:
|
|
|
|
return hash_cache[x]
|
|
|
|
else:
|
|
|
|
ret = _hash(x)
|
|
|
|
hash_cache[x] = ret
|
|
|
|
return ret
|
2019-04-07 07:02:20 +00:00
|
|
|
|
2019-05-09 06:25:08 +00:00
|
|
|
|
2019-04-07 07:02:20 +00:00
|
|
|
# Access to overwrite spec constants based on configuration
|
|
|
|
def apply_constants_preset(preset: Dict[str, Any]):
|
|
|
|
global_vars = globals()
|
2019-04-07 13:36:05 +00:00
|
|
|
for k, v in preset.items():
|
2019-04-07 07:02:20 +00:00
|
|
|
global_vars[k] = v
|
|
|
|
|
|
|
|
# Deal with derived constants
|
2019-04-07 13:36:05 +00:00
|
|
|
global_vars['GENESIS_EPOCH'] = slot_to_epoch(GENESIS_SLOT)
|
2019-04-25 08:03:02 +00:00
|
|
|
|
2019-04-07 13:36:05 +00:00
|
|
|
# Initialize SSZ types again, to account for changed lengths
|
|
|
|
init_SSZ_types()
|
2019-04-07 07:02:20 +00:00
|
|
|
""")
|
2019-03-18 16:18:57 +00:00
|
|
|
|
2019-03-18 18:51:52 +00:00
|
|
|
with open(outfile, 'w') as out:
|
|
|
|
out.write("\n".join(code_lines))
|
2019-03-18 16:18:57 +00:00
|
|
|
|
|
|
|
|
2019-03-18 18:51:52 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
if len(sys.argv) < 3:
|
2019-04-07 07:02:20 +00:00
|
|
|
print("Usage: <source phase0> <output phase0 pyspec>")
|
|
|
|
build_phase0_spec(sys.argv[1], sys.argv[2])
|
|
|
|
|