Move docs over to Schelsi (#1129)
This commit is contained in:
parent
cab6c58923
commit
d1864a8f01
@ -18,8 +18,8 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
|
|||||||
.long("deposit-value")
|
.long("deposit-value")
|
||||||
.value_name("GWEI")
|
.value_name("GWEI")
|
||||||
.takes_value(true)
|
.takes_value(true)
|
||||||
.default_value("3200000000")
|
.default_value("32000000000")
|
||||||
.help("The deposit amount in Gwei (not Wei). Default is 3.2 ETH."),
|
.help("The deposit amount in Gwei (not Wei). Default is 32 ETH."),
|
||||||
)
|
)
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name("send-deposits")
|
Arg::with_name("send-deposits")
|
||||||
|
@ -8,11 +8,11 @@ If you don't have Rust installed already, visit [rustup.rs](https://rustup.rs/)
|
|||||||
|
|
||||||
## 1. Download and install Lighthouse
|
## 1. Download and install Lighthouse
|
||||||
|
|
||||||
Once you have Rust installed, you can install Lighthouse with the following commands (don't forget to use the `testnet5` branch):
|
Once you have Rust installed, you can install Lighthouse with the following commands:
|
||||||
|
|
||||||
1. `git clone https://github.com/sigp/lighthouse.git`
|
1. `git clone https://github.com/sigp/lighthouse.git`
|
||||||
2. `cd lighthouse`
|
2. `cd lighthouse`
|
||||||
3. `git checkout testnet5`
|
3. `git checkout master`
|
||||||
4. `make`
|
4. `make`
|
||||||
|
|
||||||
You may need to open a new terminal window before running `make`.
|
You may need to open a new terminal window before running `make`.
|
||||||
|
@ -21,7 +21,6 @@ There are two, different ways to install and start a Lighthouse validator:
|
|||||||
|
|
||||||
2. [Building from source](./become-a-validator-source.md): this is a little more involved, however it
|
2. [Building from source](./become-a-validator-source.md): this is a little more involved, however it
|
||||||
gives a more hands-on experience.
|
gives a more hands-on experience.
|
||||||
- Note: to connect to the testnet you must build from the `testnet5` branch, `master` will not work.
|
|
||||||
|
|
||||||
Once you've completed **either one** of these steps, you can move onto the next step.
|
Once you've completed **either one** of these steps, you can move onto the next step.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
const NETWORK = "5";
|
const NETWORK = "5";
|
||||||
const NETWORK_NAME = "Goerli Test Network";
|
const NETWORK_NAME = "Goerli Test Network";
|
||||||
const DEPOSIT_CONTRACT = "0xa4d8bee071d57ccf47d2bf9f2cc8dd9151e21ec5";
|
const DEPOSIT_CONTRACT = "0xA15554BF93a052669B511ae29EA21f3581677ac5";
|
||||||
const DEPOSIT_AMOUNT_ETH = "3.2";
|
const DEPOSIT_AMOUNT_ETH = "32";
|
||||||
const GAS_LIMIT = "4000000";
|
const GAS_LIMIT = "4000000";
|
||||||
const DEPOSIT_DATA_BYTES = 420;
|
const DEPOSIT_DATA_BYTES = 420;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user