mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 07:28:10 +00:00
common: update wallet support list
This commit is contained in:
parent
899a03dd1d
commit
b23da6acb9
File diff suppressed because it is too large
Load Diff
@ -113,7 +113,8 @@
|
||||
"Github": "https://github.com/tezos/tezos"
|
||||
},
|
||||
"wallet": {
|
||||
"SimpleStaking": "https://simplestaking.com"
|
||||
"SimpleStaking": "https://simplestaking.com",
|
||||
"Magnum": "https://magnumwallet.co"
|
||||
},
|
||||
"blockchain_link": null
|
||||
},
|
||||
|
@ -18,6 +18,7 @@
|
||||
"ElectrumG": "https://github.com/BTCGPU/electrum"
|
||||
},
|
||||
"bitcoin:BTX": {
|
||||
"Magnum": "https://magnumwallet.co",
|
||||
"Electrum-BTX": "https://github.com/LIMXTEC/electrum-btx"
|
||||
},
|
||||
"bitcoin:CPC": {
|
||||
@ -29,6 +30,9 @@
|
||||
"bitcoin:DASH": {
|
||||
"Dash Electrum": "https://electrum.dash.org"
|
||||
},
|
||||
"bitcoin:DCR": {
|
||||
"Exodus": "https://www.exodus.io"
|
||||
},
|
||||
"bitcoin:FJC": {
|
||||
"Electrum-FJC": "http://www.fujicoin.org/downloads.php"
|
||||
},
|
||||
@ -41,6 +45,9 @@
|
||||
"bitcoin:GRS": {
|
||||
"Electrum-GRS": "https://www.groestlcoin.org/groestlcoin-electrum-wallet"
|
||||
},
|
||||
"bitcoin:KMD": {
|
||||
"Magnum": "https://magnumwallet.co"
|
||||
},
|
||||
"bitcoin:KOTO": {
|
||||
"Electrum-KOTO": "https://electrum.kotocoin.info"
|
||||
},
|
||||
|
@ -27,15 +27,15 @@ MARKET_CAPS = {}
|
||||
|
||||
# automatic wallet entries
|
||||
WALLET_TREZOR = {"Trezor": "https://wallet.trezor.io"}
|
||||
WALLET_TREZOR_NEXT = {"Trezor Beta": "https://beta-wallet.trezor.io/next/"}
|
||||
WALLET_NEM = {"Nano Wallet": "https://nem.io/downloads/"}
|
||||
|
||||
WALLET_ETH_TREZOR = {"Trezor Beta": "https://beta-wallet.trezor.io/next/"}
|
||||
WALLET_NEM = {
|
||||
"Nano Wallet": "https://nem.io/downloads/",
|
||||
"Magnum": "https://magnumwallet.co",
|
||||
}
|
||||
WALLETS_ETH_3RDPARTY = {
|
||||
"MyEtherWallet": "https://www.myetherwallet.com",
|
||||
"MyCrypto": "https://mycrypto.com",
|
||||
}
|
||||
WALLETS_ETH_NATIVE = WALLETS_ETH_3RDPARTY.copy()
|
||||
WALLETS_ETH_NATIVE.update(WALLET_TREZOR_NEXT)
|
||||
|
||||
|
||||
TREZOR_KNOWN_URLS = (
|
||||
@ -259,7 +259,7 @@ def update_erc20(coins, networks, support_info):
|
||||
hidden = True
|
||||
|
||||
if network_support.get(chain, {}).get("webwallet"):
|
||||
wallets = WALLETS_ETH_NATIVE
|
||||
wallets = WALLET_ETH_TREZOR
|
||||
else:
|
||||
wallets = WALLETS_ETH_3RDPARTY
|
||||
|
||||
@ -287,7 +287,7 @@ def update_ethereum_networks(coins, support_info):
|
||||
for coin in coins:
|
||||
key = coin["key"]
|
||||
if support_info[key].get("webwallet"):
|
||||
wallets = WALLETS_ETH_NATIVE
|
||||
wallets = WALLET_ETH_TREZOR
|
||||
else:
|
||||
wallets = WALLETS_ETH_3RDPARTY
|
||||
details = dict(links=dict(Homepage=coin.get("url")), wallet=wallets)
|
||||
|
Loading…
Reference in New Issue
Block a user