mirror of
https://gitlab.com/pulsechaincom/staking-deposit-cli.git
synced 2025-01-10 13:01:22 +00:00
4542faca87
Co-authored-by: Hsiao-Wei Wang <hwwang156@gmail.com>
63 lines
2.0 KiB
Python
63 lines
2.0 KiB
Python
import json
|
|
from eth_typing import (
|
|
BLSPubkey,
|
|
BLSSignature,
|
|
)
|
|
from typing import Any, Dict
|
|
|
|
from py_ecc.bls import G2ProofOfPossession as bls
|
|
|
|
from eth2deposit.utils.ssz import (
|
|
compute_deposit_domain,
|
|
compute_signing_root,
|
|
DepositData,
|
|
DepositMessage,
|
|
)
|
|
from eth2deposit.utils.constants import (
|
|
MAX_DEPOSIT_AMOUNT,
|
|
MIN_DEPOSIT_AMOUNT,
|
|
)
|
|
|
|
|
|
def verify_deposit_data_json(filefolder: str) -> bool:
|
|
"""
|
|
Validate every deposit found in the deposit-data JSON file folder.
|
|
"""
|
|
with open(filefolder, 'r') as f:
|
|
deposit_json = json.load(f)
|
|
return all([validate_deposit(deposit) for deposit in deposit_json])
|
|
return False
|
|
|
|
|
|
def validate_deposit(deposit_data_dict: Dict[str, Any]) -> bool:
|
|
'''
|
|
Checks whether a deposit is valid based on the eth2 rules.
|
|
https://github.com/ethereum/eth2.0-specs/blob/dev/specs/phase0/beacon-chain.md#deposits
|
|
'''
|
|
pubkey = BLSPubkey(bytes.fromhex(deposit_data_dict['pubkey']))
|
|
withdrawal_credentials = bytes.fromhex(deposit_data_dict['withdrawal_credentials'])
|
|
amount = deposit_data_dict['amount']
|
|
signature = BLSSignature(bytes.fromhex(deposit_data_dict['signature']))
|
|
deposit_message_root = bytes.fromhex(deposit_data_dict['deposit_data_root'])
|
|
fork_version = bytes.fromhex(deposit_data_dict['fork_version'])
|
|
|
|
# Verify deposit amount
|
|
if not MIN_DEPOSIT_AMOUNT < amount <= MAX_DEPOSIT_AMOUNT:
|
|
return False
|
|
|
|
# Verify deposit signature && pubkey
|
|
deposit_message = DepositMessage(pubkey=pubkey, withdrawal_credentials=withdrawal_credentials, amount=amount)
|
|
domain = compute_deposit_domain(fork_version)
|
|
signing_root = compute_signing_root(deposit_message, domain)
|
|
if not bls.Verify(pubkey, signing_root, signature):
|
|
return False
|
|
|
|
# Verify Deposit Root
|
|
signed_deposit = DepositData(
|
|
pubkey=pubkey,
|
|
withdrawal_credentials=withdrawal_credentials,
|
|
amount=amount,
|
|
signature=signature,
|
|
)
|
|
return signed_deposit.hash_tree_root == deposit_message_root
|