staking-deposit-cli/src/utils/constants.py

11 lines
267 B
Python
Raw Normal View History

2020-02-28 21:02:11 +00:00
import os
DOMAIN_DEPOSIT = bytes.fromhex('03000000')
GENESIS_FORK_VERSION = bytes.fromhex('00000000')
MIN_DEPOSIT_AMOUNT = 2 ** 0 * 10 ** 9
MAX_DEPOSIT_AMOUNT = 2 ** 5 * 10 ** 9
2020-02-28 21:07:04 +00:00
WORD_LISTS_PATH = os.path.join('src','key_handling', 'key_derivation', 'word_lists')