cake_wallet/lib/exchange/exchange_provider.dart

29 lines
1 KiB
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
import 'package:flutter/foundation.dart';
2021-12-24 12:37:24 +00:00
import 'package:cw_core/crypto_currency.dart';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/exchange/trade_request.dart';
import 'package:cake_wallet/exchange/exchange_pair.dart';
import 'package:cake_wallet/exchange/limits.dart';
import 'package:cake_wallet/exchange/trade.dart';
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
2020-01-04 19:31:52 +00:00
abstract class ExchangeProvider {
2020-01-08 12:26:34 +00:00
ExchangeProvider({this.pairList});
2020-01-04 19:31:52 +00:00
String get title;
List<ExchangePair> pairList;
ExchangeProviderDescription description;
2020-11-10 14:58:40 +00:00
bool get isAvailable;
bool get isEnabled;
2020-01-04 19:31:52 +00:00
@override
String toString() => title;
Future<Limits> fetchLimits(
{CryptoCurrency from, CryptoCurrency to, bool isFixedRateMode});
Future<Trade> createTrade({TradeRequest request, bool isFixedRateMode});
2020-01-04 19:31:52 +00:00
Future<Trade> findTradeById({@required String id});
Future<double> calculateAmount({CryptoCurrency from, CryptoCurrency to,
double amount, bool isFixedRateMode, bool isReceiveAmount});
2020-11-10 14:58:40 +00:00
Future<bool> checkIsAvailable();
2020-01-04 19:31:52 +00:00
}