2021-12-24 12:52:08 +00:00
|
|
|
import 'package:cw_bitcoin/bitcoin_mnemonic.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_transaction_priority.dart';
|
|
|
|
import 'package:cw_core/unspent_coins_info.dart';
|
|
|
|
import 'package:cw_bitcoin/litecoin_wallet_addresses.dart';
|
|
|
|
import 'package:cw_core/transaction_priority.dart';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:hive/hive.dart';
|
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
import 'package:cw_core/wallet_info.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum_wallet_snapshot.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum_wallet.dart';
|
|
|
|
import 'package:cw_bitcoin/bitcoin_address_record.dart';
|
|
|
|
import 'package:cw_bitcoin/electrum_balance.dart';
|
|
|
|
import 'package:cw_bitcoin/litecoin_network.dart';
|
|
|
|
import 'package:bitcoin_flutter/bitcoin_flutter.dart' as bitcoin;
|
|
|
|
|
|
|
|
part 'litecoin_wallet.g.dart';
|
|
|
|
|
|
|
|
class LitecoinWallet = LitecoinWalletBase with _$LitecoinWallet;
|
|
|
|
|
|
|
|
abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
|
|
|
LitecoinWalletBase(
|
|
|
|
{@required String mnemonic,
|
|
|
|
@required String password,
|
|
|
|
@required WalletInfo walletInfo,
|
|
|
|
@required Box<UnspentCoinsInfo> unspentCoinsInfo,
|
|
|
|
List<BitcoinAddressRecord> initialAddresses,
|
|
|
|
ElectrumBalance initialBalance,
|
2022-01-18 16:27:33 +00:00
|
|
|
int initialRegularAddressIndex = 0,
|
|
|
|
int initialChangeAddressIndex = 0})
|
2021-12-24 12:52:08 +00:00
|
|
|
: super(
|
|
|
|
mnemonic: mnemonic,
|
|
|
|
password: password,
|
|
|
|
walletInfo: walletInfo,
|
|
|
|
unspentCoinsInfo: unspentCoinsInfo,
|
|
|
|
networkType: litecoinNetwork,
|
|
|
|
initialAddresses: initialAddresses,
|
|
|
|
initialBalance: initialBalance) {
|
|
|
|
walletAddresses = LitecoinWalletAddresses(
|
|
|
|
walletInfo,
|
2022-01-18 16:27:33 +00:00
|
|
|
electrumClient: electrumClient,
|
2021-12-24 12:52:08 +00:00
|
|
|
initialAddresses: initialAddresses,
|
2022-01-18 16:27:33 +00:00
|
|
|
initialRegularAddressIndex: initialRegularAddressIndex,
|
|
|
|
initialChangeAddressIndex: initialChangeAddressIndex,
|
2021-12-24 12:52:08 +00:00
|
|
|
mainHd: hd,
|
|
|
|
sideHd: bitcoin.HDWallet
|
|
|
|
.fromSeed(mnemonicToSeedBytes(mnemonic), network: networkType)
|
|
|
|
.derivePath("m/0'/1"),
|
|
|
|
networkType: networkType,);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Future<LitecoinWallet> open({
|
|
|
|
@required String name,
|
|
|
|
@required WalletInfo walletInfo,
|
|
|
|
@required Box<UnspentCoinsInfo> unspentCoinsInfo,
|
|
|
|
@required String password,
|
|
|
|
}) async {
|
|
|
|
final snp = ElectrumWallletSnapshot(name, walletInfo.type, password);
|
|
|
|
await snp.load();
|
|
|
|
return LitecoinWallet(
|
|
|
|
mnemonic: snp.mnemonic,
|
|
|
|
password: password,
|
|
|
|
walletInfo: walletInfo,
|
|
|
|
unspentCoinsInfo: unspentCoinsInfo,
|
|
|
|
initialAddresses: snp.addresses,
|
|
|
|
initialBalance: snp.balance,
|
2022-01-18 16:27:33 +00:00
|
|
|
initialRegularAddressIndex: snp.regularAddressIndex,
|
|
|
|
initialChangeAddressIndex: snp.changeAddressIndex);
|
2021-12-24 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
int feeRate(TransactionPriority priority) {
|
|
|
|
if (priority is LitecoinTransactionPriority) {
|
|
|
|
switch (priority) {
|
|
|
|
case LitecoinTransactionPriority.slow:
|
|
|
|
return 1;
|
|
|
|
case LitecoinTransactionPriority.medium:
|
|
|
|
return 2;
|
|
|
|
case LitecoinTransactionPriority.fast:
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|