20 lines
532 B
Dart
20 lines
532 B
Dart
import 'package:haveno/proto/compiled/grpc.pbgrpc.dart';
|
|
import 'package:haveno/services/haveno_service.dart';
|
|
|
|
class AccountServiceClient {
|
|
final AccountClient _accountClient;
|
|
|
|
AccountServiceClient(HavenoService service)
|
|
: _accountClient = service.accountClient;
|
|
|
|
Future<bool> accountExists() async {
|
|
try {
|
|
final response =
|
|
await _accountClient.accountExists(AccountExistsRequest());
|
|
return response.accountExists;
|
|
} catch (e) {
|
|
print('Caught error: $e');
|
|
rethrow;
|
|
}
|
|
}
|
|
}
|