create-wallets-tool
v1.1.14
Published
Create wallets on avalanche chain
Readme
@avaxs/create-wallets-tool
Introduction
@avaxs/create-wallets-tool is a powerful npm package for generating and managing wallets on the Avalanche blockchain. It simplifies the creation of wallet addresses and keys for developers and users working with Avalanche assets.
Installation
To install, run:
npm install @avaxs/create-wallets-toolUsage
Basic Example
const { createWallet } = require('@avaxs/create-wallets-tool');
async function main() {
const wallet = await createWallet();
console.log('Generated Wallet:', wallet);
}
main();Create Multiple Wallets
const { createWallets } = require('@avaxs/create-wallets-tool');
async function main() {
const wallets = await createWallets(5);
console.log('Generated Wallets:', wallets);
}
main();