blockchain_utils icon indicating copy to clipboard operation
blockchain_utils copied to clipboard

Comprehensive Crypto & Blockchain Toolkit: Pure Dart, Cross-Platform, Encoding, Cryptography, Addresses, Mnemonics, & More

Results 4 blockchain_utils issues
Sort by recently updated
recently updated
newest added

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)....