Releases: iamnotstatic/multichain-crypto-wallet
Releases · iamnotstatic/multichain-crypto-wallet
v0.2.10
Imrovement
- Updated wallet helper functions across Bitcoin, Ethereum, Solana, Tron, Waves to accept structured payloads for better clarity and type safety.
- Introduced new utility functions for network handling and response formatting.
- Enhanced type definitions in utils/types.ts to support new payload structures.
- Fixed this issue of bitcoins always returning the same address #37
- Fixed this issue of tron private key having prefix
0x#36 - Fixed this issue of bitcoin timing out #35
Release 0.2.9
TRON Network Integration
Features added:
- Create TRON wallets using random generation or mnemonic phrases
- Generate addresses from private keys
- Check TRX and TRC20 token balances
- Send TRX and TRC20 tokens
- Query transaction information
- Get TRC20 token information
- Execute smart contract calls on TRON network
Release 0.2.8
Updated Readme and fix the issue with Axios not running on test
Release 0.2.7
Added a method to generate a mnemonic.
-
generateMnemonicThe default number of words is12but you can pass a number param if you want to generate more or less.Note: Mnemonics with less than 12 words have low entropy and may be guessed by an attacker.
Release 0.2.6
Fixed Solana getBalance to convert Lamports to SOL
Release v0.2.5
Added support for the waves network, the following were implemented
getBalanceWAVES and Waves TokenscreateWalletGenerate Waves wallet/accountgenerateWalletFromMnemonicgenerate wallet from mnemonics/seedtransfertransfer (WAVES and Waves Tokens)smartContractCallsmartCustom smart contract callgetTokenInfoGet Waves Tokens token infogetTransactionGet transaction data by transaction hash
Release v0.2.4
Added Bitcoin
createWalletGenerate bitcoin wallet/accountgetBalanceGet account/wallet balancegenerateWalletFromMnemonicGenerate wallet/account from mnemonicgetAddressFromPrivateKeyGet wallet/account address by private keygetTransactionGet transaction data by transaction hashtransferTransfer bitcoin from one account/wallet to another
Release v0.2.3
Changed
getTransactionandtransferto return direct transaction object for Ethereum/EVM and Solana
Added
gasLimitanddataoption on transfer for Ethereum/EVM chains- Ability to make custom smart contract calls on for Ethereum/EVM chains