Skip to main content

Questions tagged [hyperledger]

Questions related to the Hyperledger Project https://hyperledger.org

Filter by
Sorted by
Tagged with
0 votes
1 answer
21 views

After running nodes with all configs as per the docs, I cannot get ETH Balance in my local BESU Blockchain network

I am developing a private Besu network with QBFT Consensus mechanism. I am following the docs exactly like here After running all 4 nodes when I import the wallet from QBFT_Config_File.js in my ...
Abdullah Hanif Chaudhary's user avatar
0 votes
0 answers
66 views

Last peer cannot sync on a private Hyperledger Besu free gas network

Based on Hyperledger Besu official Doc I configured a private besu network free gas using IBFT2 with four nodes. Instead setting it up on a single machine as per documentation, I configured it on ...
0x75aaa's user avatar
  • 61
0 votes
1 answer
9 views

Error: The required parameter 'channelID' is empty. Rerun the command with -C flag

for below command peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA -C ${CHANNEL_NAME} -n ${CC_NAME} --...
rahul_eth's user avatar
  • 564
0 votes
0 answers
22 views

Hyperledger Caliper - Can we build a work load module that can invoke and query from already deployed contract in the blockchain?

I am trying to benchmark a smart contract that interacts with an already deployed contract on the blockchain using Hyperledger Caliper. The overall framework is functioning correctly for other ...
111Seven's user avatar
0 votes
0 answers
8 views

CBDC Community , Corda r3

i am trying to build a cbdc prototype using corda r3 , is there anyone with knowledge about this project that can help or any recommandations or communities to try to reach to ? maybe corda r3 ...
Youssef's user avatar
0 votes
0 answers
79 views

Hyperledger-caliper Ethereum Benchmarking (Error: nonce undefined)

I am using hyperledger-caliper to benchmark the Ethereum local network (Ganache). The contract is a simple storage contract, nothing fancy. I can deploy the contract using the code provided below. But ...
111Seven's user avatar
0 votes
0 answers
8 views

How to join a channel in Hyperledger from another server?

I've deployed a chaincode on my VM i.e 192.168.4.110. Everything is working fine when I test it locally. Now I want my second VM i.e 192.168.4.112 to connect with the above Hyperledger's vm Channel. ...
Hamza Shafeeq's user avatar
0 votes
0 answers
33 views

Help in connecting with Hyperledger fabric network deployed on AWS managed blockchain

I am trying to connect my network created on AWS managed blockchain in my Node JS server. I have the private hyper-ledger fabric network in the AWS managed blockchain. It seems there is no official or ...
talha zubair's user avatar
2 votes
0 answers
272 views

How to setup the private blockchain network using Besu?

Last week, my teacher gave me a Blockchain assignment about "Deploy the private blockchain network using Besu with at least 2 Full nodes and 1 Light node". Incidentally, I found this link ...
Anh Tuấn Trần's user avatar
0 votes
1 answer
367 views

Deploy contract on Hyperledger Besu zero fees network

I have a Hyperledger Besu blockchain working on my VM with 4 nodes, built with Qorum Quickstart, using NPX. This blockchain is configured for 0 fees. (doc) I can develop, build, deploy, use my ...
louloub's user avatar
1 vote
1 answer
66 views

Null keys when using `debug_storageRangeAt`

I'm currently trying to use the debug_storageRangeAt on a Hyperledger Besu RPC to extract the contract storage. For some contracts I get the expected response which is a list of keys and values: "...
Valentín Fernández's user avatar
1 vote
0 answers
24 views

Oscillating blocktime issue

I have three private blockchain networks: production development QA production and QA both have blockTime of 10 seconds and are behaving as expected. When I read their block timestamps, there is ...
Sky's user avatar
  • 2,410
1 vote
0 answers
176 views

Does Hyperledger Besu limit the amount of data in a transaction?

I need to send transactions to a private PoA Ethereum Blockchain. I know by geth source code it is limited to 128 KB: txMaxSize = 4 * txSlotSize // 128KB -> tx_pool.go file: https://github.com/...
WakiApi's user avatar
  • 33
1 vote
0 answers
23 views

Why use private blockchain for logistics? Like Walmart does [closed]

Walmart uses blockchain to track their products origins https://www.hyperledger.org/learn/publications/walmart-case-study Using blockchain and storing the information digitally, a supplier could ...
Scott's user avatar
  • 91
1 vote
1 answer
412 views

Hyperledger besu onchain permissioning error

i'm following a tutorial on how to create an onchain permissioning network with hyperledger besu : https://besu.hyperledger.org/en/stable/Tutorials/Permissioning/Getting-Started-Onchain-Permissioning/ ...
MinerNoob24's user avatar
2 votes
1 answer
297 views

how to setup hyperledger besu permissioned ethereum blockchain using docker?

Hello blockchain enthusiats, this my very first question on a forum, i'm trying to create a permissioned ethereum blockchain using hyperledger besu, i tried to use docker for that but because i'm not ...
MinerNoob24's user avatar
1 vote
0 answers
63 views

