-
Notifications
You must be signed in to change notification settings - Fork 780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Merged by Bors] - Add --testnet mainnet and start HTTP server before genesis #1862
Closed
Conversation
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM modulo the block number fix
common/eth2_testnet_config/built_in_testnet_configs/mainnet/deploy_block.txt
Show resolved
Hide resolved
paulhauner
added
ready-for-review
The code is ready for review
and removed
work-in-progress
PR is a work-in-progress
labels
Nov 9, 2020
michaelsproul
approved these changes
Nov 9, 2020
bors r+ |
paulhauner
added
ready-for-merge
This PR is ready to merge.
and removed
ready-for-review
The code is ready for review
labels
Nov 9, 2020
bors bot
pushed a commit
that referenced
this pull request
Nov 9, 2020
## Issue Addressed NA ## Proposed Changes - Adds support for `--testnet mainnet` - Start HTTP server prior to genesis ## Additional Info **Note: This is an incomplete work-in-progress. Use Lighthouse for mainnet at your own risk.** With this PR, you can check the deposits: ```bash lighthouse --testnet mainnet bn --http ``` ```bash curl localhost:5052/lighthouse/eth1/deposit_cache | jq ``` ```json { "data": [ { "deposit_data": { "pubkey": "0x854980aa9bf2e84723e1fa6ef682e3537257984cc9cb1daea2ce6b268084b414f0bb43206e9fa6fd7a202357d6eb2b0d", "withdrawal_credentials": "0x00cacf703c658b802d55baa2a5c1777500ef5051fc084330d2761bcb6ab6182b", "amount": "32000000000", "signature": "0xace226cdfd9da6b1d827c3a6ab93f91f53e8e090eb6ca5ee7c7c5fe3acc75558240ca9291684a2a7af5cac67f0558d1109cc95309f5cdf8c125185ec9dcd22635f900d791316924aed7c40cff2ffccdac0d44cf496853db678c8c53745b3545b" }, "block_number": 3492981, "index": 0, "signature_is_valid": true }, { "deposit_data": { "pubkey": "0x93da03a71bc4ed163c2f91c8a54ea3ba2461383dd615388fd494670f8ce571b46e698fc8d04b49e4a8ffe653f581806b", "withdrawal_credentials": "0x006ebfbb7c8269a78018c8b810492979561d0404d74ba9c234650baa7524dcc4", "amount": "32000000000", "signature": "0x8d1f4a1683f798a76effcc6e2cdb8c3eed5a79123d201c5ecd4ab91f768a03c30885455b8a952aeec3c02110457f97ae0a60724187b6d4129d7c352f2e1ac19b4210daacd892fe4629ad3260ce2911dceae3890b04ed28267b2d8cb831f6a92d" }, "block_number": 3493427, "index": 1, "signature_is_valid": true }, ```
Pull request successfully merged into master. Build succeeded: |
bors
bot
changed the title
Add --testnet mainnet and start HTTP server before genesis
[Merged by Bors] - Add --testnet mainnet and start HTTP server before genesis
Nov 9, 2020
bors bot
pushed a commit
that referenced
this pull request
Nov 10, 2020
## Issue Addressed NA ## Proposed Changes Adds support for the [Toledo](https://github.com/protolambda/toledo) dev-net. ```bash lighthouse --testnet toledo bn --http ``` This is for development only, we do not recommend users to join this testnet. ## Additional Info - ~~Blocked on #1862~~
bors bot
pushed a commit
that referenced
this pull request
Nov 12, 2020
## Proposed Changes Bump the EF tests from `1.0.0-rc.0` to `1.0.0` ## Additional Info Builds on #1862
blacktemplar
added a commit
to blacktemplar/lighthouse
that referenced
this pull request
Nov 17, 2020
## Issue Addressed NA ## Proposed Changes Adds support for the [Toledo](https://github.com/protolambda/toledo) dev-net. ```bash lighthouse --testnet toledo bn --http ``` This is for development only, we do not recommend users to join this testnet. ## Additional Info - ~~Blocked on sigp#1862~~ (cherry picked from commit 9ee71d6)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue Addressed
NA
Proposed Changes
--testnet mainnet
Additional Info
Note: This is an incomplete work-in-progress. Use Lighthouse for mainnet at your own risk.
With this PR, you can check the deposits:
curl localhost:5052/lighthouse/eth1/deposit_cache | jq