![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@muevoapp/ethereumjs-wallet
Advanced tools
A lightweight wallet implementation. At the moment it supports key creation and conversion between various formats.
It is complemented by the following packages:
Motivations are:
ethereumjs-util
and ethereumjs-tx
)Features not supported:
For information about the Wallet's API, please go to ./docs/classes/wallet.md.
You can import the Wallet
class like this
Node.js / ES5:
const { Wallet } = require('ethereumjs-wallet')
ESM / TypeScript:
import { Wallet } from 'ethereumjs-wallet'
Importing various third party wallets is possible through the thirdparty
submodule:
Node.js / ES5:
const { thirdparty } = require('ethereumjs-wallet')
ESM / TypeScript:
import { thirdparty } from 'ethereumjs-wallet'
Please go to ./docs/README.md for more info.
To use BIP32 HD wallets, first include the hdkey
submodule:
Node.js / ES5:
const { hdkey } = require('ethereumjs-wallet')
ESM / TypeScript:
import { hdkey } from 'ethereumjs-wallet'
Please go to ./docs/classes/ethereumhdkey.md for more info.
Provider Engine is
not very actively maintained
and support has been removed along v1.0.0
release, see
issue #115 for context.
You can use the the old src/provider-engine.ts
code (see associated PR) as some boilerplate
for your own integration if needed.
toV3
The options
is an optional object hash, where all the serialization parameters can be fine tuned:
kdf
. Size must match the requirements of the KDF (key derivation function). Random number generated via crypto.getRandomBytes
if nothing is supplied.cipher
. Size must match the requirements of the cipher. Random number generated via crypto.getRandomBytes
if nothing is supplied.cipher
settings, this must match the block sizes of those.OpenSSL
, e.g. aes-128-ctr
or aes-128-cbc
.Depending on the kdf
selected, the following options are available too.
For pbkdf2
:
c
- Number of iterations. Defaults to 262144.prf
- The only supported (and default) value is hmac-sha256
. So no point changing it.For scrypt
:
n
- Iteration count. Defaults to 262144.r
- Block size for the underlying hash. Defaults to 8.p
- Parallelization factor. Defaults to 1.The following settings are favoured by the Go Ethereum implementation and we default to the same:
kdf
: scrypt
dklen
: 32
n
: 262144
r
: 8
p
: 1
cipher
: aes-128-ctr
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.
MIT License
Copyright (C) 2016 Alex Beregszaszi
FAQs
Utilities for handling Ethereum keys
The npm package @muevoapp/ethereumjs-wallet receives a total of 1 weekly downloads. As such, @muevoapp/ethereumjs-wallet popularity was classified as not popular.
We found that @muevoapp/ethereumjs-wallet 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.