mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
14 lines
484 B
Dart
14 lines
484 B
Dart
import 'package:grpc/grpc.dart';
|
|
import 'package:path_provider/path_provider.dart';
|
|
import 'cw_mweb_platform_interface.dart';
|
|
import 'mwebd.pbgrpc.dart';
|
|
|
|
class CwMweb {
|
|
static Future<RpcClient> stub() async {
|
|
final appDir = await getApplicationSupportDirectory();
|
|
return RpcClient(ClientChannel('127.0.0.1',
|
|
port: await CwMwebPlatform.instance.start(appDir.path) ?? 0,
|
|
options: const ChannelOptions(
|
|
credentials: ChannelCredentials.insecure())));
|
|
}
|
|
}
|