├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other-issue.md ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── scorecard.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── fabric ├── docker │ └── fabric-singleorg │ │ ├── compose-local-ca.yaml │ │ └── compose-local.yaml ├── sampleconfig │ ├── ccp │ │ └── org1.json │ ├── configtx.yaml │ ├── core.yaml │ ├── fabric-ca │ │ └── org1 │ │ │ └── fabric-ca-server-config.yaml │ └── orderer.yaml └── scripts │ ├── cleanupFiles.sh │ ├── configUpdate.sh │ ├── createChannelInternal.sh │ ├── deployChaincodeInternal.sh │ ├── getWallets.sh │ ├── installCaasChaincode.sh │ ├── packageCaasChaincode.sh │ ├── registerEnroll.sh │ ├── registerEnrollIdentity.sh │ ├── registerEnrollOneOrg.sh │ ├── removeIdentity.sh │ ├── sendTransactionInternal.sh │ └── setAnchorPeer.sh ├── language-configuration.json ├── media ├── docs │ ├── connect-couchdb.png │ ├── debug-window.png │ ├── event-listeners.png │ ├── launch-add-config.png │ ├── manage-network.png │ ├── manage-wallets.png │ ├── peer-name.png │ ├── remove-network.png │ └── send-request.png ├── network-black.png ├── network-white.png ├── organizations-black.png ├── organizations-white.png ├── spydra-blue.png ├── wallet-black.png └── wallet-white.png ├── package.json ├── src ├── extension.ts ├── providers │ ├── HlfCodeLensProvider.ts │ ├── HlfDebugConfigProvider.ts │ ├── HlfProvider.ts │ ├── HlfRequestCommandProvider.ts │ ├── NetworkTreeProvider.ts │ ├── ResourcesTreeProvider.ts │ ├── WalletIdentityProvider.ts │ └── WalletTreeProvider.ts ├── utilities │ ├── Commands.ts │ ├── Constants.ts │ ├── Logger.ts │ ├── Prerequisites.ts │ ├── ShellCommand.ts │ └── TelemetryLogger.ts └── views │ ├── HlfResponseWebview.ts │ ├── WebsiteView.ts │ └── trees │ ├── CaItem.ts │ ├── HlfTreeItem.ts │ ├── NetworkItem.ts │ ├── NodeItem.ts │ ├── OrdererItem.ts │ ├── OrganizationItem.ts │ ├── OrganizationRoot.ts │ ├── PeerItem.ts │ ├── ResourceItem.ts │ └── WalletItem.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.github/ISSUE_TEMPLATE/other-issue.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/SECURITY.md -------------------------------------------------------------------------------- /fabric/docker/fabric-singleorg/compose-local-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/docker/fabric-singleorg/compose-local-ca.yaml -------------------------------------------------------------------------------- /fabric/docker/fabric-singleorg/compose-local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/docker/fabric-singleorg/compose-local.yaml -------------------------------------------------------------------------------- /fabric/sampleconfig/ccp/org1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/sampleconfig/ccp/org1.json -------------------------------------------------------------------------------- /fabric/sampleconfig/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/sampleconfig/configtx.yaml -------------------------------------------------------------------------------- /fabric/sampleconfig/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/sampleconfig/core.yaml -------------------------------------------------------------------------------- /fabric/sampleconfig/fabric-ca/org1/fabric-ca-server-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/sampleconfig/fabric-ca/org1/fabric-ca-server-config.yaml -------------------------------------------------------------------------------- /fabric/sampleconfig/orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/sampleconfig/orderer.yaml -------------------------------------------------------------------------------- /fabric/scripts/cleanupFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/cleanupFiles.sh -------------------------------------------------------------------------------- /fabric/scripts/configUpdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/configUpdate.sh -------------------------------------------------------------------------------- /fabric/scripts/createChannelInternal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/createChannelInternal.sh -------------------------------------------------------------------------------- /fabric/scripts/deployChaincodeInternal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/deployChaincodeInternal.sh -------------------------------------------------------------------------------- /fabric/scripts/getWallets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/getWallets.sh -------------------------------------------------------------------------------- /fabric/scripts/installCaasChaincode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/installCaasChaincode.sh -------------------------------------------------------------------------------- /fabric/scripts/packageCaasChaincode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/packageCaasChaincode.sh -------------------------------------------------------------------------------- /fabric/scripts/registerEnroll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/registerEnroll.sh -------------------------------------------------------------------------------- /fabric/scripts/registerEnrollIdentity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/registerEnrollIdentity.sh -------------------------------------------------------------------------------- /fabric/scripts/registerEnrollOneOrg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/registerEnrollOneOrg.sh -------------------------------------------------------------------------------- /fabric/scripts/removeIdentity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/removeIdentity.sh -------------------------------------------------------------------------------- /fabric/scripts/sendTransactionInternal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/sendTransactionInternal.sh -------------------------------------------------------------------------------- /fabric/scripts/setAnchorPeer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/fabric/scripts/setAnchorPeer.sh -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/language-configuration.json -------------------------------------------------------------------------------- /media/docs/connect-couchdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/connect-couchdb.png -------------------------------------------------------------------------------- /media/docs/debug-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/debug-window.png -------------------------------------------------------------------------------- /media/docs/event-listeners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/event-listeners.png -------------------------------------------------------------------------------- /media/docs/launch-add-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/launch-add-config.png -------------------------------------------------------------------------------- /media/docs/manage-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/manage-network.png -------------------------------------------------------------------------------- /media/docs/manage-wallets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/manage-wallets.png -------------------------------------------------------------------------------- /media/docs/peer-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/peer-name.png -------------------------------------------------------------------------------- /media/docs/remove-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/remove-network.png -------------------------------------------------------------------------------- /media/docs/send-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/docs/send-request.png -------------------------------------------------------------------------------- /media/network-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/network-black.png -------------------------------------------------------------------------------- /media/network-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/network-white.png -------------------------------------------------------------------------------- /media/organizations-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/organizations-black.png -------------------------------------------------------------------------------- /media/organizations-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/organizations-white.png -------------------------------------------------------------------------------- /media/spydra-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/spydra-blue.png -------------------------------------------------------------------------------- /media/wallet-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/wallet-black.png -------------------------------------------------------------------------------- /media/wallet-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/media/wallet-white.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/providers/HlfCodeLensProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/HlfCodeLensProvider.ts -------------------------------------------------------------------------------- /src/providers/HlfDebugConfigProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/HlfDebugConfigProvider.ts -------------------------------------------------------------------------------- /src/providers/HlfProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/HlfProvider.ts -------------------------------------------------------------------------------- /src/providers/HlfRequestCommandProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/HlfRequestCommandProvider.ts -------------------------------------------------------------------------------- /src/providers/NetworkTreeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/NetworkTreeProvider.ts -------------------------------------------------------------------------------- /src/providers/ResourcesTreeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/ResourcesTreeProvider.ts -------------------------------------------------------------------------------- /src/providers/WalletIdentityProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/WalletIdentityProvider.ts -------------------------------------------------------------------------------- /src/providers/WalletTreeProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/providers/WalletTreeProvider.ts -------------------------------------------------------------------------------- /src/utilities/Commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/utilities/Commands.ts -------------------------------------------------------------------------------- /src/utilities/Constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/utilities/Constants.ts -------------------------------------------------------------------------------- /src/utilities/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/utilities/Logger.ts -------------------------------------------------------------------------------- /src/utilities/Prerequisites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/utilities/Prerequisites.ts -------------------------------------------------------------------------------- /src/utilities/ShellCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/utilities/ShellCommand.ts -------------------------------------------------------------------------------- /src/utilities/TelemetryLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/utilities/TelemetryLogger.ts -------------------------------------------------------------------------------- /src/views/HlfResponseWebview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/HlfResponseWebview.ts -------------------------------------------------------------------------------- /src/views/WebsiteView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/WebsiteView.ts -------------------------------------------------------------------------------- /src/views/trees/CaItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/CaItem.ts -------------------------------------------------------------------------------- /src/views/trees/HlfTreeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/HlfTreeItem.ts -------------------------------------------------------------------------------- /src/views/trees/NetworkItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/NetworkItem.ts -------------------------------------------------------------------------------- /src/views/trees/NodeItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/NodeItem.ts -------------------------------------------------------------------------------- /src/views/trees/OrdererItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/OrdererItem.ts -------------------------------------------------------------------------------- /src/views/trees/OrganizationItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/OrganizationItem.ts -------------------------------------------------------------------------------- /src/views/trees/OrganizationRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/OrganizationRoot.ts -------------------------------------------------------------------------------- /src/views/trees/PeerItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/PeerItem.ts -------------------------------------------------------------------------------- /src/views/trees/ResourceItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/ResourceItem.ts -------------------------------------------------------------------------------- /src/views/trees/WalletItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/src/views/trees/WalletItem.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spydra-tech/fabric-debugger/HEAD/tsconfig.json --------------------------------------------------------------------------------