<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   ∑:267  Sort:Date

buy.js - Application to Buy Paper
What is the Application to Buy Paper, buy.js? buy.js is a client application using the Hyperledger Fabric Node.js SDK library to invoke the buy() function of the papercontract running on the PaperNet. 1. View buy.js source code: (balaji)$ cd ~/hyperledger-binaries/fabric- samples(balaji)$ cd commerc...
2019-11-08, 1047🔥, 0💬

Requirements for Fabric CA Server and Client
What are the requirements to install and run Fabric CA Server and Client? Fabric CA Server and Client are written in Golang, so you need to stall Go environment and required libraries: Go 1.10+ installation GOPATH environment variable is set correctly libtool and libtdhl-dev packages are installed 1...
2019-10-18, 1043🔥, 0💬

Pull Hyperledger Fabric Orderer Image
How to Pull Hyperledger Fabric Orderer Image from docker hub? You can follow this tutorial to Pull Hyperledger Fabric Orderer Image from docker hub. 1. Check the Docker local repository: $ docker image list | grep fabric-orderer hyperledger/fabric-orderer latest ec4ca236d3d4 2 weeks ago 173MB hyperl...
2019-09-04, 1043🔥, 0💬

docker-compose-orderer.yaml - Docker Configuration
What is the Docker Compose configuration file for an Orderer peer? The Docker Compose configuration file, docker-compose-orderer.yaml, provides settings on how to run the orderer peer on the Docker engine. Here is a sample of docker-compose-orderer.yaml for a single orderer peer: $ cd fabric-orderer...
2019-08-23, 1043🔥, 0💬

Switch Default Peer with Scripts
How to Switch Default Peer on the CLI container with Scripts? I am tired of typing those 4 CORE_PEER_* export commands. From previous tutorial, we know that we need to type in export commands to set 4 CORE_PEER_* environment variables. But you can also put them into shell scripts and run them whenev...
2020-05-29, 1041🔥, 0💬

Start basic-network for PaperNet
How to Start basic-network for PaperNet? I want to follow commercial-paper Tutorials. You can follow this tutorial to start basic-network and make it ready to build PaperNet. 1. Start basic-network : $ cd ~/hyperledger-binaries/fabric- samples/basic-network$ ./start.sh ... Creating ca.example.com .....
2019-12-19, 1040🔥, 0💬

Fabric Network without CA Server
Can I run a Hyperledger Fabric Network without Fabric CA Server? Yes, you can run a Hyperledger Fabric Network without Fabric CA Server. In that case, you have to manage PKI certificate services manually For example, you need to do the following manually to add a new user to access your ledger peer:...
2019-10-18, 1040🔥, 0💬

BYFN Chaincode Docker Container
What is the BYFN chaincode Docker container? The BYFN chaincode Docker container represents the running instance of the "mycc" chaincode. When "mycc" chaincode is instantiated from peer0.org1, a chaincode Docker container (shim) is deployed and started on the Docker engine. You can find chaincode co...
2020-09-15, 1039🔥, 0💬

Query Chaincode Property on BYFN Channel
How to Query Chaincode Property on BYFN Channel? An instance of a chaincode can be viewed as an object of a class in an execution environment. It can hold properties. You can run the "peer chaincode query" command to query the current value of a given property of a given chaincode instance. 1. Verif...
2020-09-30, 1035🔥, 0💬

See New Paper on CouchDB Server
How to See New Paper on CouchDB server? If you are the PaperNet admin, you may want to see the world state of the asset managed by papercontract. PaperNet uses CouchDB to store the world state and configured with a REST API on port 5984. 1. List all databases: (magnetocorp admin)$ curl http://localh...
2019-11-21, 1035🔥, 0💬

Upgrade Chaincode Instance on BYFN
How to upgrade chaincode instance on BYFN? You can follow this tutorial to upgrade the chaincode instance on BYFN. You can use this process to fix any issues with chaincode instance without destroy its data. 1. Install new version, 2.0, of the chaincode on the default peer, peer0.org1. bash-4.4# ech...
2020-09-12, 1034🔥, 1💬

Verify the WYFA Network
How to Verify the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial? You can follow these steps to verify the Hyperledger Fabric Network to run the WYFA (Writing Your First Application) tutorial. 1. Connect to the CLI container: $ docker exec -it cli bash bash-4.4#...
2020-02-29, 1034🔥, 0💬

