nimbus-eth1/nimbus/genesis.nim

52 lines
1.5 KiB
Nim
Raw Normal View History

import
std/tables,
eth/[common, rlp, trie, p2p],
2019-02-05 19:15:50 +00:00
chronicles, eth/trie/db,
./db/[db_chain, state_db],
./constants,
./chain_config, ./forks, ./p2p/gaslimit
2020-01-13 18:35:40 +00:00
2018-09-10 08:44:07 +00:00
proc toBlock*(g: Genesis, db: BaseChainDB = nil): BlockHeader =
2018-11-30 10:07:20 +00:00
let (tdb, pruneTrie) = if db.isNil: (newMemoryDB(), true)
else: (db.db, db.pruneTrie)
2018-08-01 12:50:44 +00:00
var trie = initHexaryTrie(tdb)
2018-11-30 10:07:20 +00:00
var sdb = newAccountStateDB(tdb, trie.rootHash, pruneTrie)
2018-08-01 12:50:44 +00:00
for address, account in g.alloc:
2018-08-09 09:25:37 +00:00
sdb.setAccount(address, newAccount(account.nonce, account.balance))
sdb.setCode(address, account.code)
2018-08-09 09:25:37 +00:00
for k, v in account.storage:
sdb.setStorage(address, k, v)
2018-08-01 12:50:44 +00:00
result = BlockHeader(
nonce: g.nonce,
timestamp: g.timestamp,
extraData: g.extraData,
gasLimit: g.gasLimit,
difficulty: g.difficulty,
mixDigest: g.mixhash,
coinbase: g.coinbase,
stateRoot: sdb.rootHash,
2018-08-01 12:50:44 +00:00
parentHash: GENESIS_PARENT_HASH,
txRoot: BLANK_ROOT_HASH,
receiptRoot: BLANK_ROOT_HASH,
ommersHash: EMPTY_UNCLE_HASH
)
if g.baseFeePerGas.isSome:
result.baseFee = g.baseFeePerGas.get()
elif db.isNil.not and db.config.toFork(0.toBlockNumber) >= FkLondon:
result.baseFee = EIP1559_INITIAL_BASE_FEE.u256
if g.gasLimit.isZero:
2018-08-01 12:50:44 +00:00
result.gasLimit = GENESIS_GAS_LIMIT
if g.difficulty.isZero:
2018-08-01 12:50:44 +00:00
result.difficulty = GENESIS_DIFFICULTY
proc initializeEmptyDb*(db: BaseChainDB) =
2019-01-08 10:47:40 +00:00
trace "Writing genesis to DB"
let b = db.genesis.toBlock(db)
doAssert(b.blockNumber.isZero, "can't commit genesis block with number > 0")
discard db.persistHeaderToDb(b)