UNPKG

@kba-tools/genesis-tool

Version:

A forked repo from ConsenSys which helps to generate genesis block for Besu Network with xemptyBlockPeriod field.

25 lines (16 loc) 359 B
export type PrivateKey = Buffer; export type PublicKey = Buffer; export type Address = Buffer; export type EthAccount = { privateKey: string; publicKey: string; address: string; keystore: string; password: string; }; export type NodeKeys = { privateKey: PrivateKey; publicKey: PublicKey; address: Address; ethAccount: EthAccount; };