2023-01-16 21:07:45 +00:00
|
|
|
import 'package:decimal/decimal.dart';
|
2023-01-14 00:07:27 +00:00
|
|
|
import 'package:stackwallet/models/buy/response_objects/crypto.dart';
|
|
|
|
import 'package:stackwallet/models/buy/response_objects/fiat.dart';
|
2023-01-16 21:07:45 +00:00
|
|
|
import 'package:stackwallet/models/buy/response_objects/quote.dart';
|
2023-01-13 02:21:19 +00:00
|
|
|
// import 'package:stackwallet/models/buy/response_objects/pair.dart';
|
|
|
|
|
2023-01-16 21:07:45 +00:00
|
|
|
class Simplex {
|
2023-01-14 00:07:27 +00:00
|
|
|
List<Crypto> supportedCryptos = [];
|
|
|
|
List<Fiat> supportedFiats = [];
|
2023-01-16 21:31:53 +00:00
|
|
|
SimplexQuote quote = SimplexQuote(
|
|
|
|
crypto: Crypto.fromJson({'ticker': 'BTC', 'name': 'Bitcoin', 'image': ''}),
|
|
|
|
fiat: Fiat.fromJson(
|
|
|
|
{'ticker': 'USD', 'name': 'United States Dollar', 'image': ''}),
|
|
|
|
youPayFiatPrice: Decimal.parse("100"),
|
|
|
|
youReceiveCryptoAmount: Decimal.parse("1.0238917"),
|
|
|
|
purchaseId: "someID",
|
|
|
|
receivingAddress: '',
|
2023-01-19 19:36:05 +00:00
|
|
|
buyWithFiat: true,
|
2023-01-16 21:31:53 +00:00
|
|
|
);
|
2023-01-13 02:21:19 +00:00
|
|
|
|
2023-01-14 00:07:27 +00:00
|
|
|
void updateSupportedCryptos(List<Crypto> newCryptos) {
|
2023-01-13 02:21:19 +00:00
|
|
|
supportedCryptos = newCryptos;
|
|
|
|
}
|
|
|
|
|
2023-01-14 00:07:27 +00:00
|
|
|
void updateSupportedFiats(List<Fiat> newFiats) {
|
2023-01-13 02:21:19 +00:00
|
|
|
supportedFiats = newFiats;
|
|
|
|
}
|
2023-01-16 21:31:53 +00:00
|
|
|
|
|
|
|
void updateQuote(SimplexQuote newQuote) {
|
|
|
|
quote = newQuote;
|
|
|
|
}
|
2023-01-13 02:21:19 +00:00
|
|
|
}
|