Private-Blockchain

供應有限的專用網路

  • April 15, 2022

我只是想知道是否可以創建具有此特徵的專用網路(非開發):

  • 最大供應
  • 一個帳戶已經擁有所有供應
  • 節點/對等體無法探勘
  • 天然氣成本始終為 0

是的,PoA(集團)是可能的。

在這樣的網路中,“挖礦”只能由特定節點完成,初始餘額是預先確定的。

最簡單的方法是

  1. alloc使用配置參數在創世塊中生成乙太幣
  2. 在 PoW 鏈中將塊獎勵設置為 0。
  3. 建構 geth 以獲得具有固定供應和 0 塊獎勵的定制私人網路。

要設置 0 塊獎勵,請在go-ethereum/consensus/ethash/consensus.go文件中將獎勵更改為 0。

FrontierBlockReward       = big.NewInt(0) // Block reward in wei for successfully mining a block
ByzantiumBlockReward      = big.NewInt(0) // Block reward in wei for successfully mining a block upward from Byzantium
ConstantinopleBlockReward = big.NewInt(0) // Block reward in wei for successfully mining a block upward from Constantinople

引用自:https://ethereum.stackexchange.com/questions/21055