forked from ethereum/consensus-specs
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Deposit contract | ||
|
||
## How to compile the contract? | ||
|
||
Under the `eth2.0-specs` directory, execute: | ||
|
||
```sh | ||
make compile_deposit_contract | ||
``` | ||
|
||
The ABI and bytecode will be updated at [`contracts/validator_registration.json`](./contracts/validator_registration.json). | ||
|
||
## How to set up the testing environment? | ||
|
||
```sh | ||
make install_deposit_contract_test | ||
``` | ||
|
||
## How to run tests? | ||
|
||
```sh | ||
make test_deposit_contract | ||
``` |