fablo
fablo copied to clipboard
Upgrade Blockchain Explorer version (2.0.0)
Hey, to which file does this changes need to be made? CC: @dzikowski @torrespro
which port explorer I can access it once I enable in config file
explorer ports are 7010 + orgIndex, so 7010 for the first organization, 7011 for the second one etc. Here is the code:
const getPortsForOrg = (orgIndex: number) => ({
caPort: 7020 + 20 * orgIndex,
headPeerPort: 7021 + 20 * orgIndex,
headOrdererPort: 7030 + 20 * orgIndex,
headPeerCouchDbPort: 5080 + 20 * orgIndex,
fabloRestPort: 8800 + orgIndex,
explorerPort: 7010 + orgIndex,
});
You can also check them in fablo-target/fabric-docker/docker-compose.yaml file.