mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2024-12-25 04:47:18 +00:00
37fb6de225
* Add test_cli * Check folder
13 lines
331 B
Python
13 lines
331 B
Python
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
|
|
|
|
WORD_LISTS_PATH = os.path.join('eth2deposit', 'key_handling', 'key_derivation', 'word_lists')
|
|
|
|
DEFAULT_VALIDATOR_KEYS_FOLDER_NAME = 'validator_keys'
|