mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
376 lines
12 KiB
Dart
376 lines
12 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:bitbox/bitbox.dart';
|
|
import 'package:bitcoin_base/bitcoin_base.dart';
|
|
import 'package:breez_sdk/breez_sdk.dart';
|
|
import 'package:breez_sdk/bridge_generated.dart';
|
|
import 'package:cw_bitcoin/bitcoin_mnemonic.dart';
|
|
import 'package:cw_bitcoin/electrum_wallet_snapshot.dart';
|
|
import 'package:cw_core/crypto_currency.dart';
|
|
import 'package:cw_core/node.dart';
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/pending_transaction.dart';
|
|
import 'package:cw_core/sync_status.dart';
|
|
import 'package:cw_core/transaction_direction.dart';
|
|
import 'package:cw_core/unspent_coins_info.dart';
|
|
import 'package:cw_lightning/lightning_balance.dart';
|
|
import 'package:cw_lightning/lightning_transaction_info.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:bitcoin_flutter/bitcoin_flutter.dart' as bitcoin;
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cw_bitcoin/bitcoin_address_record.dart';
|
|
import 'package:cw_bitcoin/bitcoin_wallet_addresses.dart';
|
|
import 'package:path_provider/path_provider.dart';
|
|
import 'package:cw_lightning/.secrets.g.dart' as secrets;
|
|
import 'package:cw_bitcoin/electrum_wallet.dart';
|
|
|
|
part 'lightning_wallet.g.dart';
|
|
|
|
class LightningWallet = LightningWalletBase with _$LightningWallet;
|
|
|
|
abstract class LightningWalletBase extends ElectrumWallet with Store {
|
|
bool _isTransactionUpdating;
|
|
|
|
@override
|
|
@observable
|
|
SyncStatus syncStatus;
|
|
|
|
LightningWalletBase({
|
|
required String mnemonic,
|
|
required String password,
|
|
required WalletInfo walletInfo,
|
|
required Box<UnspentCoinsInfo> unspentCoinsInfo,
|
|
required Uint8List seedBytes,
|
|
String? addressPageType,
|
|
List<BitcoinAddressRecord>? initialAddresses,
|
|
LightningBalance? initialBalance,
|
|
Map<String, int>? initialRegularAddressIndex,
|
|
Map<String, int>? initialChangeAddressIndex,
|
|
}) : _isTransactionUpdating = false,
|
|
syncStatus = NotConnectedSyncStatus(),
|
|
_balance = ObservableMap<CryptoCurrency, LightningBalance>(),
|
|
mnemonic = mnemonic,
|
|
super(
|
|
password: password,
|
|
walletInfo: walletInfo,
|
|
unspentCoinsInfo: unspentCoinsInfo,
|
|
networkType: bitcoin.bitcoin,
|
|
initialAddresses: initialAddresses,
|
|
initialBalance: initialBalance,
|
|
seedBytes: seedBytes,
|
|
currency: CryptoCurrency.btcln,
|
|
) {
|
|
_balance[CryptoCurrency.btcln] =
|
|
initialBalance ?? LightningBalance(confirmed: 0, unconfirmed: 0, frozen: 0);
|
|
String derivationPath = walletInfo.derivationInfo!.derivationPath!;
|
|
String sideDerivationPath = derivationPath.substring(0, derivationPath.length - 1) + "1";
|
|
final hd = bitcoin.HDWallet.fromSeed(seedBytes, network: networkType);
|
|
walletAddresses = BitcoinWalletAddresses(
|
|
walletInfo,
|
|
electrumClient: electrumClient,
|
|
initialAddresses: initialAddresses,
|
|
initialRegularAddressIndex: initialRegularAddressIndex,
|
|
initialChangeAddressIndex: initialChangeAddressIndex,
|
|
mainHd: hd.derivePath(derivationPath),
|
|
sideHd: hd.derivePath(sideDerivationPath),
|
|
network: network,
|
|
);
|
|
|
|
// initialize breez:
|
|
try {
|
|
setupBreez(seedBytes);
|
|
} catch (e) {
|
|
print("Error initializing Breez: $e");
|
|
}
|
|
|
|
autorun((_) {
|
|
this.walletAddresses.isEnabledAutoGenerateSubaddress = this.isEnabledAutoGenerateSubaddress;
|
|
});
|
|
}
|
|
|
|
late final ObservableMap<CryptoCurrency, LightningBalance> _balance;
|
|
StreamSubscription<List<Payment>>? _paymentsSub;
|
|
StreamSubscription<NodeState?>? _nodeStateSub;
|
|
|
|
@override
|
|
@computed
|
|
ObservableMap<CryptoCurrency, LightningBalance> get balance => _balance;
|
|
|
|
static Future<LightningWallet> create(
|
|
{required String mnemonic,
|
|
required String password,
|
|
required WalletInfo walletInfo,
|
|
required Box<UnspentCoinsInfo> unspentCoinsInfo,
|
|
String? addressPageType,
|
|
List<BitcoinAddressRecord>? initialAddresses,
|
|
LightningBalance? initialBalance,
|
|
Map<String, int>? initialRegularAddressIndex,
|
|
Map<String, int>? initialChangeAddressIndex}) async {
|
|
return LightningWallet(
|
|
mnemonic: mnemonic,
|
|
password: password,
|
|
walletInfo: walletInfo,
|
|
unspentCoinsInfo: unspentCoinsInfo,
|
|
initialAddresses: initialAddresses,
|
|
initialBalance: initialBalance,
|
|
seedBytes: await Mnemonic.toSeed(mnemonic),
|
|
initialRegularAddressIndex: initialRegularAddressIndex,
|
|
initialChangeAddressIndex: initialChangeAddressIndex,
|
|
addressPageType: addressPageType,
|
|
);
|
|
}
|
|
|
|
static Future<LightningWallet> open({
|
|
required String name,
|
|
required WalletInfo walletInfo,
|
|
required Box<UnspentCoinsInfo> unspentCoinsInfo,
|
|
required String password,
|
|
}) async {
|
|
final snp =
|
|
await ElectrumWalletSnapshot.load(name, walletInfo.type, password, BitcoinNetwork.mainnet);
|
|
return LightningWallet(
|
|
mnemonic: snp.mnemonic!,
|
|
password: password,
|
|
walletInfo: walletInfo,
|
|
unspentCoinsInfo: unspentCoinsInfo,
|
|
initialAddresses: snp.addresses,
|
|
initialBalance: LightningBalance(
|
|
confirmed: snp.balance.confirmed,
|
|
unconfirmed: snp.balance.unconfirmed,
|
|
frozen: snp.balance.frozen,
|
|
),
|
|
seedBytes: await mnemonicToSeedBytes(snp.mnemonic!),
|
|
initialRegularAddressIndex: snp.regularAddressIndex,
|
|
initialChangeAddressIndex: snp.changeAddressIndex,
|
|
addressPageType: snp.addressPageType,
|
|
);
|
|
}
|
|
|
|
Future<void> setupBreez(Uint8List seedBytes) async {
|
|
final sdk = await BreezSDK();
|
|
try {
|
|
if (!(await sdk.isInitialized())) {
|
|
sdk.initialize();
|
|
}
|
|
} catch (e) {
|
|
print("Error initializing Breez: $e");
|
|
return;
|
|
}
|
|
|
|
Uint8List deviceKey = base64.decode(secrets.greenlightKey);
|
|
Uint8List deviceCert = base64.decode(secrets.greenlightCert);
|
|
GreenlightCredentials greenlightCredentials = GreenlightCredentials(
|
|
deviceKey: deviceKey,
|
|
deviceCert: deviceCert,
|
|
);
|
|
|
|
NodeConfig breezNodeConfig = NodeConfig.greenlight(
|
|
config: GreenlightNodeConfig(
|
|
partnerCredentials: greenlightCredentials,
|
|
inviteCode: null,
|
|
),
|
|
);
|
|
Config breezConfig = await sdk.defaultConfig(
|
|
envType: EnvironmentType.Production,
|
|
apiKey: secrets.breezApiKey,
|
|
nodeConfig: breezNodeConfig,
|
|
);
|
|
|
|
String workingDir = (await getApplicationDocumentsDirectory()).path;
|
|
workingDir = "$workingDir/wallets/lightning/${walletInfo.address}/breez/";
|
|
new Directory(workingDir).createSync(recursive: true);
|
|
breezConfig = breezConfig.copyWith(workingDir: workingDir);
|
|
|
|
// disconnect if already connected
|
|
try {
|
|
if (await sdk.isInitialized()) {
|
|
await sdk.disconnect();
|
|
}
|
|
} catch (e, s) {
|
|
print("ERROR disconnecting from Breez: $e\n$s");
|
|
}
|
|
|
|
try {
|
|
await sdk.connect(
|
|
req: ConnectRequest(
|
|
config: breezConfig,
|
|
seed: seedBytes,
|
|
),
|
|
);
|
|
} catch (e, s) {
|
|
print("Error connecting to Breez: $e\n$s");
|
|
}
|
|
|
|
_nodeStateSub = sdk.nodeStateStream.listen((event) {
|
|
if (event == null) return;
|
|
_balance[CryptoCurrency.btcln] = LightningBalance(
|
|
confirmed: event.maxPayableMsat ~/ 1000,
|
|
unconfirmed: event.maxReceivableMsat ~/ 1000,
|
|
frozen: 0,
|
|
);
|
|
});
|
|
|
|
_paymentsSub = sdk.paymentsStream.listen((payments) {
|
|
_isTransactionUpdating = true;
|
|
final txs = convertToTxInfo(payments);
|
|
transactionHistory.addMany(txs);
|
|
_isTransactionUpdating = false;
|
|
});
|
|
|
|
// TODO: get actual nds service url:
|
|
// if (Platform.isAndroid || Platform.isIOS) {
|
|
// String platform = Platform.isAndroid ? "android" : "ios";
|
|
// String token = "TODO";
|
|
// await sdk.registerWebhook(
|
|
// webhookUrl: "https://your-nds-service.com/notify?platform=$platform&token=$token",
|
|
// );
|
|
// }
|
|
|
|
print("initialized breez: ${(await sdk.isInitialized())}");
|
|
}
|
|
|
|
Future<void> stopBreez() async {
|
|
final sdk = await BreezSDK();
|
|
if (await sdk.isInitialized()) {
|
|
await sdk.disconnect();
|
|
}
|
|
await _nodeStateSub?.cancel();
|
|
await _paymentsSub?.cancel();
|
|
}
|
|
|
|
@action
|
|
@override
|
|
Future<void> startSync() async {
|
|
try {
|
|
syncStatus = AttemptingSyncStatus();
|
|
await updateTransactions();
|
|
syncStatus = SyncedSyncStatus();
|
|
} catch (e) {
|
|
print(e);
|
|
syncStatus = FailedSyncStatus();
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<void> changePassword(String password) {
|
|
throw UnimplementedError("changePassword");
|
|
}
|
|
|
|
@action
|
|
@override
|
|
Future<void> connectToNode({required Node node}) async {
|
|
try {
|
|
syncStatus = ConnectingSyncStatus();
|
|
await updateTransactions();
|
|
syncStatus = ConnectedSyncStatus();
|
|
} catch (e) {
|
|
print(e);
|
|
syncStatus = FailedSyncStatus();
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<PendingTransaction> createTransaction(Object credentials) async {
|
|
throw UnimplementedError("createTransaction");
|
|
}
|
|
|
|
Future<bool> updateTransactions() async {
|
|
try {
|
|
if (_isTransactionUpdating) {
|
|
return false;
|
|
}
|
|
|
|
_isTransactionUpdating = true;
|
|
final transactions = await fetchTransactions();
|
|
transactionHistory.addMany(transactions);
|
|
await transactionHistory.save();
|
|
_isTransactionUpdating = false;
|
|
return true;
|
|
} catch (_) {
|
|
_isTransactionUpdating = false;
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Map<String, LightningTransactionInfo> convertToTxInfo(List<Payment> payments) {
|
|
Map<String, LightningTransactionInfo> transactions = {};
|
|
|
|
for (Payment tx in payments) {
|
|
if (tx.paymentType == PaymentType.ClosedChannel) {
|
|
continue;
|
|
}
|
|
bool isSend = tx.paymentType == PaymentType.Sent;
|
|
transactions[tx.id] = LightningTransactionInfo(
|
|
isPending: false,
|
|
id: tx.id,
|
|
amount: tx.amountMsat ~/ 1000,
|
|
fee: tx.feeMsat ~/ 1000,
|
|
date: DateTime.fromMillisecondsSinceEpoch(tx.paymentTime * 1000),
|
|
direction: isSend ? TransactionDirection.outgoing : TransactionDirection.incoming,
|
|
);
|
|
}
|
|
return transactions;
|
|
}
|
|
|
|
@override
|
|
Future<Map<String, LightningTransactionInfo>> fetchTransactions() async {
|
|
final sdk = await BreezSDK();
|
|
|
|
final payments = await sdk.listPayments(req: ListPaymentsRequest());
|
|
final transactions = convertToTxInfo(payments);
|
|
|
|
return transactions;
|
|
}
|
|
|
|
@override
|
|
Future<void> rescan({required int height}) async {
|
|
updateTransactions();
|
|
}
|
|
|
|
Future<void> init() async {
|
|
await walletAddresses.init();
|
|
await transactionHistory.init();
|
|
await save();
|
|
}
|
|
|
|
String toJSON() => json.encode({
|
|
'mnemonic': mnemonic,
|
|
'account_index': walletAddresses.currentReceiveAddressIndexByType,
|
|
'change_address_index': walletAddresses.currentChangeAddressIndexByType,
|
|
'addresses': walletAddresses.allAddresses.map((addr) => addr.toJSON()).toList(),
|
|
'address_page_type': walletInfo.addressPageType == null
|
|
? SegwitAddresType.p2wpkh.toString()
|
|
: walletInfo.addressPageType.toString(),
|
|
'balance': balance[currency]?.toJSON(),
|
|
'network_type': network == BitcoinNetwork.testnet ? 'testnet' : 'mainnet',
|
|
});
|
|
|
|
Future<void> updateBalance() async {
|
|
// balance is updated automatically
|
|
}
|
|
|
|
@override
|
|
String mnemonic;
|
|
|
|
@override
|
|
String get seed => mnemonic;
|
|
|
|
Future<String> makePath() async => pathForWallet(name: walletInfo.name, type: walletInfo.type);
|
|
|
|
@override
|
|
Future<void> close() async {
|
|
try {
|
|
await electrumClient.close();
|
|
} catch (_) {}
|
|
try {
|
|
await stopBreez();
|
|
} catch (e, s) {
|
|
print("Error stopping breez: $e\n$s");
|
|
}
|
|
}
|
|
}
|