
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@bitsler/neo-address
Advanced tools
Generate hd address and mnemonic that is compatible with tronlink wallet
yarn add @bitsler/neo-address or npm install @bitsler/neo-addressimport Address from '@bitsler/neo-address';
const mnemonic = Address.generateMnemonic();
console.log(mnemonic);
// will show you the 24-word mnemonic seed
import Address from '@bitsler/neo-address';
const mnemonic = Address.generateMnemonic();
const address = new Address(mnemonic, 0);
// 2nd argument is optional and defaults to 0, this corresponds to the last index used to generate an address
console.log(address.master)
console.log(address.masterInfo)
console.log(address.createAddress())
console.log(address.getAddress(1));
console.log(address.getAddress(0));
// using index 0 to getAddress is also the same as address.master
console.log(address.getAddressInfo(1))
console.log(address.mnemonic)
// will return the mnemonic seed
This module does not keep track of your addresses or your indices. The user must keep track or store the address indices and keys.
FAQs
generate hd address and mnemonic that is compatible with neo-cli
We found that @bitsler/neo-address 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.