Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
minifab Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# minifab
> Utility tool that automates the setup and deployment of Hyperledger Fabric networks.
> More information: <https://github.com/hyperledger-labs/minifabric>.
- Bring up the default Hyperledger Fabric network:
`minifab up -i {{minifab_version}}`
- Bring down the Hyperledger Fabric network:
`minifab down`
- Install chaincode onto a specified channel:
`minifab install -n {{chaincode_name}}`
- Install a specific chaincode version onto a channel:
`minifab install -n {{chaincode_name}} -v {{chaincode_version}}`
- Initialize the chaincode after installation/upgrade:
`minifab approve,commit,initialize,discover`
- Invoke a chaincode method with the specified arguments:
`minifab invoke -n {{chaincode_name}} -p '"{{method_name}}", "{{argument1}}", "{{argument2}}", ...'`
- Make a query on the ledger:
`minifab blockquery {{block_number}}`
- Quickly run an application:
`minifab apprun -l {{app_programming_language}}`