Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@ethersproject/wordlists
Advanced tools
@ethersproject/wordlists is a part of the ethers.js library, which provides utilities for working with wordlists, such as those used in mnemonic phrases for cryptocurrency wallets. It supports multiple languages and allows for encoding and decoding of mnemonic phrases.
Get Wordlist
This feature allows you to retrieve a specific wordlist, such as the English wordlist, and access individual words by their index.
const { wordlists } = require('@ethersproject/wordlists');
const englishWordlist = wordlists.en;
console.log(englishWordlist.getWord(0)); // 'abandon'
Get Wordlist Language
This feature allows you to get the language/locale of a specific wordlist.
const { wordlists } = require('@ethersproject/wordlists');
const englishWordlist = wordlists.en;
console.log(englishWordlist.locale); // 'en'
Get Word Index
This feature allows you to get the index of a specific word in the wordlist.
const { wordlists } = require('@ethersproject/wordlists');
const englishWordlist = wordlists.en;
console.log(englishWordlist.getWordIndex('abandon')); // 0
The bip39 package provides similar functionality for working with mnemonic phrases, including generating and validating mnemonic phrases. It also supports multiple languages. Compared to @ethersproject/wordlists, bip39 is more focused on the BIP-39 standard for mnemonic phrases.
The mnemonic package is another library for generating and validating mnemonic phrases. It supports multiple languages and provides utilities for working with mnemonic phrases. It is similar to @ethersproject/wordlists but is more focused on mnemonic phrase generation and validation.
This sub-module is part of the ethers project.
Supported Languages:
For more information, see the documentation.
In the browser distribution file, only the English word list is included in the
root ethers
pacakge. To include additional word lists, they must be added using
additional <script>
tags, after the root ethers
library has been included.
MIT License
FAQs
Word lists for BIP39 wallets.
The npm package @ethersproject/wordlists receives a total of 651,421 weekly downloads. As such, @ethersproject/wordlists popularity was classified as popular.
We found that @ethersproject/wordlists 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.