@@ -28,53 +28,53 @@ code --install-extension Hyperledger-Fabric-Debugger.vsix
2828Open VSCode and navigate to the Run & Debug tab on the sidebar.
2929
3030Click the "Run Extension" button.
31- ![ Start extension] ( ./extension-start.png )
31+ ![ Start extension] ( ./images/ extension-start.png )
3232
3333This will open the Extension Development Host, where the debugger's custom UI will appear.
34- ![ Extension UI Launch] ( ./extension-ui-launch.png )
34+ ![ Extension UI Launch] ( ./images/ extension-ui-launch.png )
3535
3636## 🧩 Using the Extension Features
3737Once the extension UI is open, you’ll see the main dashboard with the following actions:
3838
3939- ** Upload Network Configuration** (e.g., connection profile)
40- ![ Upload Network] ( ./upload-network.png )
40+ ![ Upload Network] ( ./images/ upload-network.png )
4141
4242- ** Upload Wallet**
43- ![ Upload Wallet] ( ./upload-wallet.png )
43+ ![ Upload Wallet] ( ./images/ upload-wallet.png )
4444
4545- ** Start Local Network** (e.g., using fabric-samples)
4646
4747- ** Query Blocks**
48- ![ Query Blocks] ( ./block-query.png )
48+ ![ Query Blocks] ( ./images/ block-query.png )
4949
5050## 🐛 Running the Debugger
5151To start debugging your chaincode:
5252
53531 . Click ** Run & Debug** .
5454
55552 . Select the configuration: ** Debug Hyperledger Fabric** .
56- ![ Start Debugger] ( ./debugger-start.png )
56+ ![ Start Debugger] ( ./images/ debugger-start.png )
5757
58583 . A file prompt will appear — select your ` chaincode.go ` file.
59- ![ File Prompt Window] ( ./select-chaincode-file.png )
59+ ![ File Prompt Window] ( ./images/ select-chaincode-file.png )
6060
61614 . The debugger will attach using ** Delve** .
6262
63635 . Set breakpoints in your code.
64- ![ Debugger attached] ( ./debugger-launched-message.png )
64+ ![ Debugger attached] ( ./images/ debugger-launched-message.png )
6565
6666You’ll see the standard VSCode debug interface:
6767
6868Variables
69- ![ Debugger interface] ( ./variables-interface.png )
69+ ![ Debugger interface] ( ./images/ variables-interface.png )
7070
7171Watch expressions
7272Call stack
7373Breakpoints panel
74- ![ Debugger interface] ( ./other-interface.png )
74+ ![ Debugger interface] ( ./images/ other-interface.png )
7575
7676** Debug Console output from Delve**
77- ![ Debugger Message] ( ./delve-output.png )
77+ ![ Debugger Message] ( ./images/ delve-output.png )
7878
79796 . Use a Fabric client to invoke chaincode.
8080
0 commit comments