mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-25 16:08:32 +00:00
coins_details: Added EXP, RSK.
This commit is contained in:
parent
a33e8d2ccd
commit
9e80d32b5f
@ -26,6 +26,32 @@
|
|||||||
"t2_enabled": "yes",
|
"t2_enabled": "yes",
|
||||||
"type": "coin"
|
"type": "coin"
|
||||||
},
|
},
|
||||||
|
"coin2:EXP": {
|
||||||
|
"links": {
|
||||||
|
"Homepage": "https://www.expanse.tech",
|
||||||
|
"MyCrypto Wallet": "https://mycrypto.com",
|
||||||
|
"MyEtherWallet": "https://www.myetherwallet.com"
|
||||||
|
},
|
||||||
|
"marketcap_usd": 0,
|
||||||
|
"name": "Expanse",
|
||||||
|
"shortcut": "EXP",
|
||||||
|
"t1_enabled": "yes",
|
||||||
|
"t2_enabled": "yes",
|
||||||
|
"type": "coin"
|
||||||
|
},
|
||||||
|
"coin2:RSK": {
|
||||||
|
"links": {
|
||||||
|
"Homepage": "https://www.rsk.co",
|
||||||
|
"MyCrypto Wallet": "https://mycrypto.com",
|
||||||
|
"MyEtherWallet": "https://www.myetherwallet.com"
|
||||||
|
},
|
||||||
|
"marketcap_usd": 0,
|
||||||
|
"name": "Rootstock",
|
||||||
|
"shortcut": "RSK",
|
||||||
|
"t1_enabled": "yes",
|
||||||
|
"t2_enabled": "yes",
|
||||||
|
"type": "coin"
|
||||||
|
},
|
||||||
"coin2:UBQ": {
|
"coin2:UBQ": {
|
||||||
"links": {
|
"links": {
|
||||||
"Homepage": "https://ubiqsmart.com",
|
"Homepage": "https://ubiqsmart.com",
|
||||||
@ -8112,10 +8138,10 @@
|
|||||||
},
|
},
|
||||||
"info": {
|
"info": {
|
||||||
"marketcap_usd": 185205612765,
|
"marketcap_usd": 185205612765,
|
||||||
"t1_coins": 536,
|
"t1_coins": 538,
|
||||||
"t2_coins": 536,
|
"t2_coins": 538,
|
||||||
"total_marketcap_usd": 270230834613,
|
"total_marketcap_usd": 270230834613,
|
||||||
"updated_at": 1523467778,
|
"updated_at": 1523468285,
|
||||||
"updated_at_readable": "Wed Apr 11 19:29:38 2018"
|
"updated_at_readable": "Wed Apr 11 19:38:05 2018"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -165,6 +165,22 @@ def update_ethereum(details):
|
|||||||
set_default(out, 't2_enabled', 'yes')
|
set_default(out, 't2_enabled', 'yes')
|
||||||
update_marketcap(out, 'ethereum-classic')
|
update_marketcap(out, 'ethereum-classic')
|
||||||
|
|
||||||
|
out = details['coins'].setdefault('coin2:RSK', {})
|
||||||
|
out['type'] = 'coin'
|
||||||
|
set_default(out, 'shortcut', 'RSK')
|
||||||
|
set_default(out, 'name', 'Rootstock')
|
||||||
|
set_default(out, 't1_enabled', 'yes')
|
||||||
|
set_default(out, 't2_enabled', 'yes')
|
||||||
|
update_marketcap(out, 'rootstock')
|
||||||
|
|
||||||
|
out = details['coins'].setdefault('coin2:EXP', {})
|
||||||
|
out['type'] = 'coin'
|
||||||
|
set_default(out, 'shortcut', 'EXP')
|
||||||
|
set_default(out, 'name', 'Expanse')
|
||||||
|
set_default(out, 't1_enabled', 'yes')
|
||||||
|
set_default(out, 't2_enabled', 'yes')
|
||||||
|
update_marketcap(out, 'expanse')
|
||||||
|
|
||||||
out = details['coins'].setdefault('coin2:UBQ', {})
|
out = details['coins'].setdefault('coin2:UBQ', {})
|
||||||
out['type'] = 'coin'
|
out['type'] = 'coin'
|
||||||
set_default(out, 'shortcut', 'UBQ')
|
set_default(out, 'shortcut', 'UBQ')
|
||||||
|
Loading…
Reference in New Issue
Block a user