forked from IBM-Blockchain/blockchain-vscode-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·1478 lines (1478 loc) · 66.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "ibm-blockchain-platform",
"displayName": "IBM Blockchain Platform",
"description": "End to end extension for Hyperledger Fabric developers. Develop and test your blockchain smart contracts and client applications on your local machine, and package your projects for deployment into IBM Blockchain Platform runtimes.",
"author": "IBMBlockchain",
"keywords": [
"blockchain",
"smart contracts",
"distributed ledger technology",
"Hyperledger Fabric",
"IBM Blockchain Platform"
],
"homepage": "https://www.ibm.com/blockchain",
"license": "Apache-2.0",
"version": "1.0.16",
"publisher": "IBMBlockchain",
"icon": "resources/blockchain_marketplace.png",
"galleryBanner": {
"color": "#313131",
"theme": "dark"
},
"production": false,
"engines": {
"vscode": "^1.38.0"
},
"repository": {
"type": "git",
"url": "https://github.com/IBM-Blockchain/blockchain-vscode-extension"
},
"categories": [
"Programming Languages",
"Debuggers",
"Other"
],
"activationEvents": [
"*"
],
"actualActivationEvents": {
"other": [
"onDebug"
],
"onView": [
"gatewayExplorer",
"environmentExplorer",
"aPackagesExplorer",
"walletExplorer"
],
"onCommand": [
"gatewaysExplorer.addGatewayEntry",
"gatewaysExplorer.deleteGatewayEntry",
"gatewaysExplorer.connectEntry",
"gatewaysExplorer.disconnectEntry",
"gatewaysExplorer.refreshEntry",
"gatewaysExplorer.testSmartContractEntry",
"gatewaysExplorer.testAllSmartContractEntry",
"gatewaysExplorer.submitTransactionEntry",
"gatewaysExplorer.evaluateTransactionEntry",
"gatewaysExplorer.associateWallet",
"gatewaysExplorer.dissociateWallet",
"gatewaysExplorer.exportConnectionProfileEntry",
"gatewaysExplorer.exportConnectionProfileConnectedEntry",
"aPackagesExplorer.createSmartContractProjectEntry",
"aPackagesExplorer.packageSmartContractProjectEntry",
"aPackagesExplorer.deleteSmartContractPackageEntry",
"aPackagesExplorer.exportSmartContractPackageEntry",
"aPackagesExplorer.importSmartContractPackageEntry",
"aPackagesExplorer.refreshEntry",
"environmentExplorer.addEnvironmentEntry",
"environmentExplorer.importNodesEntry",
"environmentExplorer.deleteEnvironmentEntry",
"environmentExplorer.associateIdentityNodeEntry",
"environmentExplorer.replaceAssociatedIdentityEntry",
"environmentExplorer.deleteNodeEntry",
"environmentExplorer.connectEntry",
"environmentExplorer.disconnectEntry",
"environmentExplorer.installSmartContractEntry",
"environmentExplorer.instantiateSmartContractEntry",
"environmentExplorer.refreshEntry",
"environmentExplorer.startFabricRuntime",
"environmentExplorer.stopFabricRuntime",
"environmentExplorer.restartFabricRuntime",
"environmentExplorer.teardownFabricRuntime",
"environmentExplorer.openNewTerminal",
"environmentExplorer.upgradeSmartContractEntry",
"environmentExplorer.createNewIdentityEntry",
"walletExplorer.refreshEntry",
"walletExplorer.addWalletEntry",
"walletExplorer.addWalletIdentityEntry",
"walletExplorer.removeWalletEntry",
"walletExplorer.deleteIdentityEntry",
"walletExplorer.exportWalletEntry",
"extensionHome.open",
"preReq.open",
"tutorialGallery.open",
"transactionPage.open"
]
},
"main": "./build/extension/extension",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "blockchain-explorer",
"title": "IBM Blockchain Platform",
"icon": "resources/blockchain_activitybar.svg"
}
]
},
"views": {
"blockchain-explorer": [
{
"id": "aPackagesExplorer",
"name": "Smart Contracts"
},
{
"id": "environmentExplorer",
"name": "Fabric Environments"
},
{
"id": "gatewaysExplorer",
"name": "Fabric Gateways"
},
{
"id": "walletExplorer",
"name": "Fabric Wallets"
}
]
},
"configuration": {
"type": "object",
"title": "Blockchain configuration",
"properties": {
"ibm-blockchain-platform.fabric.gateways": {
"type": "array",
"default": [],
"description": "Gateways for connecting to a Blockchain network"
},
"ibm-blockchain-platform.fabric.environments": {
"type": "array",
"default": [],
"description": "Environments for connecting to a Blockchain network"
},
"ibm-blockchain-platform.fabric.wallets": {
"type": "array",
"default": [],
"description": "Wallets for connecting to a Blockchain network"
},
"ibm-blockchain-platform.fabric.runtime": {
"type": "object",
"default": {},
"description": "Configurations for the local Blockchain managed runtime"
},
"ibm-blockchain-platform.ext.directory": {
"type": "string",
"default": "~/.fabric-vscode",
"description": "Configurations for IBM Blockchain extension directory"
},
"ibm-blockchain-platform.ext.repositories": {
"type": "array",
"default": [],
"description": "Repositories for accessing samples stored on disk"
},
"ibm-blockchain-platform.home.showOnStartup": {
"type": "boolean",
"default": true,
"description": "Show home page when clicking on extension for the first time"
},
"ibm-blockchain-platform.fabric.chaincode.timeout": {
"type": "integer",
"default": 120,
"description": "Used to configure the Local Fabric's chaincode timeout value (seconds)"
},
"ibm-blockchain-platform.fabric.client.timeout": {
"type": "integer",
"default": 120,
"description": "Used to configure the client timeout value (seconds)",
"minimum": 45
},
"ibm-blockchain-platform.ext.bypassPreReqs": {
"type": "boolean",
"default": false,
"description": "Bypass the prerequisites check"
}
}
},
"commands": [
{
"command": "debug.commandList",
"title": "Debug Command List",
"category": "IBM Blockchain Platform",
"icon": {
"light": "resources/blockchain_marketplace.png",
"dark": "resources/blockchain_marketplace.png"
}
},
{
"command": "sample.open",
"title": "Open Sample",
"category": "IBM Blockchain Platform"
},
{
"command": "tutorial.open",
"title": "Open Tutorial",
"category": "IBM Blockchain Platform"
},
{
"command": "extensionHome.open",
"title": "View Homepage",
"category": "IBM Blockchain Platform",
"icon": {
"light": "resources/icon_light.svg",
"dark": "resources/icon_dark.svg"
}
},
{
"command": "preReq.open",
"title": "View Prerequisites",
"category": "IBM Blockchain Platform"
},
{
"command": "tutorialGallery.open",
"title": "View Tutorial Gallery",
"category": "IBM Blockchain Platform"
},
{
"command": "transactionPage.open",
"title": "Open Transaction View",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.refreshEntry",
"title": "Refresh Fabric Gateways",
"icon": {
"light": "resources/light/refresh_light.svg",
"dark": "resources/dark/refresh.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.connectEntry",
"title": "Connect Via Gateway",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.disconnectEntry",
"title": "Disconnect from Gateway",
"icon": {
"light": "resources/light/back_light.svg",
"dark": "resources/dark/back.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.addGatewayEntry",
"title": "Add Gateway",
"icon": {
"light": "resources/light/add_light.svg",
"dark": "resources/dark/add.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.deleteGatewayEntry",
"title": "Delete Gateway",
"category": "IBM Blockchain Platform"
},
{
"command": "walletExplorer.addWalletIdentityEntry",
"title": "Add Identity To Wallet",
"category": "IBM Blockchain Platform"
},
{
"command": "aPackagesExplorer.createSmartContractProjectEntry",
"title": "%blockchain.createSmartContractProjectEntry.title%",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.addEnvironmentEntry",
"title": "Add Environment",
"icon": {
"light": "resources/light/add_light.svg",
"dark": "resources/dark/add.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.importNodesEntry",
"title": "Import nodes into environment",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.deleteEnvironmentEntry",
"title": "Delete Environment",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.associateIdentityNodeEntry",
"title": "Associate Identitiy with a Node",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.replaceAssociatedIdentityEntry",
"title": "Replace Identity Associated with a node",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.deleteNodeEntry",
"title": "Delete Node",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.connectEntry",
"title": "Connect to a Fabric Environment",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.disconnectEntry",
"title": "Disconnect from a Fabric Environment",
"icon": {
"light": "resources/light/back_light.svg",
"dark": "resources/dark/back.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.refreshEntry",
"title": "Refresh Environments",
"icon": {
"light": "resources/light/refresh_light.svg",
"dark": "resources/dark/refresh.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.installSmartContractEntry",
"title": "Install Smart Contract",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.instantiateSmartContractEntry",
"title": "Instantiate Smart Contract",
"category": "IBM Blockchain Platform"
},
{
"command": "aPackagesExplorer.refreshEntry",
"title": "Refresh Smart Contracts",
"icon": {
"light": "resources/light/refresh_light.svg",
"dark": "resources/dark/refresh.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "aPackagesExplorer.packageSmartContractProjectEntry",
"title": "Package Open Project",
"icon": {
"light": "resources/light/add_light.svg",
"dark": "resources/dark/add.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.startFabricRuntime",
"title": "Start Fabric Runtime",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.stopFabricRuntime",
"title": "Stop Fabric Runtime",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.restartFabricRuntime",
"title": "Restart Fabric Runtime",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.teardownFabricRuntime",
"title": "Teardown Fabric Runtime",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.openNewTerminal",
"title": "Open New Terminal",
"category": "IBM Blockchain Platform"
},
{
"command": "aPackagesExplorer.deleteSmartContractPackageEntry",
"title": "Delete Package",
"category": "IBM Blockchain Platform"
},
{
"command": "aPackagesExplorer.exportSmartContractPackageEntry",
"title": "Export Package",
"category": "IBM Blockchain Platform"
},
{
"command": "aPackagesExplorer.importSmartContractPackageEntry",
"title": "Import a Package",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.testAllSmartContractEntry",
"title": "Generate Tests For All Smart Contracts",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.testSmartContractEntry",
"title": "Generate Tests for Smart Contract(s)",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.upgradeSmartContractEntry",
"title": "Upgrade Smart Contract",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.submitTransactionEntry",
"title": "Submit Transaction",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.evaluateTransactionEntry",
"title": "Evaluate Transaction",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.exportConnectionProfileEntry",
"title": "Export Connection Profile",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.exportConnectionProfileConnectedEntry",
"title": "Export Connection Profile",
"category": "IBM Blockchain Platform"
},
{
"command": "environmentExplorer.createNewIdentityEntry",
"title": "Create Identity (register and enroll)",
"category": "IBM Blockchain Platform"
},
{
"command": "walletExplorer.refreshEntry",
"title": "Refresh Fabric Wallets",
"icon": {
"light": "resources/light/refresh_light.svg",
"dark": "resources/dark/refresh.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "walletExplorer.addWalletEntry",
"title": "Add Wallet",
"icon": {
"light": "resources/light/add_light.svg",
"dark": "resources/dark/add.svg"
},
"category": "IBM Blockchain Platform"
},
{
"command": "walletExplorer.removeWalletEntry",
"title": "Remove Wallet",
"category": "IBM Blockchain Platform"
},
{
"command": "walletExplorer.deleteIdentityEntry",
"title": "Delete Identity",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.associateWallet",
"title": "Associate A Wallet",
"category": "IBM Blockchain Platform"
},
{
"command": "gatewaysExplorer.dissociateWallet",
"title": "Dissociate A Wallet",
"category": "IBM Blockchain Platform"
},
{
"command": "walletExplorer.exportWalletEntry",
"title": "Export Wallet",
"category": "IBM Blockchain Platform"
}
],
"menus": {
"editor/title": [
{
"when": "!false",
"command": "extensionHome.open",
"alt": "extensionHome.open",
"group": "navigation"
}
],
"debug/toolbar": [
{
"command": "debug.commandList",
"when": "blockchain-debug",
"group": "blockchain"
}
],
"commandPalette": [
{
"command": "environmentExplorer.startFabricRuntime"
},
{
"command": "environmentExplorer.stopFabricRuntime"
},
{
"command": "environmentExplorer.restartFabricRuntime"
},
{
"command": "environmentExplorer.teardownFabricRuntime"
},
{
"command": "environmentExplorer.openNewTerminal"
},
{
"command": "sample.open",
"when": "false"
},
{
"command": "tutorial.open",
"when": "false"
},
{
"command": "debug.commandList",
"when": "false"
},
{
"command": "gatewaysExplorer.exportConnectionProfileConnectedEntry",
"when": "false"
},
{
"command": "transactionPage.open",
"when": "false"
}
],
"view/title": [
{
"command": "gatewaysExplorer.addGatewayEntry",
"when": "view == gatewaysExplorer && !blockchain-gateway-connected",
"group": "navigation"
},
{
"command": "gatewaysExplorer.disconnectEntry",
"when": "view == gatewaysExplorer && blockchain-gateway-connected",
"group": "navigation"
},
{
"command": "gatewaysExplorer.refreshEntry",
"when": "view == gatewaysExplorer",
"group": "navigation"
},
{
"command": "gatewaysExplorer.exportConnectionProfileConnectedEntry",
"when": "view == gatewaysExplorer && blockchain-gateway-connected"
},
{
"command": "environmentExplorer.addEnvironmentEntry",
"when": "view == environmentExplorer && !blockchain-environment-connected && !blockchain-environment-setup",
"group": "navigation"
},
{
"command": "environmentExplorer.refreshEntry",
"when": "view == environmentExplorer",
"group": "navigation"
},
{
"command": "environmentExplorer.disconnectEntry",
"when": "view == environmentExplorer && blockchain-environment-connected || view == environmentExplorer && blockchain-environment-setup",
"group": "navigation"
},
{
"command": "aPackagesExplorer.refreshEntry",
"when": "view == aPackagesExplorer",
"group": "navigation"
},
{
"command": "aPackagesExplorer.packageSmartContractProjectEntry",
"when": "view == aPackagesExplorer",
"group": "blockchain"
},
{
"command": "aPackagesExplorer.createSmartContractProjectEntry",
"when": "view == aPackagesExplorer",
"group": "blockchain"
},
{
"command": "aPackagesExplorer.importSmartContractPackageEntry",
"when": "view == aPackagesExplorer",
"group": "blockchain"
},
{
"command": "environmentExplorer.stopFabricRuntime",
"when": "view == environmentExplorer && blockchain-runtime-connected",
"group": "blockchain"
},
{
"command": "environmentExplorer.restartFabricRuntime",
"when": "view == environmentExplorer && blockchain-runtime-connected",
"group": "blockchain"
},
{
"command": "environmentExplorer.teardownFabricRuntime",
"when": "view == environmentExplorer && blockchain-runtime-connected",
"group": "blockchain"
},
{
"command": "walletExplorer.refreshEntry",
"when": "view == walletExplorer",
"group": "navigation"
},
{
"command": "walletExplorer.addWalletEntry",
"when": "view == walletExplorer",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "gatewaysExplorer.deleteGatewayEntry",
"when": "view == gatewaysExplorer && viewItem == blockchain-gateway-associated-item || viewItem == blockchain-gateway-dissociated-item"
},
{
"command": "gatewaysExplorer.exportConnectionProfileEntry",
"when": "view == gatewaysExplorer && viewItem == blockchain-gateway-associated-item || viewItem == blockchain-gateway-dissociated-item || viewItem == blockchain-local-gateway-item"
},
{
"command": "walletExplorer.addWalletIdentityEntry",
"when": "view == walletExplorer && viewItem == blockchain-wallet-item || viewItem == blockchain-local-wallet-item"
},
{
"command": "aPackagesExplorer.deleteSmartContractPackageEntry",
"when": "view == aPackagesExplorer && viewItem == blockchain-package-item"
},
{
"command": "aPackagesExplorer.exportSmartContractPackageEntry",
"when": "view == aPackagesExplorer && viewItem == blockchain-package-item"
},
{
"command": "environmentExplorer.deleteEnvironmentEntry",
"when": "view == environmentExplorer && viewItem == blockchain-environment-item"
},
{
"command": "environmentExplorer.stopFabricRuntime",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-item"
},
{
"command": "environmentExplorer.restartFabricRuntime",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-item"
},
{
"command": "environmentExplorer.teardownFabricRuntime",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-item"
},
{
"command": "environmentExplorer.deleteNodeEntry",
"when": "view == environmentExplorer && viewItem == blockchain-peer-item && !blockchain-runtime-connected"
},
{
"command": "environmentExplorer.deleteNodeEntry",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-certificate-authority-item && !blockchain-runtime-connected"
},
{
"command": "environmentExplorer.deleteNodeEntry",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-orderer-item && !blockchain-runtime-connected"
},
{
"command": "environmentExplorer.installSmartContractEntry",
"when": "view == environmentExplorer && viewItem == blockchain-peer-item && blockchain-environment-connected"
},
{
"command": "environmentExplorer.installSmartContractEntry",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-installed-item"
},
{
"command": "environmentExplorer.openNewTerminal",
"when": "view == environmentExplorer && viewItem == blockchain-peer-item && blockchain-environment-connected && blockchain-runtime-connected"
},
{
"command": "environmentExplorer.openNewTerminal",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-certificate-authority-item && blockchain-environment-connected && blockchain-runtime-connected"
},
{
"command": "environmentExplorer.openNewTerminal",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-orderer-item && blockchain-environment-connected && blockchain-runtime-connected"
},
{
"command": "environmentExplorer.instantiateSmartContractEntry",
"when": "view == environmentExplorer && viewItem == blockchain-channel-item || viewItem == blockchain-runtime-instantiated-item"
},
{
"command": "environmentExplorer.upgradeSmartContractEntry",
"when": "view == environmentExplorer && viewItem == blockchain-channel-item"
},
{
"command": "environmentExplorer.upgradeSmartContractEntry",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-instantiated-item"
},
{
"command": "environmentExplorer.upgradeSmartContractEntry",
"when": "view == environmentExplorer && viewItem == blockchain-instantiated-contract-item || viewItem == blockchain-instantiated-chaincode-item"
},
{
"command": "environmentExplorer.replaceAssociatedIdentityEntry",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-orderer-item && blockchain-environment-connected && !blockchain-runtime-connected"
},
{
"command": "environmentExplorer.replaceAssociatedIdentityEntry",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-certificate-authority-item && blockchain-environment-connected && !blockchain-runtime-connected"
},
{
"command": "environmentExplorer.replaceAssociatedIdentityEntry",
"when": "view == environmentExplorer && viewItem == blockchain-peer-item && blockchain-environment-connected && !blockchain-runtime-connected"
},
{
"command": "gatewaysExplorer.testSmartContractEntry",
"when": "view == gatewaysExplorer && viewItem == blockchain-instantiated-multi-contract-item || viewItem == blockchain-instantiated-contract-item || viewItem == blockchain-contract-item || viewItem == blockchain-instantiated-unknown-item"
},
{
"command": "transactionPage.open",
"when": "view == gatewaysExplorer && viewItem == blockchain-instantiated-unknown-item && false"
},
{
"command": "transactionPage.open",
"when": "view == gatewaysExplorer && viewItem == blockchain-instantiated-contract-item && false"
},
{
"command": "gatewaysExplorer.submitTransactionEntry",
"when": "view == gatewaysExplorer && viewItem == blockchain-transaction-item"
},
{
"command": "gatewaysExplorer.submitTransactionEntry",
"when": "view == gatewaysExplorer && viewItem == blockchain-instantiated-chaincode-item"
},
{
"command": "gatewaysExplorer.evaluateTransactionEntry",
"when": "view == gatewaysExplorer && viewItem == blockchain-transaction-item"
},
{
"command": "gatewaysExplorer.evaluateTransactionEntry",
"when": "view == gatewaysExplorer && viewItem == blockchain-instantiated-chaincode-item"
},
{
"command": "environmentExplorer.createNewIdentityEntry",
"when": "view == environmentExplorer && viewItem == blockchain-runtime-certificate-authority-item"
},
{
"command": "walletExplorer.removeWalletEntry",
"when": "view == walletExplorer && viewItem == blockchain-wallet-item"
},
{
"command": "walletExplorer.deleteIdentityEntry",
"when": "view == walletExplorer && viewItem == blockchain-identity-item"
},
{
"command": "gatewaysExplorer.associateWallet",
"when": "view == gatewaysExplorer && viewItem == blockchain-gateway-dissociated-item"
},
{
"command": "gatewaysExplorer.dissociateWallet",
"when": "view == gatewaysExplorer && viewItem == blockchain-gateway-associated-item"
},
{
"command": "walletExplorer.exportWalletEntry",
"when": "view == walletExplorer && viewItem == blockchain-wallet-item || viewItem == blockchain-local-wallet-item"
}
]
},
"debuggers": [
{
"type": "fabric:go",
"label": "Fabric Smart Contract (Go)",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [],
"properties": {
"program": {
"type": "string",
"description": "Path to the program folder (or any file within that folder) when in 'debug' or 'test' mode, and to the pre-built binary file to debug in 'exec' mode.",
"default": "${workspaceFolder}"
},
"mode": {
"enum": [
"auto",
"debug",
"remote",
"test",
"exec"
],
"description": "One of 'auto', 'debug', 'remote', 'test', 'exec'.",
"default": "auto"
},
"stopOnEntry": {
"type": "boolean",
"description": "Automatically stop program after launch.",
"default": false
},
"args": {
"type": "array",
"description": "Command line arguments passed to the program.",
"items": {
"type": "string"
},
"default": []
},
"showLog": {
"type": "boolean",
"description": "Show log output from the delve debugger.",
"default": false
},
"cwd": {
"type": "string",
"description": "Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.",
"default": "."
},
"env": {
"type": "object",
"description": "Environment variables passed to the program.",
"default": {}
},
"buildFlags": {
"type": "string",
"description": "Build flags, to be passed to the Go compiler.",
"default": ""
},
"init": {
"type": "string",
"description": "Init file, executed by the terminal client.",
"default": ""
},
"remotePath": {
"type": "string",
"description": "If remote debugging, the path to the source code on the remote machine, if different from the local machine.",
"default": ""
},
"port": {
"type": "number",
"description": "The port that the delve debugger will be listening on.",
"default": 2345
},
"host": {
"type": "string",
"description": "The host name of the machine the delve debugger will be listening on.",
"default": "127.0.0.1"
},
"trace": {
"type": "string",
"enum": [
"log",
"verbose",
"error"
],
"default": "error",
"description": "Various levels of logging shown in the debug console. When set to 'log' or 'verbose', the logs will also be written to a file."
},
"envFile": {
"type": "string",
"description": "Absolute path to a file containing environment variable definitions.",
"default": "${workspaceFolder}/.env"
},
"backend": {
"type": "string",
"enum": [
"default",
"native",
"lldb"
],
"description": "Backend used by delve. Only available in delve version 0.12.2 and above."
},
"output": {
"type": "string",
"description": "Output path for the binary of delve",
"default": "debug"
},
"logOutput": {
"type": "string",
"enum": [
"debugger",
"gdbwire",
"lldbout",
"debuglineerr",
"rpc"
],
"description": "Comma separated list of components that should produce debug output.",
"default": "debugger"
},
"dlvLoadConfig": {
"type": "object",
"properties": {
"followPointers": {
"type": "boolean",
"description": "FollowPointers requests pointers to be automatically dereferenced",
"default": true
},
"maxVariableRecurse": {
"type": "number",
"description": "MaxVariableRecurse is how far to recurse when evaluating nested types",
"default": 1
},
"maxStringLen": {
"type": "number",
"description": "MaxStringLen is the maximum number of bytes read from a string",
"default": 64
},
"maxArrayValues": {
"type": "number",
"description": "MaxArrayValues is the maximum number of elements read from an array, a slice or a map",
"default": 64
},
"maxStructFields": {
"type": "number",
"description": "MaxStructFields is the maximum number of fields read from a struct, -1 will read all fields",
"default": -1
}
},
"description": "LoadConfig describes to delve, how to load values from target's memory",
"default": {
"followPointers": true,
"maxVariableRecurse": 1,
"maxStringLen": 64,
"maxArrayValues": 64,
"maxStructFields": -1
}
},
"apiVersion": {
"type": "number",
"enum": [
1,
2
],
"description": "Delve Api Version to use. Default value is 2.",
"default": 2
},
"stackTraceDepth": {
"type": "number",
"description": "Maximum depth of stack trace collected from Delve",
"default": 50
},
"showGlobalVariables": {
"type": "boolean",
"default": true,
"description": "Boolean value to indicate whether global package variables should be shown in the variables pane or not."
}
}
}
}
},
{
"type": "fabric:java",
"label": "Fabric Smart Contract (Java)",
"runtime": "node",
"configurationAttributes": {
"launch": {
"required": [
"mainClass"
],
"properties": {
"projectName": {
"type": "string",
"description": "The preferred project in which the debugger searches for classes. There could be duplicated class names in different projects. This setting also works when the debugger looks for the specified main class when launching a program. It is required for expression evaluation.",
"default": ""
},
"mainClass": {
"type": "string",
"description": "The fully qualified class name (e.g. [java module name/]com.xyz.MainApp) or the java file path of the program entry.",
"default": ""
},
"args": {
"type": [
"array",
"string"
],
"description": "The command line arguments passed to the program.",
"default": ""
},
"vmArgs": {
"type": [
"array",
"string"
],
"description": "The extra options and system properties for the JVM (e.g. -Xms<size> -Xmx<size> -D<name>=<value>).",
"default": ""
},
"modulePaths": {
"type": "array",
"items": {
"type": "string"
},
"description": "The modulepaths for launching the JVM. If not specified, the debugger will automatically resolve from current project.",
"default": []
},
"classPaths": {
"type": "array",
"items": {
"type": "string"
},
"description": "The classpaths for launching the JVM. If not specified, the debugger will automatically resolve from current project.",