2019-05-27 05:15:10 +00:00
|
|
|
MIN_DEPOSIT_AMOUNT: constant(uint256) = 1000000000 # Gwei
|
|
|
|
DEPOSIT_CONTRACT_TREE_DEPTH: constant(uint256) = 32
|
|
|
|
MAX_64_BIT_VALUE: constant(uint256) = 18446744073709551615 # 2**64 - 1
|
2019-05-27 10:25:31 +00:00
|
|
|
PUBKEY_LENGTH: constant(uint256) = 48 # bytes
|
|
|
|
WITHDRAWAL_CREDENTIALS_LENGTH: constant(uint256) = 32 # bytes
|
|
|
|
SIGNATURE_LENGTH: constant(uint256) = 96 # bytes
|
|
|
|
MAX_DEPOSIT_COUNT: constant(uint256) = 4294967295 # 2**DEPOSIT_CONTRACT_TREE_DEPTH - 1
|
2019-05-27 05:15:10 +00:00
|
|
|
|
|
|
|
Deposit: event({
|
|
|
|
pubkey: bytes[48],
|
|
|
|
withdrawal_credentials: bytes[32],
|
|
|
|
amount: bytes[8],
|
|
|
|
signature: bytes[96],
|
|
|
|
merkle_tree_index: bytes[8],
|
|
|
|
})
|
|
|
|
|
|
|
|
zerohashes: bytes32[DEPOSIT_CONTRACT_TREE_DEPTH]
|
|
|
|
branch: bytes32[DEPOSIT_CONTRACT_TREE_DEPTH]
|
|
|
|
deposit_count: uint256
|
|
|
|
|
|
|
|
|
|
|
|
@public
|
|
|
|
def __init__():
|
|
|
|
for i in range(DEPOSIT_CONTRACT_TREE_DEPTH - 1):
|
|
|
|
self.zerohashes[i+1] = sha256(concat(self.zerohashes[i], self.zerohashes[i]))
|
|
|
|
|
|
|
|
@public
|
|
|
|
@constant
|
|
|
|
def to_little_endian_64(value: uint256) -> bytes[8]:
|
|
|
|
assert value <= MAX_64_BIT_VALUE
|
|
|
|
|
|
|
|
# array access for bytes[] not currently supported in vyper so
|
|
|
|
# reversing bytes using bitwise uint256 manipulations
|
|
|
|
y: uint256 = 0
|
|
|
|
x: uint256 = value
|
|
|
|
for i in range(8):
|
|
|
|
y = shift(y, 8)
|
|
|
|
y = y + bitwise_and(x, 255)
|
|
|
|
x = shift(x, -8)
|
|
|
|
|
|
|
|
return slice(convert(y, bytes32), start=24, len=8)
|
|
|
|
|
|
|
|
@public
|
|
|
|
@constant
|
|
|
|
def get_deposit_root() -> bytes32:
|
|
|
|
root: bytes32 = 0x0000000000000000000000000000000000000000000000000000000000000000
|
|
|
|
size: uint256 = self.deposit_count
|
|
|
|
for h in range(DEPOSIT_CONTRACT_TREE_DEPTH):
|
|
|
|
if bitwise_and(size, 1) == 1:
|
|
|
|
root = sha256(concat(self.branch[h], root))
|
|
|
|
else:
|
|
|
|
root = sha256(concat(root, self.zerohashes[h]))
|
|
|
|
size /= 2
|
|
|
|
return root
|
|
|
|
|
|
|
|
@public
|
|
|
|
@constant
|
|
|
|
def get_deposit_count() -> bytes[8]:
|
|
|
|
return self.to_little_endian_64(self.deposit_count)
|
|
|
|
|
|
|
|
@payable
|
|
|
|
@public
|
2019-05-27 10:25:31 +00:00
|
|
|
def deposit(pubkey: bytes[PUBKEY_LENGTH],
|
|
|
|
withdrawal_credentials: bytes[WITHDRAWAL_CREDENTIALS_LENGTH],
|
|
|
|
signature: bytes[SIGNATURE_LENGTH]):
|
|
|
|
# Prevent edge case in computing `self.branch` when `self.deposit_count == MAX_DEPOSIT_COUNT`
|
|
|
|
# NOTE: reaching this point with the constants as currently defined is impossible due to the
|
|
|
|
# uni-directional nature of transfers from eth1 to eth2 and the total ether supply (< 130M).
|
|
|
|
assert self.deposit_count < MAX_DEPOSIT_COUNT
|
|
|
|
|
|
|
|
assert len(pubkey) == PUBKEY_LENGTH
|
|
|
|
assert len(withdrawal_credentials) == WITHDRAWAL_CREDENTIALS_LENGTH
|
|
|
|
assert len(signature) == SIGNATURE_LENGTH
|
|
|
|
|
2019-05-27 05:15:10 +00:00
|
|
|
deposit_amount: uint256 = msg.value / as_wei_value(1, "gwei")
|
|
|
|
assert deposit_amount >= MIN_DEPOSIT_AMOUNT
|
|
|
|
amount: bytes[8] = self.to_little_endian_64(deposit_amount)
|
|
|
|
|
|
|
|
index: uint256 = self.deposit_count
|
|
|
|
|
|
|
|
# add deposit to merkle tree
|
|
|
|
i: int128 = 0
|
2019-05-30 02:08:19 +00:00
|
|
|
size: uint256 = index + 1
|
2019-05-27 05:15:10 +00:00
|
|
|
for _ in range(DEPOSIT_CONTRACT_TREE_DEPTH):
|
2019-05-30 02:08:19 +00:00
|
|
|
if bitwise_and(size, 1) == 1:
|
2019-05-27 05:15:10 +00:00
|
|
|
break
|
|
|
|
i += 1
|
2019-05-30 02:08:19 +00:00
|
|
|
size /= 2
|
2019-05-27 05:15:10 +00:00
|
|
|
|
|
|
|
zero_bytes_32: bytes32
|
|
|
|
pubkey_root: bytes32 = sha256(concat(pubkey, slice(zero_bytes_32, start=0, len=16)))
|
|
|
|
signature_root: bytes32 = sha256(concat(
|
|
|
|
sha256(slice(signature, start=0, len=64)),
|
|
|
|
sha256(concat(slice(signature, start=64, len=32), zero_bytes_32))
|
|
|
|
))
|
|
|
|
value: bytes32 = sha256(concat(
|
|
|
|
sha256(concat(pubkey_root, withdrawal_credentials)),
|
|
|
|
sha256(concat(
|
|
|
|
amount,
|
|
|
|
slice(zero_bytes_32, start=0, len=24),
|
|
|
|
signature_root,
|
|
|
|
))
|
|
|
|
))
|
|
|
|
for j in range(DEPOSIT_CONTRACT_TREE_DEPTH):
|
|
|
|
if j < i:
|
|
|
|
value = sha256(concat(self.branch[j], value))
|
|
|
|
else:
|
|
|
|
break
|
|
|
|
self.branch[i] = value
|
|
|
|
|
|
|
|
self.deposit_count += 1
|
|
|
|
log.Deposit(
|
|
|
|
pubkey,
|
|
|
|
withdrawal_credentials,
|
|
|
|
amount,
|
|
|
|
signature,
|
|
|
|
self.to_little_endian_64(index),
|
|
|
|
)
|