@kba-tools/genesis-tool
Version:
A forked repo from ConsenSys which helps to generate genesis block for Besu Network with xemptyBlockPeriod field.
17 lines • 407 B
TypeScript
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;
};
//# sourceMappingURL=nodeKeys.d.ts.map