minifabric
minifabric copied to clipboard
Do fabric network the right and easy way.
I have setup an instance to run minifab latest on K8S using latest Ubuntu and latest K8S - with a single node master/worker cluster. I setup a MetalLB with nginx...
I tried to apply the patterns used in the fabric, in this tutorial https://hyperledger-fabric.readthedocs.io/en/release-1.4/peer-chaincode-devmode.html but I can't do this process. Is there a way? I noticed that in the core.yaml...
I've created a blockchain network composed of two different nodes `A` (primary) and `B` (secondary), on two different hosts. I also have a nodejs client application which connects to `A`...
I managed to connect two nodes `A` (primary) and `B` (secondary), with a custom chaincode. Connection commands (also available in a [previous issue](https://github.com/hyperledger-labs/minifabric/issues/323)) are reported in the following. ``` #...
Following the documentation we try to create a network with 6 organization spread geographically. Is was necessary to sign (channelsign) and pass the envelope to all the majority of the...
I have a network (with my own spec.yaml) with 4 Orgs with 2 peers each. When I start it for the first time (even installing my chaincode succesfully) I have...
I've noticed that if the Explorer is started (`minifab explorerup`), then interrupted (`minifab explorerdown`), finally, started again (`minifab explorerup`), it is not working properly. In order to make it working,...
I'm trying to create a chaincode method able to return all transactions history, hence, all objects stored on the blockchain. Here is the sample method. ``` async queryall(stub, args) {...
base: [Developing with Minifabric: Chaincode \- YouTube](https://www.youtube.com/watch?v=r108lkV7auk&list=PL0MZ85B_96CExhq0YdHLPS5cmSBvSmwyO&index=4&t=6s) the mycc demo:  i guess just the simple: ``` /opt/proj/minifab $ tree vars/chaincode/simple/ -L 2 vars/chaincode/simple/ |-- go | |-- go.mod |...
I have a very basic chaincode generated using the [IBM Blockchain Platform Extension for VSCode](https://marketplace.visualstudio.com/items?itemName=IBMBlockchain.ibm-blockchain-platform): ```js class ProductContract extends Contract { async productExists(ctx, productId) { const buffer = await ctx.stub.getState(productId);...