How to increase OPCODE gas Price in Hyperledger Besu

I want to setup Private POA blockchain using hyperledger besu. I dont want people to deploy smart contract on the chain. I searched on google and found it some alternative solution to increase create ...
kishan's user avatar
  • 56
0 votes
2 answers
753 views

Deploy SmartContract to local Hyperledger-Besu network using Brownie

EDIT: In short, I want to use Brownie to deploy smartContracts to HyperLedger-Besu network on my local machine. For some reason, it doesn't work, so I wanted to ask if anyone here had experience with ...
Sky's user avatar
  • 2,410
1 vote
0 answers
43 views

Stable release of Hyperledger Besu won't compile

I cloned a fresh copy of Hyperledger Besu from the GitHub repo and when I opened it in Eclipse, it said that there are 148 errors and that the project won't compile. It also said that there are 108 ...
pdmoerman's user avatar
  • 131
2 votes
1 answer
741 views

Hyperledger Besu for creating accounts

I am able to setup hyperledger besu for creating private ethereum network(followed the official documents with 3 testing accounts in gnesis file) and able to connect to metamask as well. But its not ...
asha singh's user avatar
0 votes
1 answer
105 views

What is the best version of Hyperledger to use with Ethereum

We are considering the use of Hyperledger but not sure which "version" to use. We are considering either Fabric or Besu, depending on which solution will give us the most robust ...
BlockchainNewbie's user avatar
0 votes
0 answers
951 views

Error: Returned error: The method eth_sendTransaction is not supported. Use eth_sendRawTransaction to send a signed transaction to Besu

I'm using a private network for deploying smart contracts and i want to interact with the deployed contracts that i have. Soo im trying with this smart contract // SPDX-License-Identifier: MIT ...
ProtocolWhisper's user avatar
0 votes
1 answer
526 views

Caliper Integration with local ethereum network giving json path error

I am using hyperledger-caliper for the benchmarking of my private ethereum network. I followed their official source for the setting it up and get into work with ethereum. But I'm getting error shown ...
HAMMAD ALI's user avatar
3 votes
2 answers
389 views

How to disable deployment of smart contracts on besu private network?

Is there any way to disable creation of smart contracts on Hyperledger Besu Private Network for addresses except those that I specify? I want to create private network with zero gas fee, but no one ...
clzola's user avatar
  • 191
0 votes
2 answers
1k views

How to add JWT token in JsonRpcProvider url header when connecting to JWT enabled network?

When connecting to Besu network which enables JWT public key authentication, how to add the token to the JsonRpcProvider (ethers 5.0.8)? Here is the current code (before adding JWT token): let ...
user938363's user avatar
1 vote
0 answers
17 views

Regarding orderer container [closed]

I am trying to setup multi channel network, every thing was working fine except my Orderer was getting exited immediately. As there is no Orderer I could not proceed further. My setup consists of 3 ...
Navneet Yadav's user avatar
1 vote
1 answer
231 views

Failed to extract secret from Hashicorp vault production mode - EthSigner - Hashicorp Vault

Working in hashicorp vault dev mode everything works fine but when I use a hashicor vault in production mode I am not able to connect ethsigner. However, i have been checkin if I can extract the ...
ARR's user avatar
  • 95
1 vote
0 answers
32 views

We need separate hyperledger stack exchange! [closed]

What do you guys say? I think we need a new community so that we don't mix hyperledger and ethereum questions.
Haseeb Saeed's user avatar
2 votes
1 answer
197 views

How can I implement a custom blockchain?

I am doing a research project which requires me to implement a blockchain with pBFT consensus algorithm. The blockchain would be very simple - A client should be able to send 2 values, the validators ...
leper's user avatar
  • 21
2 votes
1 answer
518 views

How to Setup a Private Network in Hyperledger Besu?

I am looking for steps to configure hyperledger besu client for a private network of say 5 nodes.
Aditya Singh's user avatar
0 votes
1 answer
462 views

Scaling Solutions For Hyperledger Besu? [duplicate]

Plasma is a layer-2 scaling solution but it seems to be not very effective , are there any other ethereum scalability solutions that are efficient and can be applied to enterprise use cases alongside ...
Aditya Singh's user avatar
1 vote
0 answers
42 views

Hyperledger REST API roadmap [closed]

