| 1 | import 'dart:typed_data'; |
| 2 | |
| 3 | class HardwareAccountData { |
| 4 | HardwareAccountData({ |
| 5 | required this.address, |
| 6 | required this.accountIndex, |
| 7 | required this.derivationPath, |
| 8 | this.xpub, |
| 9 | this.masterFingerprint, |
| 10 | }); |
| 11 | |
| 12 | final String address; |
| 13 | final int accountIndex; |
| 14 | final String derivationPath; |
| 15 | |
| 16 | // Bitcoin Specific |
| 17 | final Uint8List? masterFingerprint; |
| 18 | final String? xpub; |
| 19 | } |