Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@ethersproject/address
Advanced tools
@ethersproject/address is a part of the ethers.js library, which provides utilities for handling Ethereum addresses. It includes functions for address validation, checksum address generation, and address formatting.
Address Validation
This feature allows you to check if a given string is a valid Ethereum address.
const { isAddress } = require('@ethersproject/address');
const address = '0x742d35Cc6634C0532925a3b844Bc454e4438f44e';
console.log(isAddress(address)); // true
Checksum Address Generation
This feature converts an Ethereum address to its checksummed version, which includes mixed-case letters to help prevent errors.
const { getAddress } = require('@ethersproject/address');
const address = '0x742d35Cc6634C0532925a3b844Bc454e4438f44e';
const checksumAddress = getAddress(address);
console.log(checksumAddress); // '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
Address Formatting
This feature formats an Ethereum address to its canonical form, ensuring consistency in address representation.
const { getAddress } = require('@ethersproject/address');
const address = '0x742d35Cc6634C0532925a3b844Bc454e4438f44e';
const formattedAddress = getAddress(address);
console.log(formattedAddress); // '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
web3-utils is a utility library that is part of the web3.js library. It provides similar functionalities for Ethereum address validation and formatting. Compared to @ethersproject/address, web3-utils is part of a larger library that includes many other utilities for interacting with the Ethereum blockchain.
ethereumjs-util is a collection of utility functions for Ethereum, including address validation and checksum generation. It is a lower-level library compared to @ethersproject/address and provides more granular control over Ethereum-related operations.
EXPERIMENTAL
Please see the ethers repository for more informations.
@TODO
MIT License
FAQs
Utilities for handling Ethereum Addresses for ethers.
The npm package @ethersproject/address receives a total of 589,133 weekly downloads. As such, @ethersproject/address popularity was classified as popular.
We found that @ethersproject/address demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.