Changed api to prod mode.

This commit is contained in:
M 2021-03-18 11:15:07 +02:00
parent af9d39f460
commit e77cf89651

View file

@ -333,16 +333,15 @@ abstract class DashboardViewModelBase with Store {
Future<String> getWyreUrl() async {
final timestamp = DateTime.now().millisecondsSinceEpoch.toString();
final url = 'https://api.testwyre.com/v3/orders/reserve' + '?timestamp=' +
final url = 'https://api.sendwyre.com/v3/orders/reserve' + '?timestamp=' +
timestamp;
final apiKey = secrets.wyreApiKey;
final secretKey = secrets.wyreSecretKey;
final accountId = secrets.wyreAccountId;
final body = {
//'destCurrency' : walletTypeToCryptoCurrency(type).title,
//'dest' : walletTypeToString(type).toLowerCase() + ':' + address,
'destCurrency' : walletTypeToCryptoCurrency(type).title,
'dest' : walletTypeToString(type).toLowerCase() + ':' + address,
'referrerAccountId' : accountId,
//'lockFields' : ['destCurrency', 'dest']
'lockFields' : ['destCurrency', 'dest']
};
final response = await post(url,