avalanche-wallet-sdk icon indicating copy to clipboard operation
avalanche-wallet-sdk copied to clipboard

A Typescript library to create and manage wallets on the Avalanche network.

Results 19 avalanche-wallet-sdk issues
Sort by recently updated
recently updated
newest added

BurnerWallet.on('balanceChangedC', (newBalance)=>{ console.log("done") }) everything else is fine

Hi the following code was not properly clearing EventEmitter events causing MaxListenersExceededWarning. wallet.ts line 150 public destroy() { networkEvents.off('network_change', this.onNetworkChange); } I was able to resolve the waring using networkEvents.removeAllListeners('network_change');...

When doing importP etc... it throws Error, but it's merely normal situation not Error condition. If you want to check that nothing is left accidentally not imported you cannot call...

I would like to update the X-chain balance of a wallet so that I can access the wallet's balance of various ANT tokens. Since updateBalanceX() is private, the only way...

Currently it's only possible to instantiate a `MnemonicWallet` with a seed phrase. For users that have a bip39 passphrase associated with the mnemonic, the constructor should support an optional passphrase...

Current dev version at least. Wayt to reproduce bug: ` 1. create singlekeywallet 2. make exportX( "1000000000", "C",) ` ... you will get "Insufficient Funds error" ` How I fixed...

Version 0.10.1 typescript in npm seems to still have importC without parameters but the code has already importC(chained) version... Wallet.d.ts .... `/** * Imports atomic X chain utxos to the...

I am getting an error when I run yarn install. It says that package.json is not defined by "exports". The error I am getting is below, when I click the...

Additional config to support a local node connected to mainnet and added some tests to match the other configs