With Hyperledger composer deprecated and fabric-rest-api (https://github.com/hyperledger-archives/fabric-sdk-rest) archived, what is the future roadmap of REST API for Hyperledger fabric? What is ...
Kevin's user avatar
  • 75
2 votes
1 answer
306 views

What are the differences between Hyperledger Burrow and Ethereum?

What are the main differences for these two platforms (I know that Burrow runs EVM style smart contracts in a permissioned environment. Does that mean Burrow supports all the different smart contract ...
Madis Saaremaa's user avatar
1 vote
1 answer
260 views

What are the differences between Monax/Hyperledger Burrow and Quorum?

Are there any significant differences between these protocols? Thank you for answering.
P_F's user avatar
  • 21
0 votes
1 answer
209 views

Data availability in Ethereum/Hyperledger-fabric (Blockchain)

I have a use-case like there is an admin who creates application and invites several user to use that application. Now, i need to audit trail over the activities done by the user. Users no need to ...
Hem M's user avatar
  • 263
3 votes
1 answer
544 views

ERC725 and ERC735 vs Hyperledger Indy (decentralized identity/self-sovereign identity)

Which is the better platform for decentralized identity, ERC725 and ERC735 or Hyperledger Indy? Thinking from a performance perspective, Indy would probably shine. However, what about the other ...
Nathan Aw's user avatar
  • 1,954
1 vote
2 answers
87 views

how to reach consensus berween only 2 peers?

Can consensus take place between only 2 peers? Scenario: I am a patient who is visiting a doctor and all the communication/transaction between the both of us happen via a blockchain based app. So ...
Siddharth Manda's user avatar
1 vote
0 answers
619 views

what is the transaction per second of hyperledger fabric with Kafka [closed]

I want to know that how much transactions can be take place in one second over hyperledger fabric with Kafka protocol. I'm actually creating a network, as such project size is not as much big but if ...
Hamza Yasin's user avatar
2 votes
1 answer
183 views

Difference between ethereum blockchain and Hyperledger blockchian

I have found the answers for this question, but still not getting proper answers, that's why I am posting it here for going into dive deeper. I just came to know that Hyperledger in permissioned ...
Riya Soni's user avatar
7 votes
2 answers
528 views

Hyperledger Consensus protocol. [closed]

I'm soo deep inside the consensus protocols like PoW, PoS, PoA or other variants used on permissioned/private blockchains such as JPMorgan's Quorum (Based on Raft), Istambul etc.. But I've not ...
CPereez19's user avatar
  • 2,835
2 votes
2 answers
2k views

Why don't private blockchain networks that do not charge for transactions charge a fee when processing ethereum/ proprietary token on the network?

I ask this questions is there seem to be 2 flavors of blockchain: 1. Public think bitcoin and ethereum. 2. Private hyperledger, SAP Leonaro, etc. The public network charges for transactions which make ...
user3605445's user avatar
1 vote
2 answers
293 views

What data should be stored in contracts or tokens

After watching a sales force movie where they have a session on how they are integrating their product into the blockchain they talk of an example on capturing all the data from the supply chain ...
Matt's user avatar
  • 163
2 votes
0 answers
614 views

Hyperledger Fabric and Ethereum Blockchain Integration

How can I connect Hyperledger Fabric to the ethereum blockchain so as to make payments. I am recording the number of tokens to be alloted in the hyperledger system I want to access the data and then ...
Rajkumar Tiwari's user avatar
3 votes
1 answer
10k views

Hyperledger Vs Ethereum for supply chain management? [closed]

Which is the best blockchain development platform (Hyperledger/Ethereum) for supply chain management?
Yogendra Gupta's user avatar
4 votes
3 answers
2k views

DApps with fiat currency?

Is it possible to build DApp which can accept Fiat currency? Because for an existing business to move to blockchain, the existing users should be able to transition to DApp seamlessly. I would like to ...
Arun Kumar's user avatar
1 vote
4 answers
3k views

How do you start learning about blockchain programming? [closed]

I am new to this technology. I have worked with C#,Javascript and JQuery to build web applications. I have been reading about how to start building DApps and there is so much data about Ethereum, ...
Jitesh Mehta's user avatar
0 votes
0 answers
32 views

Is it possible to migrate your db(users login credentials) to ethereum private network?

I am thinking of migrating db to any of blockchain technologies for security purposes. I have to opt from hyperledger or ethereum private network. Is it good idea or any trades off I should be aware ...
Anam Nizami's user avatar
1 vote
4 answers
176 views

What purpose has blockchain in this use case? - tracking seafood

I'm a newbie in the blockchain world. I watched this example: https://www.hyperledger.org/projects/sawtooth/seafood-case-study And I wonder why I need blockchain to this? What purpose has blockchain ...
Defozo's user avatar
  • 111
1 vote
2 answers
124 views

Is Etherum or Hyperledger be helpful for Money Lending business without Miners reward without using Cryptocurrency?

If I have to implement something like Money Lending Business on a Private - Enterprise level in India provided the facts that - I don't want to reward the miners as it's a private network. I want to ...
Pratik Makune's user avatar
19 votes
2 answers
4k views

What advantages and disadvantages does Open Blockchain / Hyperledger / Fabric have over Ethereum?

Similar to this question about Ethereum and Bitcoin: What advantages and disadvantages does Open Blockchain (OBC) have over Ethereum? What can you do with OBC that you simply cannot with Ethereum? ...
eth's user avatar
  • 86.5k