Skip to content

Instantly share code, notes, and snippets.

@oneleo
oneleo / prev_randao.py
Created April 28, 2023 03:19 — forked from a2468834/prev_randao.py
Calculate next slot prev_randao
import hashlib
import string
##### Helper function #####
ssz_byteorder = "little" # https://github.com/ethereum/consensus-specs/blob/dev/ssz/simple-serialize.md
# https://github.com/ethereum/consensus-specs/blob/dev/ssz/simple-serialize.md#aliases
def isBytesN(input_):
# BytesN := Vector[uint8, N]
assert isinstance(input_, list)