From dbfb74ee97ea9b15ad96f0acfd2ea44d2694b52b Mon Sep 17 00:00:00 2001 From: GiMa-Maya <128942712+GiMa-Maya@users.noreply.github.com> Date: Mon, 21 Oct 2024 20:59:32 +0200 Subject: [PATCH] Update exchange_provider_description.dart --- lib/exchange/exchange_provider_description.dart | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/exchange/exchange_provider_description.dart b/lib/exchange/exchange_provider_description.dart index 9f3723356..34d8ad091 100644 --- a/lib/exchange/exchange_provider_description.dart +++ b/lib/exchange/exchange_provider_description.dart @@ -31,6 +31,8 @@ class ExchangeProviderDescription extends EnumerableItem with Serializable< ExchangeProviderDescription(title: 'LetsExchange', raw: 10, image: 'assets/images/letsexchange_icon.svg'); static const stealthEx = ExchangeProviderDescription(title: 'StealthEx', raw: 11, image: 'assets/images/stealthex.png'); + static const mayaChain = + ExchangeProviderDescription(title: 'MayaChain', raw: 12, image: 'assets/images/mayachain.png'); static ExchangeProviderDescription deserialize({required int raw}) { switch (raw) { @@ -58,6 +60,8 @@ class ExchangeProviderDescription extends EnumerableItem with Serializable< return letsExchange; case 11: return stealthEx; + case 12: + return mayaChain; default: throw Exception('Unexpected token: $raw for ExchangeProviderDescription deserialize'); }