diff --git a/defs/coins_details.json b/defs/coins_details.json index b04182da8d..e768e856ed 100644 --- a/defs/coins_details.json +++ b/defs/coins_details.json @@ -12641,6 +12641,21 @@ "MyEtherWallet": "https://www.myetherwallet.com" } }, + "eth:ATH": { + "links": { + "Homepage": "https://atheios.com" + }, + "marketcap_usd": 0, + "name": "Atheios", + "shortcut": "ATH", + "t1_enabled": "soon", + "t2_enabled": "soon", + "type": "coin", + "wallet": { + "MyCrypto": "https://mycrypto.com", + "MyEtherWallet": "https://www.myetherwallet.com" + } + }, "eth:CLO": { "links": { "Homepage": "https://callisto.network" @@ -13116,8 +13131,8 @@ "marketcap_usd": 168706565383, "t1_coins": 635, "t2_coins": 634, - "total_marketcap_usd": 210960655566, - "updated_at": 1535122394, - "updated_at_readable": "Fri Aug 24 16:53:14 2018" + "total_marketcap_usd": 210612300355, + "updated_at": 1535123434, + "updated_at_readable": "Fri Aug 24 17:10:34 2018" } } \ No newline at end of file diff --git a/defs/support.json b/defs/support.json index 8f3ac2b307..d961fce263 100644 --- a/defs/support.json +++ b/defs/support.json @@ -678,6 +678,7 @@ "erc20:ubq:QWARK": "1.6.2", "erc20:ubq:RICKS": "1.6.2", "eth:AKA": "soon", + "eth:ATH": "soon", "eth:CLO": "1.6.2", "eth:EGEM": "1.6.2", "eth:ELLA": "1.6.2", @@ -1487,6 +1488,7 @@ "erc20:ubq:QWARK": "2.0.7", "erc20:ubq:RICKS": "2.0.7", "eth:AKA": "soon", + "eth:ATH": "soon", "eth:CLO": "2.0.7", "eth:EGEM": "2.0.7", "eth:ELLA": "2.0.7", diff --git a/tools/support.py b/tools/support.py index 0d0ab53908..969b5d5e63 100755 --- a/tools/support.py +++ b/tools/support.py @@ -129,7 +129,7 @@ def find_unsupported_coins(coins_dict): result[device] = [] for key, coin in coins_dict.items(): - if coin.get("duplicate"): + if coin.get("duplicate") and coin_info.is_token(coin): continue if key not in support_set: result[device].append(coin)