mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 20:19:25 +00:00
50 lines
1.6 KiB
Dart
50 lines
1.6 KiB
Dart
import 'dart:async';
|
|
import 'package:breez_sdk/breez_sdk.dart';
|
|
import 'package:breez_sdk/bridge_generated.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
part 'lightning_view_model.g.dart';
|
|
|
|
class LightningViewModel = LightningViewModelBase with _$LightningViewModel;
|
|
|
|
abstract class LightningViewModelBase with Store {
|
|
LightningViewModelBase() {}
|
|
|
|
// @observable
|
|
// ExecutionState state;
|
|
|
|
Future<List<String>> receiveOnchain() async {
|
|
final sdk = await BreezSDK();
|
|
|
|
ReceiveOnchainRequest req = const ReceiveOnchainRequest();
|
|
SwapInfo swapInfo = await sdk.receiveOnchain(req: req);
|
|
print(swapInfo.bitcoinAddress);
|
|
print("Minimum amount allowed to deposit in sats: ${swapInfo.minAllowedDeposit}");
|
|
print("Maximum amount allowed to deposit in sats: ${swapInfo.maxAllowedDeposit}");
|
|
return [
|
|
swapInfo.bitcoinAddress,
|
|
swapInfo.minAllowedDeposit.toString(),
|
|
swapInfo.maxAllowedDeposit.toString()
|
|
];
|
|
}
|
|
|
|
Future<String> createInvoice({required String amount, String? description}) async {
|
|
final sdk = await BreezSDK();
|
|
final req = ReceivePaymentRequest(
|
|
amountMsat: (double.parse(amount) * 100000000).round(),
|
|
description: description ?? '',
|
|
);
|
|
final res = await sdk.receivePayment(req: req);
|
|
return res.lnInvoice.bolt11;
|
|
}
|
|
|
|
Future<List<String>> invoiceLimits() async {
|
|
final sdk = await BreezSDK();
|
|
final req = ReceivePaymentRequest(
|
|
amountMsat: 2500000,
|
|
description: 'limits',
|
|
);
|
|
final res = await sdk.receivePayment(req: req);
|
|
return [(res.openingFeeMsat).toString(), '10000'];
|
|
}
|
|
}
|