mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
208 lines
7.8 KiB
Dart
208 lines
7.8 KiB
Dart
import 'dart:convert';
|
|
import 'package:cake_wallet/core/amount_converter.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:cake_wallet/exchange/trade_not_found_exeption.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:http/http.dart';
|
|
import 'package:cw_core/crypto_currency.dart';
|
|
import 'package:cake_wallet/exchange/exchange_pair.dart';
|
|
import 'package:cake_wallet/exchange/exchange_provider.dart';
|
|
import 'package:cake_wallet/exchange/limits.dart';
|
|
import 'package:cake_wallet/exchange/trade.dart';
|
|
import 'package:cake_wallet/exchange/trade_request.dart';
|
|
import 'package:cake_wallet/exchange/trade_state.dart';
|
|
import 'package:cake_wallet/exchange/morphtoken/morphtoken_request.dart';
|
|
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
|
|
import 'package:cake_wallet/exchange/trade_not_created_exeption.dart';
|
|
|
|
class MorphTokenExchangeProvider extends ExchangeProvider {
|
|
MorphTokenExchangeProvider({@required this.trades})
|
|
: super(pairList: [
|
|
ExchangePair(from: CryptoCurrency.xmr, to: CryptoCurrency.eth),
|
|
ExchangePair(from: CryptoCurrency.xmr, to: CryptoCurrency.bch),
|
|
ExchangePair(from: CryptoCurrency.xmr, to: CryptoCurrency.ltc),
|
|
ExchangePair(from: CryptoCurrency.xmr, to: CryptoCurrency.dash),
|
|
ExchangePair(from: CryptoCurrency.dash, to: CryptoCurrency.btc),
|
|
ExchangePair(from: CryptoCurrency.dash, to: CryptoCurrency.eth),
|
|
ExchangePair(from: CryptoCurrency.dash, to: CryptoCurrency.bch),
|
|
ExchangePair(from: CryptoCurrency.dash, to: CryptoCurrency.ltc),
|
|
ExchangePair(from: CryptoCurrency.dash, to: CryptoCurrency.xmr),
|
|
ExchangePair(from: CryptoCurrency.ltc, to: CryptoCurrency.btc),
|
|
ExchangePair(from: CryptoCurrency.ltc, to: CryptoCurrency.eth),
|
|
ExchangePair(from: CryptoCurrency.ltc, to: CryptoCurrency.bch),
|
|
ExchangePair(from: CryptoCurrency.ltc, to: CryptoCurrency.dash),
|
|
ExchangePair(from: CryptoCurrency.ltc, to: CryptoCurrency.xmr),
|
|
ExchangePair(from: CryptoCurrency.bch, to: CryptoCurrency.btc),
|
|
ExchangePair(from: CryptoCurrency.bch, to: CryptoCurrency.eth),
|
|
ExchangePair(from: CryptoCurrency.bch, to: CryptoCurrency.ltc),
|
|
ExchangePair(from: CryptoCurrency.bch, to: CryptoCurrency.dash),
|
|
ExchangePair(from: CryptoCurrency.bch, to: CryptoCurrency.xmr),
|
|
ExchangePair(from: CryptoCurrency.eth, to: CryptoCurrency.btc),
|
|
ExchangePair(from: CryptoCurrency.eth, to: CryptoCurrency.bch),
|
|
ExchangePair(from: CryptoCurrency.eth, to: CryptoCurrency.ltc),
|
|
ExchangePair(from: CryptoCurrency.eth, to: CryptoCurrency.dash),
|
|
ExchangePair(from: CryptoCurrency.eth, to: CryptoCurrency.xmr),
|
|
ExchangePair(from: CryptoCurrency.btc, to: CryptoCurrency.eth),
|
|
ExchangePair(from: CryptoCurrency.btc, to: CryptoCurrency.bch),
|
|
ExchangePair(from: CryptoCurrency.btc, to: CryptoCurrency.ltc),
|
|
ExchangePair(from: CryptoCurrency.btc, to: CryptoCurrency.dash),
|
|
ExchangePair(from: CryptoCurrency.btc, to: CryptoCurrency.xmr)
|
|
]);
|
|
|
|
Box<Trade> trades;
|
|
|
|
static const apiUri = 'https://api.morphtoken.com';
|
|
static const _morphURISuffix = '/morph';
|
|
static const _limitsURISuffix = '/limits';
|
|
static const _ratesURISuffix = '/rates';
|
|
static const weight = 10000;
|
|
|
|
@override
|
|
String get title => 'MorphToken';
|
|
|
|
@override
|
|
bool get isAvailable => true;
|
|
|
|
@override
|
|
ExchangeProviderDescription get description =>
|
|
ExchangeProviderDescription.morphToken;
|
|
|
|
@override
|
|
Future<bool> checkIsAvailable() async => true;
|
|
|
|
@override
|
|
Future<Limits> fetchLimits({CryptoCurrency from, CryptoCurrency to, bool isFixedRateMode}) async {
|
|
final url = apiUri + _limitsURISuffix;
|
|
final headers = {'Content-type': 'application/json'};
|
|
final body = json.encode({
|
|
"input": {"asset": from.toString()},
|
|
"output": [
|
|
{"asset": to.toString(), "weight": weight}
|
|
]
|
|
});
|
|
final response = await post(url, headers: headers, body: body);
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
|
|
final min = responseJSON['input']['limits']['min'] as int;
|
|
int max;
|
|
double ethMax;
|
|
|
|
if (from == CryptoCurrency.eth) {
|
|
ethMax = responseJSON['input']['limits']['max'] as double;
|
|
} else {
|
|
max = responseJSON['input']['limits']['max'] as int;
|
|
}
|
|
|
|
double minFormatted = AmountConverter.amountIntToDouble(from, min);
|
|
double maxFormatted = AmountConverter.amountIntToDouble(from, max);
|
|
|
|
return Limits(min: minFormatted, max: maxFormatted);
|
|
}
|
|
|
|
@override
|
|
Future<Trade> createTrade({TradeRequest request, bool isFixedRateMode}) async {
|
|
const url = apiUri + _morphURISuffix;
|
|
final _request = request as MorphTokenRequest;
|
|
final body = {
|
|
"input": {
|
|
"asset": _request.from.toString(),
|
|
"refund": _request.refundAddress
|
|
},
|
|
"output": [
|
|
{
|
|
"asset": _request.to.toString(),
|
|
"weight": weight,
|
|
"address": _request.address
|
|
}
|
|
],
|
|
"tag": "cakewallet"
|
|
};
|
|
|
|
final response = await post(url,
|
|
headers: {'Content-Type': 'application/json'}, body: json.encode(body));
|
|
|
|
if (response.statusCode != 200) {
|
|
if (response.statusCode == 400) {
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final error = responseJSON['description'] as String;
|
|
|
|
throw TradeNotCreatedException(description, description: error);
|
|
}
|
|
|
|
throw TradeNotCreatedException(description);
|
|
}
|
|
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final id = responseJSON['id'] as String;
|
|
|
|
return Trade(
|
|
id: id,
|
|
provider: description,
|
|
from: _request.from,
|
|
to: _request.to,
|
|
state: TradeState.created,
|
|
amount: _request.amount,
|
|
createdAt: DateTime.now());
|
|
}
|
|
|
|
@override
|
|
Future<Trade> findTradeById({@required String id}) async {
|
|
final url = apiUri + _morphURISuffix + '/' + id;
|
|
final response = await get(url);
|
|
|
|
if (response.statusCode != 200) {
|
|
if (response.statusCode == 400) {
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final error = responseJSON['description'] as String;
|
|
|
|
throw TradeNotFoundException(id,
|
|
provider: description, description: error);
|
|
}
|
|
|
|
throw TradeNotFoundException(id, provider: description);
|
|
}
|
|
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final fromCurrency = responseJSON['input']['asset'] as String;
|
|
final from = CryptoCurrency.fromString(fromCurrency.toLowerCase());
|
|
final toCurrency = responseJSON['output'][0]['asset'] as String;
|
|
final to = CryptoCurrency.fromString(toCurrency.toLowerCase());
|
|
final inputAddress = responseJSON['input']['deposit_address'] as String;
|
|
final status = responseJSON['state'] as String;
|
|
final state = TradeState.deserialize(raw: status.toLowerCase());
|
|
|
|
String amount = "";
|
|
for (final trade in trades.values) {
|
|
if (trade.id == id) {
|
|
amount = trade.amount;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return Trade(
|
|
id: id,
|
|
from: from,
|
|
to: to,
|
|
provider: description,
|
|
inputAddress: inputAddress,
|
|
amount: amount,
|
|
state: state);
|
|
}
|
|
|
|
@override
|
|
Future<double> calculateAmount(
|
|
{CryptoCurrency from, CryptoCurrency to, double amount, bool isFixedRateMode,
|
|
bool isReceiveAmount}) async {
|
|
final url = apiUri + _ratesURISuffix;
|
|
final response = await get(url);
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
final rate = responseJSON['data'][from.toString()][to.toString()] as String;
|
|
|
|
try {
|
|
final estimatedAmount = double.parse(rate) * amount;
|
|
return estimatedAmount;
|
|
} catch (e) {
|
|
return 0.0;
|
|
}
|
|
}
|
|
}
|