Diferencia entre revisiones de «Hyperledger Fabric»

De Wiki Proyectos Beta
Ir a la navegación Ir a la búsqueda
Sin resumen de edición
 
Línea 4: Línea 4:


* Documentación oficial: [https://hyperledger-fabric.readthedocs.io/en/release-2.5/ EN]
* Documentación oficial: [https://hyperledger-fabric.readthedocs.io/en/release-2.5/ EN]
* Wiki oficial: [https://wiki.hyperledger.org/display/Fabric EN]
* StackOverFlow: [https://stackoverflow.com/questions/tagged/hyperledger-fabric EN]
* Discord: [https://discord.com/invite/hyperledger EN]
* Código fuente: [https://github.com/hyperledger/fabric EN]


== Videos ==
== Videos ==

Revisión actual - 18:42 2 abr 2023

Descripción

Recursos

  • Documentación oficial: EN
  • Wiki oficial: EN
  • StackOverFlow: EN
  • Discord: EN
  • Código fuente: EN

Videos

  • Canal de YouTube: EN

Instalación

Versión 2.4

Observación:

  • Se instala en Debian Buster 10 de 64 bits
  • Se asume que se tienen instalado git, curl, docker, docker-compose, node, npm y golang
  • sudo apt install build-essential

Pasos:

curl -sSL https://bit.ly/2ysbOFE | bash -s -- 2.4.9 1.5.5
cd fabric-samples/test-network
./network.sh down
./network.sh up createChannel -c mychannel -ca
./network.sh deployCC -ccn basic -ccp ../asset-transfer-basic/chaincode-javascript/ -ccl javascript
cd ../asset-transfer-basic/application-javascript
npm install
ls
node app.js
  • Fuente 1: EN