$ cnpm install @ethereumjs/common
v10| Resources common to all EthereumJS implementations. |
|---|
v10
To obtain the latest version, simply require the project using npm:
npm install @ethereumjs/common
import (ESM, TypeScript):
import { Chain, Common, Hardfork } from '@ethereumjs/common'
require (CommonJS, Node.js):
const { Common, Chain, Hardfork } = require('@ethereumjs/common')
All parameters can be accessed through the Common class, instantiated with an object containing either the chain (e.g. 'Mainnet') or the chain together with a specific hardfork provided:
// ./examples/common.ts#L1-L7
import { Common, Hardfork, Mainnet, createCustomCommon } from '@ethereumjs/common'
// With enums:
const commonWithEnums = new Common({ chain: Mainnet, hardfork: Hardfork.Cancun })
// Instantiate with the chain (and the default hardfork)
let c = new Common({ chain: Mainnet })
If no hardfork is provided, the common is initialized with the default hardfork.
Current DEFAULT_HARDFORK: Hardfork.Prague
Here are some simple usage examples:
// ./examples/common.ts#L9-L23
// Get bootstrap nodes for chain/network
console.log('Below are the known bootstrap nodes')
console.log(c.bootstrapNodes()) // Array with current nodes
// Instantiate with an EIP activated (with pre-EIP hardfork)
c = new Common({ chain: Mainnet, hardfork: Hardfork.Cancun, eips: [7702] })
console.log(`EIP 7702 is active -- ${c.isActivatedEIP(7702)}`)
// Instantiate common with custom chainID
const commonWithCustomChainId = createCustomCommon({ chainId: 1234 }, Mainnet)
console.log(`The current chain ID is ${commonWithCustomChainId.chainId()}`)
All EthereumJS packages use cryptographic primitives from the audited ethereum-cryptography library by default. These primitives, including keccak256, sha256, and elliptic curve signature methods, are all written in native JavaScript and therefore have the potential downside of being less performant than alternative cryptography modules written in other languages and then compiled to WASM. If cryptography performance is a bottleneck in your usage of the EthereumJS libraries, you can provide your own primitives to the Common constructor and they will be used in place of the defaults. Depending on how your preferred primitives are implemented, you may need to write wrapper methods around them so they conform to the interface exposed by the common.customCrypto property.
Note: replacing native JS crypto primitives with WASM based libraries comes with new security assumptions (additional external dependencies, unauditability of WASM code). It is therefore recommended to evaluate your usage context before applying!
The following is an example using the @polkadot/wasm-crypto package:
// ./examples/customCrypto.ts
import { createBlock } from '@ethereumjs/block'
import { Common, Mainnet } from '@ethereumjs/common'
import { keccak256, waitReady } from '@polkadot/wasm-crypto'
const main = async () => {
// @polkadot/wasm-crypto specific initialization
await waitReady()
const common = new Common({ chain: Mainnet, customCrypto: { keccak256 } })
const block = createBlock({}, { common })
// Method invocations within EthereumJS library instantiations where the common
// instance above is passed will now use the custom keccak_256 implementation
console.log(block.hash())
}
void main()
The KZG library used for EIP-4844 Blob Transactions is initialized by common under the common.customCrypto property and is then used throughout the Ethereumjs stack wherever KZG cryptography is required. Below is an example of how to initialize (assuming you are using the c-kzg package as your KZG cryptography library).
// ./examples/initKzg.ts
import { Common, Hardfork, Mainnet } from '@ethereumjs/common'
import { trustedSetup } from '@paulmillr/trusted-setups/fast-peerdas.js'
import { KZG as microEthKZG } from 'micro-eth-signer/kzg.js'
const main = async () => {
const kzg = new microEthKZG(trustedSetup)
const common = new Common({
chain: Mainnet,
hardfork: Hardfork.Cancun,
customCrypto: { kzg },
})
console.log(common.customCrypto.kzg) // Should print the initialized KZG interface
}
void main()
We provide hybrid ESM/CJS builds for all our libraries. With the v10 breaking release round from Spring 2025 all libraries are "pure-JS" by default and we have eliminated all hard-wired WASM code. Additionally we have substantially lowered the bundle sizes, reduced the number of dependencies and cut out all usages of Node.js specific primitives (like the Node.js event emitter).
It is easily possible to run a browser build of one of the EthereumJS libraries within a modern browser using the provided ESM build. For a setup example see ./examples/browser.html.
See the API documentation for a full list of functions for accessing specific chain and
dependent hardfork parameters. There are also additional helper functions like
paramByBlock (topic, name, blockNumber) or hardforkIsActiveOnBlock (hardfork, blockNumber)
to ease blockNumber based access to parameters.
Generated TypeDoc API Documentation
With the breaking releases from Summer 2023 we have started to ship our libraries with both CommonJS (cjs folder) and ESM builds (esm folder), see package.json for the detailed setup.
If you use an ES6-style import in your code files from the ESM build will be used:
import { EthereumJSClass } from '@ethereumjs/[PACKAGE_NAME]'
If you use Node.js specific require, the CJS build will be used:
const { EthereumJSClass } = require('@ethereumjs/[PACKAGE_NAME]')
Using ESM will give you additional advantages over CJS beyond browser usage like static code analysis / Tree Shaking which CJS can not provide.
The Common class has a public property events which contains an EventEmitter (using EventEmitter3). Following events are emitted on which you can react within your code:
| Event | Description |
|---|---|
hardforkChanged |
Emitted when a hardfork change occurs in the Common object |
The chain can be set in the constructor like this:
import { Common, Mainnet } from '@ethereumjs/common'
const common = new Common({ chain: Mainnet })
Supported chains:
mainnet (Mainnet)sepolia (Sepolia) (v2.6.1+)holesky (Holesky) (v4.1.0+)hoodi (Hoodi) (v10+ (new versioning scheme))The following chain-specific parameters are provided:
namechainIdnetworkIdconsensusType (e.g. pow or poa)consensusAlgorithm (e.g. ethash or clique)consensusConfig (depends on consensusAlgorithm, e.g. period and epoch for clique)genesis block header valueshardforks block numbersbootstrapNodes listdnsNetworks list (EIP-1459-compliant list of DNS networks for peer discovery)To get an overview of the different parameters have a look at one of the chain configurations in the chains.ts configuration
file, or to the Chain type in ./src/types.ts.
Starting with the v10 release series using custom chain configurations has been simplified and consolidated in a single API createCustomCommon(). This constructor can be used both to make simple chain ID adjustments and keep the rest of the config conforming to a given "base chain":
import { createCustomCommon, Mainnet } from '@ethereumjs/common'
createCustomCommon({chainId: 123}, Mainnet)
See the Tx library README for how to use such a Common instance in the context of sending txs to L2 networks.
Beyond that, it is possible to customize to a fully custom chain by passing in a complete configuration object as first parameter:
// ./examples/customChain.ts
import { Mainnet, createCustomCommon } from '@ethereumjs/common'
import { customChainConfig } from '@ethereumjs/testdata'
// Add custom chain config
const common1 = createCustomCommon(customChainConfig, Mainnet)
console.log(`Common is instantiated with custom chain parameters - ${common1.chainName()}`)
For lots of custom chains (e.g., devnets and testnets), you might come across a genesis json config which has both config specification for the chain as well as the genesis state specification. You can derive the common from such configuration in the following manner:
// ./examples/fromGeth.ts
import { createCommonFromGethGenesis } from '@ethereumjs/common'
import { postMergeGethGenesis } from '@ethereumjs/testdata'
import { hexToBytes } from '@ethereumjs/util'
const genesisHash = hexToBytes('0x3b8fb240d288781d4aac94d3fd16809ee413bc99294a085798a589dae51ddd4a')
// Load geth genesis JSON file into lets say `genesisJSON` and optional `chain` and `genesisHash`
const common = createCommonFromGethGenesis(postMergeGethGenesis, {
chain: 'customChain',
genesisHash,
})
// If you don't have `genesisHash` while initiating common, you can later configure common (for e.g.
// after calculating it via `blockchain`)
common.setForkHashes(genesisHash)
console.log(`The London forkhash for this custom chain is ${common.forkHash('london')}`)
The hardfork can be set in constructor like this:
// ./examples/common.ts#L1-L4
import { Common, Hardfork, Mainnet, createCustomCommon } from '@ethereumjs/common'
// With enums:
const commonWithEnums = new Common({ chain: Mainnet, hardfork: Hardfork.Cancun })
There are currently parameter changes by the following past and future hardforks supported by the library:
chainstart (Hardfork.Chainstart)homestead (Hardfork.Homestead)dao (Hardfork.Dao)tangerineWhistle (Hardfork.TangerineWhistle)spuriousDragon (Hardfork.SpuriousDragon)byzantium (Hardfork.Byzantium)constantinople (Hardfork.Constantinople)petersburg (Hardfork.Petersburg) (aka constantinopleFix, apply together with constantinople)istanbul (Hardfork.Istanbul)muirGlacier (Hardfork.MuirGlacier)berlin (Hardfork.Berlin) (since v2.2.0)london (Hardfork.London) (since v2.4.0)merge (Hardfork.Merge) (since v2.5.0)shanghai (Hardfork.Shanghai) (since v3.1.0)cancun (Hardfork.Cancun) (since v4.2.0)prague (Hardfork.Prague) (DEFAULT_HARDFORK) (since v10)osaka (Hardfork.Osaka) (since v10.1.0)amsterdam (Hardfork.Amsterdam) (IN DEVELOPMENT)The next upcoming HF Hardfork.Amsterdam is currently in development (started January 2026).
For hardfork-specific parameter access with the param() and paramByBlock() functions
you can use the following topics:
gasConfiggasPricesvmpowshardingSee one of the hardfork configurations in the hardforks.ts file
for an overview. For consistency, the chain start (chainstart) is considered an own
hardfork.
EIPs are native citizens within the library and can be activated like this:
const common = new Common({ chain: Mainnet, hardfork: Hardfork.Cancun, eips: [7702] })
The following EIPs are currently supported:
experimental)The EthereumJS GitHub organization and its repositories are managed by members of the former Ethereum Foundation JavaScript team and the broader Ethereum community. If you want to join for work or carry out improvements on the libraries see the developer docs for an overview of current standards and tools and review our code of conduct.
Copyright 2013 - present © cnpmjs.org | Home |