ethereumjs-util

A collection of utility functions for Ethereum

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
ethereumjs-util
7.1.52 years ago9 years agoMinified + gzip package size for ethereumjs-util in KB

Readme

ethereumjs-util
!NPM Packageutil-npm-badgeutil-npm-link !GitHub Issuesutil-issues-badgeutil-issues-link !Actions Statusutil-actions-badgeutil-actions-link !Code Coverageutil-coverage-badgeutil-coverage-link !Discorddiscord-badgediscord-link
A collection of utility functions for Ethereum. It can be used in Node.js and in the browser with browserify.
INSTALL
npm install ethereumjs-util
USAGE
import assert from 'assert'
import { isValidChecksumAddress, unpadBuffer, BN } from 'ethereumjs-util'

assert.ok(isValidChecksumAddress('0x2F015C60E0be116B1f0CD534704Db9c92118FB6A'))

assert.ok(unpadBuffer(Buffer.from('000000006600', 'hex')).equals(Buffer.from('6600', 'hex')))

assert.ok(new BN('dead', 16).add(new BN('101010', 2)).eqn(57047))
API

Documentation

Read the API docs.

Modules

- Account class - Private/public key and address-related functionality (creation, validation, conversion) - Address class and type - Byte-related helper and conversion functions - Exposed constants
- e.g. `KECCAK256_NULL_S` for string representation of Keccak-256 hash of null
- Hash functions - Helper function for creating a binary object (DEPRECATED) - Signing, signature validation, conversion, recovery - Helpful TypeScript types - Internalized helper methods - Re-exports of BN, rlp

ethjs-util methods

The following methods are available by an internalized version of the ethjs-util package (MIT license), see internal.ts. The original package is not maintained any more and the original functionality will be replaced by own implementations over time (starting with the v7.1.3 release, October 2021).
  • arrayContainsArray
  • getBinarySize
  • stripHexPrefix
  • isHexPrefixed
  • isHexString
  • padToEven
  • fromAscii
  • fromUtf8
  • toUtf8
  • toAscii
  • getKeys

They can be imported by name:
import { stripHexPrefix } from 'ethereumjs-util'

Re-Exports

ethereumjs-util re-exports the following commonly-used libraries:

They can be imported by name:
import { BN, rlp } from 'ethereumjs-util'
EthereumJS
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 do improvements on the libraries have a look at our contribution guidelines.
LICENSE
MPL-2.0