Skip to content

Refactor anchor peer removal logic and update FabricNodeForm #4

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
merged 31 commits into from
Apr 22, 2025
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bb9c48c
Refactor anchor peer removal logic and update FabricNodeForm
dviejokfs Apr 2, 2025
1eceff1
Add error message to internal error
dviejokfs Apr 3, 2025
312c20b
Refactor execSystemctl to check for sudo availability
dviejokfs Apr 3, 2025
d817026
Switch from fabric-sdk-go to fabric-admin-sdk
dviejokfs Apr 5, 2025
e0f150d
Add a temporal replacement for more features for the fork of kfsoftwa…
dviejokfs Apr 5, 2025
a2835c9
Add Fabric node channels feature
dviejokfs Apr 5, 2025
4829e3e
Implement renewal of certificates in Fabric
dviejokfs Apr 5, 2025
26afc4f
Fix tests
dviejokfs Apr 5, 2025
9cc9e16
Update SigningKeyId when signing a certificate
dviejokfs Apr 5, 2025
f436e8f
Add API endpoint for updating Fabric network configuration
dviejokfs Apr 5, 2025
479e4f5
Refactor Fabric network operations and introduce new components
dviejokfs Apr 6, 2025
63ee9e4
Add basic blocks API
dviejokfs Apr 8, 2025
6e20bdc
Enhance service struct to include LogPath
dviejokfs Apr 8, 2025
f0a0193
Fix import channel
dviejokfs Apr 9, 2025
bfb5abf
Add address overrides
dviejokfs Apr 10, 2025
7765433
Enhance CRL management for organizations
dviejokfs Apr 11, 2025
2771b6c
Update configuration management and enhance API functionality
dviejokfs Apr 11, 2025
2696155
Checkpoint
dviejokfs Apr 11, 2025
32e828c
Implement settings management and enhance API functionality
dviejokfs Apr 12, 2025
8fbdd9b
Enhance Certificate Revocation List (CRL) management and API function…
dviejokfs Apr 12, 2025
13620a6
Update
dviejokfs Apr 12, 2025
e408e06
Fix overrides
dviejokfs Apr 14, 2025
3471a69
Enhance channel information retrieval in LocalPeer
dviejokfs Apr 14, 2025
bff3dcd
Update API documentation and enhance block retrieval functionality
dviejokfs Apr 14, 2025
3dcce4a
Update API documentation and enhance user interface for API access
dviejokfs Apr 15, 2025
0eef110
Update dependencies and enhance CI workflow
dviejokfs Apr 15, 2025
b51bd59
Initial setup of besu nodes bulk
dviejokfs Apr 19, 2025
279f2e7
Add error message handling to Node model and update related database …
dviejokfs Apr 20, 2025
ccfb1b6
Fix besu creation mode
dviejokfs Apr 21, 2025
badbe53
Fix edit besu node
dviejokfs Apr 21, 2025
0becad8
Fix security issues
dviejokfs Apr 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ chaindeploy-api-go
chainlaunch
certs
.cursorrules
.env
.env
test-instance
*.db
18 changes: 17 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Node Custom",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}",
"args": [
"serve",
"--data=test-instance",
"--db=test.db"
],
"env": {
"CHAINLAUNCH_USER": "admin",
"CHAINLAUNCH_PASSWORD": "admin123",
"JAVA_HOME": "/opt/homebrew/Cellar/openjdk/23.0.2"
}
},
{
"name": "Node 1",
"type": "go",
Expand All @@ -13,7 +30,6 @@
"args": [
"serve",
"--port=8100",
"--dev=false",
"--db=./data/chainlaunch.db",
],
"env": {
Expand Down
2 changes: 1 addition & 1 deletion cmd/fabric/fabric.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func NewFabricCmd(logger *logger.Logger) *cobra.Command {
rootCmd.AddCommand(
install.NewInstallCmd(logger),
create.NewCreateCmd(logger),
query.NewQueryChaincodeCMD(os.Stdout, os.Stderr),
query.NewQueryChaincodeCMD(os.Stdout, os.Stderr, logger),
invoke.NewInvokeChaincodeCMD(os.Stdout, os.Stderr, logger),
nc.NewNCCmd(logger),
)
Expand Down
Loading
Loading