eth2.0-specs/test_libs/pyspec/eth2spec/test/helpers/transfers.py

56 lines
1.8 KiB
Python
Raw Normal View History

2019-05-15 16:36:32 +00:00
# Access constants from spec pkg reference.
import eth2spec.phase0.spec as spec
2019-05-20 17:38:18 +00:00
from eth2spec.phase0.spec import get_current_epoch, get_active_validator_indices, Transfer, get_domain
2019-05-15 16:36:32 +00:00
from eth2spec.test.helpers.keys import pubkeys, privkeys
from eth2spec.test.helpers.state import get_balance
from eth2spec.utils.bls import bls_sign
2019-05-31 23:51:09 +00:00
from eth2spec.utils.ssz.ssz_impl import signing_root
2019-05-15 16:36:32 +00:00
2019-05-15 17:31:02 +00:00
def get_valid_transfer(state, slot=None, sender_index=None, amount=None, fee=None, signed=False):
2019-05-15 16:36:32 +00:00
if slot is None:
slot = state.slot
current_epoch = get_current_epoch(state)
if sender_index is None:
sender_index = get_active_validator_indices(state, current_epoch)[-1]
recipient_index = get_active_validator_indices(state, current_epoch)[0]
transfer_pubkey = pubkeys[-1]
transfer_privkey = privkeys[-1]
if fee is None:
fee = get_balance(state, sender_index) // 32
if amount is None:
amount = get_balance(state, sender_index) - fee
transfer = Transfer(
sender=sender_index,
recipient=recipient_index,
amount=amount,
fee=fee,
slot=slot,
pubkey=transfer_pubkey,
)
2019-05-15 17:31:02 +00:00
if signed:
sign_transfer(state, transfer, transfer_privkey)
# ensure withdrawal_credentials reproducible
state.validator_registry[transfer.sender].withdrawal_credentials = (
spec.BLS_WITHDRAWAL_PREFIX_BYTE + spec.hash(transfer.pubkey)[1:]
)
return transfer
def sign_transfer(state, transfer, privkey):
2019-05-15 16:36:32 +00:00
transfer.signature = bls_sign(
message_hash=signing_root(transfer),
2019-05-15 17:31:02 +00:00
privkey=privkey,
2019-05-15 16:36:32 +00:00
domain=get_domain(
state=state,
domain_type=spec.DOMAIN_TRANSFER,
message_epoch=get_current_epoch(state),
)
)
return transfer