import 'dart:async'; import 'package:bitcoin_base/bitcoin_base.dart'; import 'package:blockchain_utils/blockchain_utils.dart'; import 'package:cw_bitcoin/utils.dart'; import 'package:cw_core/hardware/hardware_account_data.dart'; import 'package:ledger_flutter/ledger_flutter.dart'; import 'package:ledger_litecoin/ledger_litecoin.dart'; class LitecoinHardwareWalletService { LitecoinHardwareWalletService(this.ledger, this.device); final Ledger ledger; final LedgerDevice device; Future> getAvailableAccounts({int index = 0, int limit = 5}) async { final litecoinLedgerApp = LitecoinLedgerApp(ledger); final version = await litecoinLedgerApp.getVersion(device); print(version); final accounts = []; final indexRange = List.generate(limit, (i) => i + index); final xpubVersion = Bip44Conf.litecoinMainNet.altKeyNetVer; for (final i in indexRange) { final derivationPath = "m/84'/2'/$i'"; final xpub = await litecoinLedgerApp.getXPubKey(device, accountsDerivationPath: derivationPath, xPubVersion: int.parse(hex.encode(xpubVersion.public), radix: 16)); final hd = Bip32Slip10Secp256k1.fromExtendedKey(xpub, xpubVersion); final address = generateP2WPKHAddress(hd: hd, index: 0, network: LitecoinNetwork.mainnet); print(xpub); accounts.add(HardwareAccountData( address: address, accountIndex: i, derivationPath: derivationPath, xpub: xpub, )); } return accounts; } }