Interfaces to Communicate with Ledger Peer
Where to find tutorials on Interfaces to Communicate with Ledger Peer? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Interfaces to Communicate with Ledger Peer. Main Interfaces to Communicate with Ledger Peer Download and Install Golang SDK D...
2020-01-29, 1032🔥, 0💬

CORE_PEER_* Environment Variables on BYFN CLI
What is the default peer and how to change it on the BYFN CLI container? On the BYFN CLI container, you can manage other peer nodes with the "peer" command. When you run a "peer" command, it will connect to the default peer node define by these environment variables: CORE_PEER_ADDRESS=peer0.org1.e xa...
2020-09-30, 1030🔥, 0💬

Verify World State in CouchDB
How to Verify World State in CouchDB container? Since peer0.org1.example.com uses the couchdb container to store the world state, you can check the current states of all assets managed by the chaincode. 1. Get database name for the chaincode "fabcar": $ curl http://localhost:5984/_all_dbs ["_replica...
2020-02-20, 1029🔥, 0💬

Introduction to Hyperledger
Where to find tutorials as Introduction to Hyperledger. Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team as Introduction to Hyperledger. What Is Hyperledger What Is Blockchain What Is Distributed Ledger What Is Smart Contract   ⇒ What Is Hyperledge...
2019-04-19, 1028🔥, 0💬

Install Composer Prerequisites on Ubuntu
How to install Hyplerledger Composer Prerequisites on Ubuntu? The best way to install Hyplerledger Composer Prerequisites on Ubuntu is to download and run the prereqs-ubuntu.sh script. 1. Verify your Ubuntu version: $ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: U...
2021-05-04, 1027🔥, 0💬

Objectives of WYFA tutorials
What are the objectives of WYFA (Writing Your First Application) tutorials? Objectives of WYFA (Writing Your First Application) tutorials provided at hyperledger-fabric.readthedocs .ioWebsite are: 1. Setting up a development environment. Our application needs a network to interact with, so we’ll get...
2020-03-15, 1027🔥, 0💬

Impact of Stopping Chaincode Container
What is the impact of stopping a chaincode container of a peer? We know that if a Peer has chaincode installed, it will run it as chaincode container to help the channel to perform a transaction on the chaincode. If you stop a chaincode container of a peer who is not a required member of the chainco...
2019-04-17, 1027🔥, 0💬

"byfn.sh up" - Start Up BYFN Network
How to run "byfn.sh up" to start up the BYFN Network? You can follow this tutorial to run "byfn.sh up" to Start up the BYFN Network. The "./byfn.sh up" command automatically generates the configuration again, deploys/starts all containers to the Docker Engine, and runs a set of chaincode tests. $ cd...
2020-05-05, 1022🔥, 0💬

Hyperledger Related Terminology
Hyperledger Related Terminology: Asset - An Asset is a data object with a unique identifier. The content of an asset can be anything from a simple numeric value to a complex data object. For example, an asset can represent a financial asset, like a bank account in a bank system. Blockchain - A Block...
2020-01-21, 1021🔥, 0💬

Instantiate PaperNet Chaincode (Smart Contract)
How to Instantiate the PaperNet Chaincode (Smart Contract), papercontract.js? Now that papercontract chaincode containing the CommercialPaper chaincode is installed on the required PaperNet peers, you, as administrator, can make it available to different network channels, so that it can be invoked b...
2019-12-02, 1021🔥, 0💬

Deploy Business Network Archive (BNA) to Playground
How to deploy a Business Network Archive (BNA) file to Hyperledger Composer Playground? If you have an existing Business Network Archive (BNA) file that contains a Hyperledger Composer Business Network application, you can follow this tutorial to deploy it to the Hyperledger Composer Playground. 1. ...
2020-12-15, 1020🔥, 0💬

Fabric CA Client Wallet
Where is the Fabric CA Client Wallet that stores identities and certificates used to access the Fabric CA Server? The Fabric CA Client Wallet is stored in the "msp" sub-directory in the $FABRIC_CA_CLIENT_HOME directory or the default location of $HOME/.fabric-ca-client. The Fabric CA Client Wallet h...
2019-09-27, 1020🔥, 0💬

<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   ∑:267  Sort:Date