0.2.2 • Published 3 months ago

@cosmcaptain/cosmjs-wallet-kit v0.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

cosmjs-wallet-kit

This is a toolkit for batch generate cosmos/osmo/juno/axelar &etc wallets from a same mnemonic. Also with function of batch faucet other accounts from main account.

Functions

  • Generate a new mnemonic
const test1= async ()=>{
  //you can custom the number of mnemonic words
  const mnemonic=await generateMnemonic(15);
  console.log("mnemonic: ",mnemonic);
}
  • create a cosmjs wallet kit instance
import { Cosmwalletkit } from '@cosmcaptain/cosmjs-wallet-kit';
//chain value can be cosmos/osmo/juno/axelar
//rpc is the endpoint to the chain
let cosmkit = new Cosmwalletkit(mnemonic,chain,rpc)
  • generate wallet signer(have 2 version)
//ver1
//will return 8 wallets start from hdPath index at 0
const walletSigner = await cosmkit.getSignerFromMnemonic(8);

//ver2
//will return wallets which hdPath is 0,1,2
const walletSigner = await cosmkit.getSignerByPathIndex([0,1,2])
  • get Account Data
const accounts:AccountData[]=await cosmkit.getAccountData(walletSigner);
const address=accounts[0].address;
console.log("address:",address);

view api document of AccountData

  • query balance of wallet with hdPath
const balances:WalletBalance[] = await cosmkit.queryBalance([2,3,4]);
const address = balances[0].address;
const coins:Coin[] = balances[0].coins;
const hdPath = balances[0].index;

view api document of Coin

  • batch faucet wallets
//mainPath which is the hdPath to send tokens from
//receiver is a number array which is receive tokens
//value is the amount for each wallet to send
const result = await cosmkit.batchFaucet(mainPath,receiver,value,customGas)
console.log(result.code);
  • convert Coin to uCoin(x1000000)
import { touCoin } from  '@cosmcaptain/cosmjs-wallet-kit';
const amount=touCoin(0.1);
console.log("amount:",amount);

tips:

🌌🚀🚀🚀

0.2.1

3 months ago

0.2.0

3 months ago

0.2.2

3 months ago

0.1.0

3 months ago

0.0.1

3 months ago