-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: command to create node from existing network, fix select node & pk e2e test #513
feat: command to create node from existing network, fix select node & pk e2e test #513
Conversation
Reviewer's Guide by SourceryThis pull request introduces a new command that allows users to create a blockchain node from an existing network. It also includes updates to the select node and private key end-to-end tests to reflect the new functionality and changes to the graph middleware create command to no longer require a storage ID. Sequence diagram for creating a blockchain node from existing networksequenceDiagram
actor User
participant CLI
participant SettleMint
participant Network
User->>CLI: Execute create blockchain-node command
alt No application specified
CLI-->>User: Request application ID
end
alt No network specified
CLI->>SettleMint: Get available networks
SettleMint-->>CLI: Return networks list
CLI-->>User: Prompt to select network
end
User->>CLI: Provide node configuration
CLI->>SettleMint: Create blockchain node
SettleMint->>Network: Add node to network
Network-->>SettleMint: Confirm node creation
SettleMint-->>CLI: Return node details
CLI-->>User: Display success and update env
Class diagram for the new blockchain node creation commandsclassDiagram
class Command {
+alias(string)
+description(string)
+addCommand(Command)
+option(string, string)
+action(function)
}
class BlockchainNodeCreateCommand {
+alias: 'bn'
+description: string
}
class BlockchainNodeBesuCreateCommand {
+name: 'besu'
+alias: 'b'
+execute(cmd, baseAction)
-blockchainNetworkPrompt()
}
Command <|-- BlockchainNodeCreateCommand
BlockchainNodeCreateCommand o-- BlockchainNodeBesuCreateCommand
note for BlockchainNodeBesuCreateCommand "New command for creating
Besu blockchain nodes
from existing networks"
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
…-existing-network * main: chore(deps): update dependency @arethetypeswrong/cli to v0.17.2 (#511) chore(deps): update dependency lefthook to v1.10.0 (#512) chore(deps): update nextjs monorepo to v15.1.2 (#510) chore(deps): update dependency knip to v5.41.1 (#509) chore: update renovate.json chore: update package versions [skip ci] fix: skip broken test feat: add command to create minio storage (#507) fix: add options for forge / hardhat commands (#506)
📦 Packages
|
… test
6ab3ea0
to
ebd524e
Compare
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.
Hey @snigdha920 - I've reviewed your changes - here's some feedback:
Overall Comments:
- Consider keeping the deployment status checks (--wait flags and status verification) for resource creation to ensure resources are fully deployed before proceeding. Removing these could lead to race conditions if subsequent operations assume resources are ready.
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟡 Review instructions: 2 issues found
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
…-existing-network
@@ -77,7 +77,7 @@ export function getCreateCommand({ | |||
const autoAccept = !!acceptDefaults || isInCi; | |||
const env: Partial<DotEnv> = await loadEnv(false, !!prod); | |||
|
|||
const instance = await instancePrompt(env, autoAccept); | |||
const instance = env.SETTLEMINT_INSTANCE ?? (await instancePrompt(env, autoAccept)); |
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.
this is redundant, the instanceprompt will automatically return this env variable
@@ -177,7 +206,6 @@ async function createBlockchainNodeMinioAndIpfs() { | |||
CLUSTER_REGION, | |||
"--accept-defaults", | |||
"--default", | |||
"--wait", |
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.
keep the wait, eg if we run codegen in a test and the resource is not deployed the test will fail
Summary by Sourcery
Add support for creating blockchain nodes from the CLI. Update the select node and private key E2E test to reflect the new node creation options.
New Features:
Tests: