mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
37b822b7f5
* node peer enhancement, delay mweb address generation, increase logging * prevent unnecessary sync status changes if we can't connect to the ltc node * handle potential errors * set nodeUri to null for testing * [skip ci] redo good changes * [skip ci] draft * [skip ci] minor * [skip ci] cleanup * [skip ci] minor * [skip ci] minor * [skip ci] localization * [skip ci] save * [skip ci] wip * use proxy layer * ui * minor changes Add ToDos for later * fixes * [skip ci] minor * [skip ci] minor * [skip ci] ui * handle case where there are no addresses with txcount > 0 * comment out pegin button --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
33 lines
992 B
Dart
33 lines
992 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'cw_mweb_platform_interface.dart';
|
|
|
|
/// An implementation of [CwMwebPlatform] that uses method channels.
|
|
class MethodChannelCwMweb extends CwMwebPlatform {
|
|
/// The method channel used to interact with the native platform.
|
|
@visibleForTesting
|
|
final methodChannel = const MethodChannel('cw_mweb');
|
|
|
|
@override
|
|
Future<int?> start(String dataDir, String nodeUri) async {
|
|
final result =
|
|
await methodChannel.invokeMethod<int>('start', {'dataDir': dataDir, 'nodeUri': nodeUri});
|
|
return result;
|
|
}
|
|
|
|
@override
|
|
Future<void> stop() async {
|
|
await methodChannel.invokeMethod<void>('stop');
|
|
}
|
|
|
|
@override
|
|
Future<String?> address(Uint8List scanSecret, Uint8List spendPub, int index) async {
|
|
final result = await methodChannel.invokeMethod<String>('address', {
|
|
'scanSecret': scanSecret,
|
|
'spendPub': spendPub,
|
|
'index': index,
|
|
});
|
|
return result;
|
|
}
|
|
}
|