blockchain_utils
blockchain_utils copied to clipboard
Comprehensive Crypto & Blockchain Toolkit: Pure Dart, Cross-Platform, Encoding, Cryptography, Addresses, Mnemonics, & More
Thanks for the awesome library! I was wondering if there's a way to use BIP49 with a configuration not listed [here](https://github.com/mrtnetwork/blockchain_utils/blob/main/lib/bip/bip/conf/bip49/bip49_coins.dart). If not, would it be possible to add support...
Please tell me how to generate a public address from a private key in the TRON network? ``` final keyBytes = BytesUtils.fromHexString(privateKeyHex); final privKey = Secp256k1PrivateKey.fromBytes(keyBytes); final pubKey = privKey.publicKey.publicKey;...
Should this ethereumTestnet BipCoinConfig be used for networks like Ethereum Sepolia and Ethereum Holesky? I am asking this because it uses `coinIdx = 1` (the Bitcoin testnet's SLIP44 coin type)....