Ethereum 2.0 Specifications
Go to file
Alex Beregszaszi c24305d5d2
Clarify/remove some comments (#16)
* Remove assert(deposit_count <= 2**64-1) comment
* Remove the outdated TODO comment
* Rephrase some comments

Co-authored-by: MrChico <martin.lundfall@protonmail.com>
2020-05-13 15:56:36 +01:00
.gitattributes Add .gitattributes with Solidity 2020-04-15 14:37:41 +01:00
LICENSE Genesis 2020-04-15 00:32:40 +01:00
Makefile Add Makefile and instructions for the tests in the README 2020-04-15 12:04:31 +01:00
README.md Add Makefile and instructions for the tests in the README 2020-04-15 12:04:31 +01:00
deposit_contract.sol Clarify/remove some comments (#16) 2020-05-13 15:56:36 +01:00

README.md

eth2-deposit-contract

This is a just for fun port of the Vyper Eth 2.0 deposit contract to Solidity.

The motivation is to run the SMTChecker and the new Yul IR generator option (--ir) in the compiler.

THIS IS NOT THE OFFICIAL DEPOSIT CONTRACT. NOT SUITABLE FOR ANY USE

Using this with the tests

  1. Create the deposit_contract.json with running make (this requires solc to be in the path)
  2. Download eth2.0-specs
  3. Replace eth2.0-specs/deposit_contract/contracts/validator_registration.json with deposit_contract.json
  4. In the eth2.0-specs directory run make install_deposit_contract_tester to install the tools needed (make sure to have Python 3.7 and pip installed)
  5. Finally in the eth2.0-specs directory run make test_deposit_contract to execute the tests

The Makefile currently compiles the code without optimisations. To enable optimisations add --optimize to the solc line.