mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-16 03:18:09 +00:00
Add Ellaism network support
This commit is contained in:
parent
e455dd70c7
commit
e86421ee89
@ -103,6 +103,19 @@
|
|||||||
"t2_enabled": "yes",
|
"t2_enabled": "yes",
|
||||||
"type": "coin"
|
"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": {
|
"coin2:XLM": {
|
||||||
"links": {
|
"links": {
|
||||||
"Homepage": "https://www.stellar.org"
|
"Homepage": "https://www.stellar.org"
|
||||||
@ -10131,4 +10144,4 @@
|
|||||||
"updated_at": 1527240389,
|
"updated_at": 1527240389,
|
||||||
"updated_at_readable": "Fri May 25 11:26:29 2018"
|
"updated_at_readable": "Fri May 25 11:26:29 2018"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -211,6 +211,14 @@ def update_ethereum(details):
|
|||||||
set_default(out, 't2_enabled', 'yes')
|
set_default(out, 't2_enabled', 'yes')
|
||||||
update_marketcap(out, 'ubiq')
|
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 = details['coins'].setdefault('coin2:EGEM', {})
|
||||||
out['type'] = 'coin'
|
out['type'] = 'coin'
|
||||||
set_default(out, 'shortcut', 'EGEM')
|
set_default(out, 'shortcut', 'EGEM')
|
||||||
|
@ -65,6 +65,12 @@
|
|||||||
"name": "Ethereum Classic Testnet",
|
"name": "Ethereum Classic Testnet",
|
||||||
"url": "https://ethereumclassic.github.io"
|
"url": "https://ethereumclassic.github.io"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"chain_id": 64,
|
||||||
|
"shortcut": "ELLA",
|
||||||
|
"name": "Ellaism",
|
||||||
|
"url": "https://ellaism.org"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"chain_id": 1987,
|
"chain_id": 1987,
|
||||||
"shortcut": "EGEM",
|
"shortcut": "EGEM",
|
||||||
|
Loading…
Reference in New Issue
Block a user