mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 12:08:59 +00:00
Add Ellaism network support
This commit is contained in:
parent
e455dd70c7
commit
e86421ee89
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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')
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user