diff --git a/coins_details.json b/coins_details.json index a294a9c420..e5c77f7fc6 100644 --- a/coins_details.json +++ b/coins_details.json @@ -103,6 +103,19 @@ "t2_enabled": "yes", "type": "coin" }, + "coin2:ELLA": { + "links": { + "Homepage": "https://ellaism.org", + "MyCrypto Wallet": "https://mycrypto.com", + "MyEtherWallet": "https://www.myetherwallet.com" + }, + "marketcap_usd": 1274724, + "name": "Ellaism", + "shortcut": "ELLA", + "t1_enabled": "yes", + "t2_enabled": "yes", + "type": "coin" + }, "coin2:XLM": { "links": { "Homepage": "https://www.stellar.org" diff --git a/coins_details.py b/coins_details.py index 9d3f899e84..f021821241 100755 --- a/coins_details.py +++ b/coins_details.py @@ -211,6 +211,14 @@ def update_ethereum(details): set_default(out, 't2_enabled', 'yes') update_marketcap(out, 'ubiq') + out = details['coins'].setdefault('coin2:ELLA', {}) + out['type'] = 'coin' + set_default(out, 'shortcut', 'ELLA') + set_default(out, 'name', 'Ellaism') + set_default(out, 't1_enabled', 'yes') + set_default(out, 't2_enabled', 'yes') + update_marketcap(out, 'ellaism') + out = details['coins'].setdefault('coin2:EGEM', {}) out['type'] = 'coin' set_default(out, 'shortcut', 'EGEM') diff --git a/defs/ethereum/networks.json b/defs/ethereum/networks.json index df0acab2e1..73fe7fa027 100644 --- a/defs/ethereum/networks.json +++ b/defs/ethereum/networks.json @@ -65,6 +65,12 @@ "name": "Ethereum Classic Testnet", "url": "https://ethereumclassic.github.io" }, + { + "chain_id": 64, + "shortcut": "ELLA", + "name": "Ellaism", + "url": "https://ellaism.org" + }, { "chain_id": 1987, "shortcut": "EGEM",