stack_wallet/lib/wallets/crypto_currency/intermediate/bip39_hd_currency.dart

74 lines
2.2 KiB
Dart
Raw Normal View History

2023-10-30 20:02:33 +00:00
import 'package:coinlib_flutter/coinlib_flutter.dart' as coinlib;
2023-09-18 21:28:31 +00:00
import 'package:crypto/crypto.dart';
import 'package:flutter/foundation.dart';
import '../../../models/isar/models/blockchain_data/address.dart';
import '../../../utilities/amount/amount.dart';
import '../../../utilities/enums/derive_path_type_enum.dart';
import 'bip39_currency.dart';
2023-09-18 21:28:31 +00:00
abstract class Bip39HDCurrency extends Bip39Currency {
Bip39HDCurrency(super.network);
coinlib.Network get networkParams;
2023-09-18 21:28:31 +00:00
Amount get dustLimit;
List<DerivePathType> get supportedDerivationPathTypes;
int get maxUnusedAddressGap => 50;
2023-09-18 21:28:31 +00:00
String constructDerivePath({
required DerivePathType derivePathType,
int account = 0,
required int chain,
required int index,
});
({coinlib.Address address, AddressType addressType}) getAddressForPublicKey({
required coinlib.ECPublicKey publicKey,
required DerivePathType derivePathType,
});
String addressToScriptHash({required String address}) {
try {
final addr = coinlib.Address.fromString(address, networkParams);
return convertBytesToScriptHash(addr.program.script.compiled);
} catch (e) {
rethrow;
}
}
static String convertBytesToScriptHash(Uint8List bytes) {
final hash = sha256.convert(bytes.toList(growable: false)).toString();
final chars = hash.split("");
final List<String> reversedPairs = [];
// TODO find a better/faster way to do this?
int i = chars.length - 1;
while (i > 0) {
reversedPairs.add(chars[i - 1]);
reversedPairs.add(chars[i]);
i -= 2;
}
return reversedPairs.join("");
}
DerivePathType addressType({required String address}) {
final address2 = coinlib.Address.fromString(address, networkParams);
2024-03-26 21:05:16 +00:00
if (address2 is coinlib.P2PKHAddress) {
return DerivePathType.bip44;
} else if (address2 is coinlib.P2SHAddress) {
return DerivePathType.bip49;
} else if (address2 is coinlib.P2WPKHAddress) {
return DerivePathType.bip84;
} else if (address2 is coinlib.P2TRAddress) {
return DerivePathType.bip86;
} else {
// TODO: [prio=med] better error handling
throw ArgumentError('Invalid address');
}
}
2023-09-18 21:28:31 +00:00
}