Questions tagged [private-blockchain]

Private blockchains are not available for the public and are maintained/secured by a cluster of trusted nodes. These kind of blockchains are useful when dealing with sensitive information.

1145 questions
9
votes
2 answers

How to create a secure, production ready private chain?

I'm looking for more information or resources on how to run a private chain with ethereum with multiple nodes that would work in production and would only be accessible to my users/network. I know all about the dev private network but as stated it's…
jayD
  • 2,462
  • 2
  • 14
  • 25
7
votes
3 answers

Private blockchain for production?

Even though it might be a bit soon for use in production, but all I find about setting up a private blockchain seems to be for testing. But the fact we have a genesis.json should mean that anyone has the freedom to make their own ethereum…
Cubedj
  • 363
  • 1
  • 2
  • 8
4
votes
1 answer

Custom list of client/node for private chain - Consortium blockchains

I've been reading on making a custom private chains here , here , here,here and here . It's pretty clear how to create a custom chain and having remote client connect to the node with this : geth attach # connect over IPC on…
jayD
  • 2,462
  • 2
  • 14
  • 25
3
votes
0 answers

Cannot create a second account on my private chain from the Ethereum Wallet

Just playing around with Ethereum. I create my very first private-chain on a Windows machine.. First I'm starting up the node/miner: D:\ethereum\gethlatest>geth --dev --rpc --rpcport 8002 --datadir D:\ethereum\gethlatest\privatechain --ipcpath …
Boestin
  • 91
  • 2
3
votes
2 answers

How is a private blockchain secure from a 51% attack?

How does a private blockchain such as VaultOS protect from a 51% attack? Is it somehow piggybacking on the public blockchain, or (I assume) are they running separate servers they control? It seems if they are running their own hardware, that it is…
mowliv
  • 289
  • 1
  • 9
3
votes
0 answers

Can't establish the connection with bootnode and two nodes

I have problem with starting my private network. Two nodes on different PC and with external IP addresses, starts with next parameters: --verbosity 3 --identity "TestNet" --rpc --rpcport "8081" --rpccorsdomain "*" --datadir "%datadir%" --port 25565…
segar
  • 41
  • 2
2
votes
2 answers

Private Blockchain

Suppose I create my own private blockchain using Ethereum over the public network means my node is reachable from the internet, now I don't want to share my genesis.json but still want that other can connect with my node to participate in the…
Siddharth
  • 105
  • 10
2
votes
1 answer

Error: invalid merkle root | Error in XDPoS Consensus | fork of go-ethereum

Block Synchronisation failed in code :- https://github.com/XinFinOrg/XDPoS-TestNet-Apothem ERROR[03-23|19:47:12] #### BAD BLOCK Chain config: {ChainID: 1151 Homestead: 1 DAO: DAOSupport: false EIP150: 2 EIP155: 3 EIP158: 3 Byzantium: 4…
2
votes
1 answer

Why are geth testnet nodes not communicating

I'm on Windows 10 pro. Using a reasonable genesis block, I have set up 3 geth instances (01,02, 03) on the same laptop called as follows: geth ^ --identity "XxxxxTest01" ^ --genesis C:\WORK\Ethereum\Geth\XxxxxTest_Genesis.json ^ --datadir…
Alex K
  • 41
  • 5
2
votes
1 answer

Do I need blockchain to connect local database's?

Hello all and Happy New Year! My small business and my client use the same vendor application where the vendor application is locally installed at each location. Our client uses barcoding within their business and we use barcoding within our…
2
votes
1 answer

Generating genesis.conf for Clique PoA private network via command line

I'm trying to generate a Clique POA genesis file that specifies the original sealers using automation. However, puppeth only supports user input at the moment. There's no support for command line options such as. puppeth genesis --protocol clique…
2
votes
1 answer

Communication between nodes of two private blockchains

How can the nodes on one Ethereum private blockchain send/receive transactions from the nodes operating on another private blockchain?
sourh
  • 121
  • 4
2
votes
1 answer

Where can I set the max/total supply of ether for a private ethereum blockchain?

I have created a private ethereum based blockchain and I would like to set the max/total supply and not sure where to do this or how to do this during the genesis block creation.
Lismore
  • 1,303
  • 7
  • 25
2
votes
0 answers

Should genesis.json be copied to each node for private testnet?

I am referring to the main page of go-ethereum here. With the genesis state defined in the above JSON file, you'll need to initialize every Geth node with it prior to starting it up to ensure all blockchain parameters are correctly set: $ geth…
tera
  • 21
  • 2
2
votes
2 answers

bind address is already in use

I am very new to blockchain. I try to go through the following example but I can not make the second node. how-to-build-a-private-ethereum-blockchain What I have done I have two directories for each node in the go-ethereum directory(node1, node2). I…
1
2 3 4