Create the Hyperledger Channel
Create your Hyperledger Channel
#Configure a channel
configtxgen -profile AppChannel \
--configPath ${FABRIC_CFG_PATH} \
--channelID ${USER}-channel \
-outputCreateChannelTx ~/channel.tx
#Create a new channel (with a genesis block)
peer channel create -o node-1:7050 \
--channelID ${USER}-channel \
-f ~/channel.tx \
--outputBlock ~/channel.block
#Let peer node-1 join the newly created channel
peer channel join -b ~/channel.block
#Verify if your Fabric Channel is on the list
peer channel listLast updated