<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Date

Create "PeerAdmin@hlfv1" Card Manually
How to create the "PeerAdmin@hlfv1" card manually? If you don't want to use the "createPeerAdminCard.sh" script to create the "PeerAdmin@hlfv1" card automatically, you can follow this tutorial to create it manually. 1. Create connection profile "connection.json": $ mkdir ~/card $ cd ~/card $ vi conn...
2020-07-14, 1117🔥, 0💬

Hyperledger Composer Playground
Where to find tutorials on Hyperledger Composer Playground. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Composer Playground. What Is Hyperledger Composer Playground Start Hyperledger Composer Playground What Is Basic Sample Busi...
2019-04-13, 1115🔥, 0💬

Launch the WYFA Network
How to Launch the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial? You can follow these steps to Launch the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial. 1. Run the startFabric.sh script to spin up a blockchain network, cre...
2020-02-29, 1110🔥, 0💬

Issue to Install "npm 5.x" on Ubuntu 18
Why I can only install "npm 3.5.2" on Ubuntu 18? If you are running Ubuntu 18, the default "apt install npm" command will only insatlle "npm 3.5.2: $ sudo apt install npm ... installing the "npm" package $ sudo apt install npm Reading package lists... Done Building dependency tree Reading state info...
2021-04-04, 1106🔥, 0💬

Watch Chaincode Container Log
How to watch the log file of chaincode Container Log? You can follow this tutorial to watch the log file of a chaincode container: 1. Set up new terminal on the hosting system to follow the log file of the chaincode container linked to "peer0.org1": $ docker ps --all | grep dev-peer0.org1 cc7aeb60bb...
2020-06-08, 1105🔥, 0💬

commercial-paper Sample Network
Where to find tutorials on Hyperledger Fabric commercial-paper Sample Network? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric commercial-paper Sample Network. Objectives of commercial-paper Tutorials Start basic-network for ...
2019-12-19, 1104🔥, 0💬

What Is Distributed Ledger
What Is distributed ledger? A distributed ledger, also called Distributed Ledger Technology (DLT), is a consensus of replicated, shared, and synchronized data storage based the blockchain technology. The Distributed Ledger Technology can be used to change the way we do business today in many areas. ...
2023-03-28, 1103🔥, 0💬

papercontract.js - PaperNet Chaincode (Smart Contract)
What is the PaperNet Chaincode (Smart Contract), papercontract.js? papercontract.js is the chaincode (or smart contract) for the PaperNet written in Node.js language. 1. View papercontract.js source code: (magnetocorp admin)$ cd ~/hyperledger-binaries/fabric- samples(magnetocorp admin)$ cd commercia...
2019-12-02, 1102🔥, 0💬

Hyperledger Composer Tutorials
Where to find tutorials on Hyperledger Composer? I want to know how to create Hyperledger Composer business networks. Here is a large collection of tutorials to answer many frequently asked questions compiled by FYIcenter.com team about Hyperledger Composer: Introduction of Hyperledger Composer Hype...
2021-02-04, 1094🔥, 0💬

evaluate-transaction.js - Evaluate Chaincode Transaction
How to write a Node.js script to evaluate a transaction defined in the Invoke method of a chaincode? Here is sample Node.js script, evaluate-transaction.js, that uses a given user identity from the local wallet to evaluate a transaction on chaincode. /* Copyright (c) FYIcenter.com */ 'use strict'; c...
2019-04-22, 1090🔥, 0💬

Types of Hyperledger Fabric Docker Containers
How many types of Hyperledger Fabric Docker Containers are there? In a typical Hyperledger Fabric network (using goleveldb instead of couchdb), you will have 4 types containers running on the Docker Engine: 1. Orderer container - In a simple Hyperledger Fabric network, there is only one Orderer cont...
2020-07-07, 1089🔥, 0💬

Create Identity Wallet for Balaji
How to Create Identity Wallet for Balaji at DigiBank? Like Isabella at MagnetoCorp, Balaji at DigiBank needs prepare his system with a wallet to store his identity. He also needs to install Node.js dependencies to run applications written with Hyperledger Fabric Node.js SDK. 1. Install Node.js depen...
2019-11-08, 1083🔥, 0💬

