Ethereum 2.0 Specifications
Go to file
Alex Beregszaszi d1a5556a74
Compare against eth2.0-specs v0.11.2 (#30)
2020-05-15 13:17:14 +01:00
lib Add unit test and fuzzing against Vyper (#20) 2020-05-14 20:58:48 +01:00
tests Add unit test and fuzzing against Vyper (#20) 2020-05-14 20:58:48 +01:00
.gitattributes Add .gitattributes with Solidity 2020-04-15 14:37:41 +01:00
.gitmodules Add unit test and fuzzing against Vyper (#20) 2020-05-14 20:58:48 +01:00
LICENSE Genesis 2020-04-15 00:32:40 +01:00
Makefile Enable optimizer and set to 5m runs (#28) 2020-05-15 13:13:31 +01:00
README.md Add unit test and fuzzing against Vyper (#20) 2020-05-14 20:58:48 +01:00
circle.yml Compare against eth2.0-specs v0.11.2 (#30) 2020-05-15 13:17:14 +01:00
deposit_contract.sol Move require(deposit_count) statement to where the value is used (post hash calculation) (#23) 2020-05-15 13:14:39 +01:00
shell.nix Add unit test and fuzzing against Vyper (#20) 2020-05-14 20:58:48 +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.

Running randomized dapp tests:

Install the latest version of dapp by following the instructions at dapp.tools. Then run

make test