A module to provide genesis states of well known networks. |
---|
This module provides access to Ethereum genesis state for the following networks:
- Mainnet
- Goerli
- Sepolia
- Holesky
The package can be install with:
npm i @ethereumjs/genesis
// ./examples/simple.ts
import { Chain } from '@ethereumjs/common' // or directly use chain ID
import { getGenesis } from '@ethereumjs/genesis'
const mainnetGenesis = getGenesis(Chain.Mainnet)
console.log(
`This balance for account 0x000d836201318ec6899a67540690382780743280 in this chain's genesis state is ${parseInt(
mainnetGenesis!['0x000d836201318ec6899a67540690382780743280'] as string,
)}`,
)
See our organizational documentation for an introduction to EthereumJS
as well as information on current standards and best practices. If you want to join for work or carry out improvements on the libraries, please review our contribution guidelines first.