"docker exec -it cli bash" - BYFN CLI Shell
How to run "docker exec -it cli bash" command to run a shell script window in the BYFN (Build Your First Network) CLI Docker Container? The BYFN (Build Your First Network) CLI Docker Container is a command line service door to manage your BYFN network. You can run it and connect to it as shell scrip...
2020-10-10, 1082🔥, 0💬

Register Identity of "user" Type
How to register a new identity of "user" type? You can follow this tutorial to register a new identity of "user" type. 1. Go to the Fabric CA Client system where you have the "admin" wallet created in the previous tutorial. $ cd ~/fabric-ca/native-client/admi n$ export FABRIC_CA_CLIENT_HOME=~/fabric ...
2019-09-16, 1082🔥, 0💬

Second Admin Enroll to Create Wallet
How can the second admin create his/her own certificate and save it in a wallet? You need to pass the identity name and password of "admin2" and "WSATRHlgxxnk" to the second admin to create his/her own certificate and save it in a wallet. 1. Pass identity "admin2" and "WSATRHlgxxnk" to Amy. 2. Amy i...
2019-09-16, 1080🔥, 0💬

orderer.yaml - Orderer Peer Configuration File
What is the Orderer Peer Configuration File, orderer.yaml? The Orderer Peer Configuration File, orderer.yaml, provides settings to control the behavior of the Orderer peer. You can take a copy of the orderer.yaml provided in Fabric binary and sample package: $ cd fabric-orderer $ cp ~/hyperledger-bi...
2019-09-04, 1077🔥, 0💬

Organization with CA Server
Should I run Fabric CA server in my organization on a multi-organization network? Yes, you should run Fabric CA server in your organization on a multi-organization network. It is your responsibility to manage membership of who can access ledger peers in your organization. Now we have a Hyperledger F...
2019-10-27, 1076🔥, 0💬

Connect to basic-network Peer
How to connect to the peer container of the basic-network? I want to see how is the peer doing. You can use the "docker exec" command to connect to the peer container of the basic-network. 1. Run "docker exec" to create an interactive connect with the peer container: $ docker exec -it peer0.org1.exa...
2020-04-14, 1075🔥, 0💬

Start CLI Container for MagnetoCorp Admin
How to Start CLI Container for the MagnetoCorp Administrator? If you are the administrator from MagnetoCorp and want to manage the PaperNet Hyperledger Fabric network, you can follow this tutorial. 1. Create a new terminal window and run the docker-compose command to start the CLI container: (magnet...
2019-12-19, 1072🔥, 0💬

Setting Up Orderer Peer Manually
Where to find tutorials on Setting Up an Orderer Peer Manually? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Setting Up an Orderer Peer Manually. Steps of Setting Up Orderer Peer Pull Hyperledger Fabric Orderer Image Create Orderer Organizat...
2019-09-04, 1069🔥, 0💬

"composer card" Commands
What can I do with "composer card" command? "composer card" commands are part of the Composer CLI command set. It allows you to manage access cards stored in the Composer Wallet, which is located at "~/.composer/cards" directory. Here is the syntax of the "composer card" commands: $ composer card he...
2020-07-22, 1068🔥, 0💬

Hyperledger Fabric Docker Containers
Where to find tutorials on Hyperledger Fabric Docker Containers? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Hyperledger Fabric Hyperledger Fabric Docker Containers. Types of Hyperledger Fabric Docker Containers Watch "orderer" Container Lo...
2020-07-07, 1068🔥, 2💬

Setup Node.js for WYFA Tests
How to Setup Node.js for WYFA (Write Your First Application) Tests? Before performing any Node.js SDK tests on the WYFA network, you need to setup the Node.js on your local host. 1. Make sure Node.js is installed: $ node --version v8.10.0 2. Install required packages: $ cd hyperledger-binaries/fabri...
2020-02-07, 1068🔥, 0💬

Default core.yaml in Peer Docker Image
What is the Default core.yaml file in Peer Docker Image? The default core.yaml file in the Peer Docker Image is the default version of core.yaml, which provides settings to control the behavior of the Ledger peer. If you deploy the Peer Docker container without your own version of core.yaml, the def...
2019-05-10, 1068🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 > >>   Sort: Date