2021-12-24 12:52:08 +00:00
|
|
|
part of 'bitcoin.dart';
|
|
|
|
|
|
|
|
class CWBitcoin extends Bitcoin {
|
2023-08-25 15:12:07 +00:00
|
|
|
@override
|
|
|
|
TransactionPriority getMediumTransactionPriority() => BitcoinTransactionPriority.medium;
|
|
|
|
|
|
|
|
@override
|
2023-10-09 21:19:58 +00:00
|
|
|
WalletCredentials createBitcoinRestoreWalletFromSeedCredentials({
|
|
|
|
required String name,
|
|
|
|
required String mnemonic,
|
|
|
|
required String password,
|
|
|
|
required DerivationType derivationType,
|
|
|
|
required String derivationPath,
|
|
|
|
}) =>
|
2023-08-25 15:12:07 +00:00
|
|
|
BitcoinRestoreWalletFromSeedCredentials(
|
|
|
|
name: name,
|
|
|
|
mnemonic: mnemonic,
|
|
|
|
password: password,
|
|
|
|
derivationType: derivationType,
|
|
|
|
derivationPath: derivationPath);
|
|
|
|
|
2023-08-30 13:31:58 +00:00
|
|
|
String bitcoinTransactionPriorityWithLabel(TransactionPriority priority, int rate) =>
|
|
|
|
(priority as BitcoinTransactionPriority).labelWithRate(rate);
|
|
|
|
|
|
|
|
void updateUnspents(Object wallet) async {
|
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
|
|
|
await bitcoinWallet.updateUnspent();
|
|
|
|
}
|
|
|
|
|
2023-10-12 22:50:16 +00:00
|
|
|
@override
|
2022-01-12 16:13:16 +00:00
|
|
|
List<TransactionPriority> getLitecoinTransactionPriorities()
|
|
|
|
=> LitecoinTransactionPriority.all;
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
@override
|
|
|
|
TransactionPriority deserializeBitcoinTransactionPriority(int raw)
|
|
|
|
=> BitcoinTransactionPriority.deserialize(raw: raw);
|
|
|
|
|
2022-12-08 15:23:17 +00:00
|
|
|
@override
|
|
|
|
TransactionPriority deserializeLitecoinTransactionPriority(int raw)
|
|
|
|
=> LitecoinTransactionPriority.deserialize(raw: raw);
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
@override
|
|
|
|
int getFeeRate(Object wallet, TransactionPriority priority) {
|
2022-01-12 13:33:56 +00:00
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
2021-12-24 12:52:08 +00:00
|
|
|
return bitcoinWallet.feeRate(priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> generateNewAddress(Object wallet) async {
|
2022-01-12 13:33:56 +00:00
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
2021-12-24 12:52:08 +00:00
|
|
|
await bitcoinWallet.walletAddresses.generateNewAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2022-10-12 17:09:57 +00:00
|
|
|
Object createBitcoinTransactionCredentials(List<Output> outputs, {required TransactionPriority priority, int? feeRate})
|
2021-12-24 12:52:08 +00:00
|
|
|
=> BitcoinTransactionCredentials(
|
|
|
|
outputs.map((out) => OutputInfo(
|
|
|
|
fiatAmount: out.fiatAmount,
|
|
|
|
cryptoAmount: out.cryptoAmount,
|
|
|
|
address: out.address,
|
|
|
|
note: out.note,
|
|
|
|
sendAll: out.sendAll,
|
|
|
|
extractedAddress: out.extractedAddress,
|
|
|
|
isParsedAddress: out.isParsedAddress,
|
|
|
|
formattedCryptoAmount: out.formattedCryptoAmount))
|
|
|
|
.toList(),
|
2023-08-04 17:01:49 +00:00
|
|
|
priority: priority as BitcoinTransactionPriority,
|
2022-07-28 17:03:16 +00:00
|
|
|
feeRate: feeRate);
|
|
|
|
|
|
|
|
@override
|
2022-10-12 17:09:57 +00:00
|
|
|
Object createBitcoinTransactionCredentialsRaw(List<OutputInfo> outputs, {TransactionPriority? priority, required int feeRate})
|
2022-07-28 17:03:16 +00:00
|
|
|
=> BitcoinTransactionCredentials(
|
|
|
|
outputs,
|
|
|
|
priority: priority != null ? priority as BitcoinTransactionPriority : null,
|
|
|
|
feeRate: feeRate);
|
2021-12-24 12:52:08 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
List<String> getAddresses(Object wallet) {
|
2022-01-12 13:33:56 +00:00
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
2021-12-24 12:52:08 +00:00
|
|
|
return bitcoinWallet.walletAddresses.addresses
|
|
|
|
.map((BitcoinAddressRecord addr) => addr.address)
|
|
|
|
.toList();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
String getAddress(Object wallet) {
|
2022-01-12 13:33:56 +00:00
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
2021-12-24 12:52:08 +00:00
|
|
|
return bitcoinWallet.walletAddresses.address;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2022-10-12 17:09:57 +00:00
|
|
|
String formatterBitcoinAmountToString({required int amount})
|
2021-12-24 12:52:08 +00:00
|
|
|
=> bitcoinAmountToString(amount: amount);
|
|
|
|
|
|
|
|
@override
|
2022-10-12 17:09:57 +00:00
|
|
|
double formatterBitcoinAmountToDouble({required int amount})
|
2021-12-24 12:52:08 +00:00
|
|
|
=> bitcoinAmountToDouble(amount: amount);
|
|
|
|
|
|
|
|
@override
|
|
|
|
int formatterStringDoubleToBitcoinAmount(String amount)
|
|
|
|
=> stringDoubleToBitcoinAmount(amount);
|
|
|
|
|
2022-10-28 22:09:27 +00:00
|
|
|
@override
|
|
|
|
String bitcoinTransactionPriorityWithLabel(TransactionPriority priority, int rate)
|
|
|
|
=> (priority as BitcoinTransactionPriority).labelWithRate(rate);
|
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
@override
|
2023-10-12 22:50:16 +00:00
|
|
|
List<BitcoinUnspent> getUnspents(Object wallet) {
|
2022-01-12 13:33:56 +00:00
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
2023-10-12 22:50:16 +00:00
|
|
|
return bitcoinWallet.unspentCoins;
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void updateUnspents(Object wallet) async {
|
2022-01-12 13:33:56 +00:00
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
2021-12-24 12:52:08 +00:00
|
|
|
await bitcoinWallet.updateUnspent();
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletService createBitcoinWalletService(Box<WalletInfo> walletInfoSource, Box<UnspentCoinsInfo> unspentCoinSource) {
|
|
|
|
return BitcoinWalletService(walletInfoSource, unspentCoinSource);
|
|
|
|
}
|
2023-08-30 13:31:58 +00:00
|
|
|
|
2021-12-24 12:52:08 +00:00
|
|
|
WalletService createLitecoinWalletService(Box<WalletInfo> walletInfoSource, Box<UnspentCoinsInfo> unspentCoinSource) {
|
|
|
|
return LitecoinWalletService(walletInfoSource, unspentCoinSource);
|
|
|
|
}
|
2022-11-03 23:13:13 +00:00
|
|
|
|
2023-08-25 15:12:07 +00:00
|
|
|
@override
|
2022-11-03 23:13:13 +00:00
|
|
|
TransactionPriority getBitcoinTransactionPriorityMedium()
|
|
|
|
=> BitcoinTransactionPriority.medium;
|
2023-08-25 15:12:07 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
WalletCredentials createBitcoinNewWalletCredentials(
|
|
|
|
{required String name, WalletInfo? walletInfo}) =>
|
|
|
|
BitcoinNewWalletCredentials(name: name, walletInfo: walletInfo);
|
|
|
|
|
|
|
|
@override
|
|
|
|
List<String> getWordList() => wordlist;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Map<String, String> getWalletKeys(Object wallet) {
|
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
|
|
|
final keys = bitcoinWallet.keys;
|
|
|
|
|
|
|
|
return <String, String>{
|
|
|
|
'wif': keys.wif,
|
|
|
|
'privateKey': keys.privateKey,
|
|
|
|
'publicKey': keys.publicKey
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
List<TransactionPriority> getTransactionPriorities() => BitcoinTransactionPriority.all;
|
|
|
|
|
|
|
|
List<TransactionPriority> getLitecoinTransactionPriorities() => LitecoinTransactionPriority.all;
|
|
|
|
|
|
|
|
@override
|
|
|
|
TransactionPriority deserializeBitcoinTransactionPriority(int raw) =>
|
|
|
|
BitcoinTransactionPriority.deserialize(raw: raw);
|
|
|
|
|
|
|
|
@override
|
|
|
|
TransactionPriority deserializeLitecoinTransactionPriority(int raw) =>
|
|
|
|
LitecoinTransactionPriority.deserialize(raw: raw);
|
|
|
|
|
|
|
|
@override
|
|
|
|
int getFeeRate(Object wallet, TransactionPriority priority) {
|
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
|
|
|
return bitcoinWallet.feeRate(priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<void> generateNewAddress(Object wallet) async {
|
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
|
|
|
await bitcoinWallet.walletAddresses.generateNewAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Object createBitcoinTransactionCredentials(List<Output> outputs,
|
|
|
|
{required TransactionPriority priority, int? feeRate}) =>
|
|
|
|
BitcoinTransactionCredentials(
|
|
|
|
outputs
|
|
|
|
.map((out) => OutputInfo(
|
|
|
|
fiatAmount: out.fiatAmount,
|
|
|
|
cryptoAmount: out.cryptoAmount,
|
|
|
|
address: out.address,
|
|
|
|
note: out.note,
|
|
|
|
sendAll: out.sendAll,
|
|
|
|
extractedAddress: out.extractedAddress,
|
|
|
|
isParsedAddress: out.isParsedAddress,
|
|
|
|
formattedCryptoAmount: out.formattedCryptoAmount))
|
|
|
|
.toList(),
|
|
|
|
priority: priority as BitcoinTransactionPriority,
|
|
|
|
feeRate: feeRate);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Object createBitcoinTransactionCredentialsRaw(List<OutputInfo> outputs,
|
|
|
|
{TransactionPriority? priority, required int feeRate}) =>
|
|
|
|
BitcoinTransactionCredentials(outputs,
|
|
|
|
priority: priority != null ? priority as BitcoinTransactionPriority : null,
|
|
|
|
feeRate: feeRate);
|
|
|
|
|
|
|
|
@override
|
|
|
|
List<String> getAddresses(Object wallet) {
|
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
|
|
|
return bitcoinWallet.walletAddresses.addresses
|
|
|
|
.map((BitcoinAddressRecord addr) => addr.address)
|
|
|
|
.toList();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
String getAddress(Object wallet) {
|
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
|
|
|
return bitcoinWallet.walletAddresses.address;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
String formatterBitcoinAmountToString({required int amount}) =>
|
|
|
|
bitcoinAmountToString(amount: amount);
|
|
|
|
|
|
|
|
@override
|
|
|
|
double formatterBitcoinAmountToDouble({required int amount}) =>
|
|
|
|
bitcoinAmountToDouble(amount: amount);
|
|
|
|
|
|
|
|
@override
|
|
|
|
int formatterStringDoubleToBitcoinAmount(String amount) => stringDoubleToBitcoinAmount(amount);
|
|
|
|
|
|
|
|
@override
|
|
|
|
List<Unspent> getUnspents(Object wallet) {
|
|
|
|
final bitcoinWallet = wallet as ElectrumWallet;
|
|
|
|
return bitcoinWallet.unspentCoins
|
|
|
|
.map((BitcoinUnspent bitcoinUnspent) => Unspent(bitcoinUnspent.address.address,
|
2023-08-30 13:42:43 +00:00
|
|
|
bitcoinUnspent.hash, bitcoinUnspent.value, bitcoinUnspent.vout, null))
|
2023-08-25 15:12:07 +00:00
|
|
|
.toList();
|
|
|
|
}
|
|
|
|
|
|
|
|
WalletService createBitcoinWalletService(
|
|
|
|
Box<WalletInfo> walletInfoSource, Box<UnspentCoinsInfo> unspentCoinSource) {
|
|
|
|
return BitcoinWalletService(walletInfoSource, unspentCoinSource);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
TransactionPriority getBitcoinTransactionPriorityMedium() => BitcoinTransactionPriority.medium;
|
|
|
|
|
|
|
|
@override
|
|
|
|
TransactionPriority getLitecoinTransactionPriorityMedium() => LitecoinTransactionPriority.medium;
|
|
|
|
|
|
|
|
@override
|
|
|
|
TransactionPriority getBitcoinTransactionPrioritySlow() => BitcoinTransactionPriority.slow;
|
|
|
|
|
|
|
|
@override
|
|
|
|
TransactionPriority getLitecoinTransactionPrioritySlow() => LitecoinTransactionPriority.slow;
|
2023-09-26 18:22:03 +00:00
|
|
|
|
|
|
|
@override
|
2023-09-29 15:02:45 +00:00
|
|
|
Future<List<DerivationType>> compareDerivationMethods(
|
|
|
|
{required String mnemonic, required Node node}) async {
|
|
|
|
if (await checkIfMnemonicIsElectrum2(mnemonic)) {
|
|
|
|
return [DerivationType.electrum2];
|
|
|
|
}
|
|
|
|
|
|
|
|
return [DerivationType.bip39, DerivationType.electrum2];
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Future<List<DerivationInfo>> getDerivationsFromMnemonic(
|
|
|
|
{required String mnemonic, required Node node}) async {
|
|
|
|
List<DerivationInfo> list = [];
|
|
|
|
|
|
|
|
final electrumClient = ElectrumClient();
|
|
|
|
await electrumClient.connectToUri(node.uri);
|
|
|
|
|
|
|
|
for (DerivationType dType in bitcoin_derivations.keys) {
|
|
|
|
late Uint8List seedBytes;
|
|
|
|
if (dType == DerivationType.electrum2) {
|
|
|
|
seedBytes = await mnemonicToSeedBytes(mnemonic);
|
|
|
|
} else if (dType == DerivationType.bip39) {
|
|
|
|
seedBytes = bip39.mnemonicToSeed(mnemonic);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (DerivationInfo dInfo in bitcoin_derivations[dType]!) {
|
|
|
|
try {
|
|
|
|
DerivationInfo dInfoCopy = DerivationInfo(
|
|
|
|
derivationType: dInfo.derivationType,
|
|
|
|
derivationPath: dInfo.derivationPath,
|
|
|
|
description: dInfo.description,
|
|
|
|
script_type: dInfo.script_type,
|
|
|
|
);
|
|
|
|
var node = bip32.BIP32.fromSeed(seedBytes);
|
|
|
|
|
|
|
|
String derivationPath = dInfoCopy.derivationPath!;
|
|
|
|
int derivationDepth = countOccurrences(derivationPath, "/");
|
|
|
|
if (derivationDepth == 3) {
|
|
|
|
derivationPath += "/0/0";
|
|
|
|
dInfoCopy.derivationPath = dInfoCopy.derivationPath! + "/0";
|
|
|
|
}
|
|
|
|
node = node.derivePath(derivationPath);
|
|
|
|
|
|
|
|
String? address;
|
|
|
|
switch (dInfoCopy.script_type) {
|
|
|
|
case "p2wpkh":
|
|
|
|
address = btc
|
|
|
|
.P2WPKH(
|
|
|
|
data: new btc.PaymentData(pubkey: node.publicKey),
|
|
|
|
network: btc.bitcoin,
|
|
|
|
)
|
|
|
|
.data
|
|
|
|
.address;
|
|
|
|
break;
|
|
|
|
case "p2pkh":
|
|
|
|
// case "p2wpkh-p2sh":// TODO
|
|
|
|
default:
|
|
|
|
address = btc
|
|
|
|
.P2PKH(
|
|
|
|
data: new btc.PaymentData(pubkey: node.publicKey),
|
|
|
|
network: btc.bitcoin,
|
|
|
|
)
|
|
|
|
.data
|
|
|
|
.address;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
final sh = scriptHash(address!, networkType: btc.bitcoin);
|
|
|
|
final history = await electrumClient.getHistory(sh);
|
|
|
|
|
|
|
|
final balance = await electrumClient.getBalance(sh);
|
|
|
|
dInfoCopy.balance = balance.entries.first.value.toString();
|
|
|
|
dInfoCopy.address = address;
|
|
|
|
dInfoCopy.height = history.length;
|
|
|
|
|
|
|
|
list.add(dInfoCopy);
|
|
|
|
} catch (e) {
|
|
|
|
print(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort the list such that derivations with the most transactions are first:
|
|
|
|
list.sort((a, b) => b.height.compareTo(a.height));
|
|
|
|
|
|
|
|
return list;
|
2023-09-26 18:22:03 +00:00
|
|
|
}
|
2023-08-25 15:12:07 +00:00
|
|
|
}
|