-
Notifications
You must be signed in to change notification settings - Fork 861
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
WIP Besu Network Creator #36
Closed
NicolasMassart
wants to merge
36
commits into
hyperledger:master
from
NicolasMassart:PAN-3115_network-creator
Closed
WIP Besu Network Creator #36
NicolasMassart
wants to merge
36
commits into
hyperledger:master
from
NicolasMassart:PAN-3115_network-creator
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
Signed-off-by: Nicolas <nicolas.massart@consensys.net>
Signed-off-by: Nicolas <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
suppress warnings on Jackson specific getter as they are indeed used when deserialising Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
…-3115_network-creator
AbdelStark
reviewed
Sep 19, 2019
.../main/java/org/hyperledger/besu/cli/subcommands/networkcreate/generate/DirectoryHandler.java
Outdated
Show resolved
Hide resolved
besu/src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/generate/Generatable.java
Outdated
Show resolved
Hide resolved
besu/src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/generate/Verifiable.java
Show resolved
Hide resolved
besu/src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/generate/Generatable.java
Show resolved
Hide resolved
...in/java/org/hyperledger/besu/cli/subcommands/networkcreate/generate/GenesisFragmentable.java
Show resolved
Hide resolved
.../src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/mapping/MapperAdapter.java
Outdated
Show resolved
Hide resolved
.../src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/mapping/MapperAdapter.java
Outdated
Show resolved
Hide resolved
.../src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/mapping/MapperAdapter.java
Outdated
Show resolved
Hide resolved
.../src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/mapping/MapperAdapter.java
Outdated
Show resolved
Hide resolved
.../main/java/org/hyperledger/besu/cli/subcommands/networkcreate/mapping/TOMLMapperAdapter.java
Outdated
Show resolved
Hide resolved
AbdelStark
reviewed
Sep 20, 2019
besu/src/main/java/org/hyperledger/besu/cli/subcommands/networkcreate/model/Network.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
…subcommand Move resource and change resource handling that was using test resources added final to params Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
updated errorString to StringBuilder and used stream/foreach Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
…s templates Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
big integer balance, more than 9ETH in Wei, have to be defined as hex strings in toml file. Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
and fix a typo Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
This pull request introduces 1 alert when merging d17dd1c into 50c0764 - view on LGTM.com new alerts:
|
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
…-3115_network-creator
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net>
…-3115_network-creator Signed-off-by: Nicolas MASSART <nicolas.massart@consensys.net> # Conflicts: # gradle/versions.gradle
Project moved to something else. We will do it outside of Besu. |
fab-10
added a commit
to fab-10/besu
that referenced
this pull request
Feb 21, 2024
Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
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.
PR description
Create a CLI subcommand to generate a full network configuration and resources to have all the required material to deploy a Besu network.
This is the first stage using an init file and creating network configuration for a basic Besu network.
Next stages will include privacy configuration as well as permissioning.
Fixed Issue(s)
Start fixing PAN-3115