From e86421ee89a8cff3c6f7ed95849aec083348dfed Mon Sep 17 00:00:00 2001 From: Ellaismer Date: Sun, 27 May 2018 04:19:36 -0400 Subject: [PATCH] Add Ellaism network support --- coins_details.json | 15 ++++++++++++++- coins_details.py | 8 ++++++++ defs/ethereum/networks.json | 6 ++++++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/coins_details.json b/coins_details.json index b47725ba7..0edb55b5d 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" @@ -10131,4 +10144,4 @@ "updated_at": 1527240389, "updated_at_readable": "Fri May 25 11:26:29 2018" } -} \ No newline at end of file +} diff --git a/coins_details.py b/coins_details.py index 9d3f899e8..f02182124 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 df0acab2e..73fe7fa02 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",