
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@radarrelay/wallet-manager
Advanced tools
A library that simplifies Ethereum wallet creation.
npm install @radarrelay/wallet-manager
yarn add @radarrelay/wallet-manager
import { LightWalletManager } from '@radarrelay/wallet-manager';
Create a new wallet
Create a new lightwallet and save it into local storage or as a file.
Options:
m/44'/60'/0'/0.const lightWallet = await LightWalletManager.createWalletAsync(options: LightWalletOptions): Promise<LightWallet>
Save an existing wallet
Save the encrypted lightwallet into local storage or as a file.
LightWalletManager.saveWallet(wallet: LightWallet): void
Load an existing wallet
Load the lightwallet from local storage or the file system.
const lightWallet = await LightWalletManager.loadWalletAsync(password: string): Promise<LightWallet>
Add new accounts
Adds 1 or more accounts to the lightwallet instance and saves the updated wallet.
lightWallet.addNewAccounts(numberOfAccounts: number = 1): void
Export private key
Exports the private key for a single account.
const privateKey = lightWallet.exportAccountPrivateKeyAsync(account: string, password: string): Promise<string>
Export seed phrase
Exports the wallet's seed phrase.
const seedPhrase = await lightWallet.exportSeedPhraseAsync(password: string): Promise<string>
Get accounts
Gets all the accounts from the wallet.
const accounts = lightWallet.getAccounts(): string[]
Serialize
Serialize the encrypted lightwallet.
const serializedWallet = lightWallet.serialize(): string
Sign a message
const signedMsg = await lightWallet.signer.signPersonalMessageAsync(account: string, message: string): Promise<string>
Sign a message hash
const signedMsgHash = await lightWallet.signer.signPersonalMessageHashAsync(account: string, messageHash: string): Promise<string>
Sign a transaction
const signedTx = await lightWallet.signer.signTransactionAsync(txParams: PartialTxParams): Promise<string>
Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
This project is licensed under the MIT License - see the LICENSE.md file for details.
FAQs
A library that simplifies Ethereum wallet creation.
We found that @radarrelay/wallet-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.