1
0
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:
Pavol Rusnak 2019-10-15 15:57:59 +02:00
parent 899a03dd1d
commit b23da6acb9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
4 changed files with 831 additions and 8837 deletions

File diff suppressed because it is too large Load Diff

View File

@ -113,7 +113,8 @@
"Github": "https://github.com/tezos/tezos" "Github": "https://github.com/tezos/tezos"
}, },
"wallet": { "wallet": {
"SimpleStaking": "https://simplestaking.com" "SimpleStaking": "https://simplestaking.com",
"Magnum": "https://magnumwallet.co"
}, },
"blockchain_link": null "blockchain_link": null
}, },

View File

@ -18,6 +18,7 @@
"ElectrumG": "https://github.com/BTCGPU/electrum" "ElectrumG": "https://github.com/BTCGPU/electrum"
}, },
"bitcoin:BTX": { "bitcoin:BTX": {
"Magnum": "https://magnumwallet.co",
"Electrum-BTX": "https://github.com/LIMXTEC/electrum-btx" "Electrum-BTX": "https://github.com/LIMXTEC/electrum-btx"
}, },
"bitcoin:CPC": { "bitcoin:CPC": {
@ -29,6 +30,9 @@
"bitcoin:DASH": { "bitcoin:DASH": {
"Dash Electrum": "https://electrum.dash.org" "Dash Electrum": "https://electrum.dash.org"
}, },
"bitcoin:DCR": {
"Exodus": "https://www.exodus.io"
},
"bitcoin:FJC": { "bitcoin:FJC": {
"Electrum-FJC": "http://www.fujicoin.org/downloads.php" "Electrum-FJC": "http://www.fujicoin.org/downloads.php"
}, },
@ -41,6 +45,9 @@
"bitcoin:GRS": { "bitcoin:GRS": {
"Electrum-GRS": "https://www.groestlcoin.org/groestlcoin-electrum-wallet" "Electrum-GRS": "https://www.groestlcoin.org/groestlcoin-electrum-wallet"
}, },
"bitcoin:KMD": {
"Magnum": "https://magnumwallet.co"
},
"bitcoin:KOTO": { "bitcoin:KOTO": {
"Electrum-KOTO": "https://electrum.kotocoin.info" "Electrum-KOTO": "https://electrum.kotocoin.info"
}, },

View File

@ -27,15 +27,15 @@ MARKET_CAPS = {}
# automatic wallet entries # automatic wallet entries
WALLET_TREZOR = {"Trezor": "https://wallet.trezor.io"} WALLET_TREZOR = {"Trezor": "https://wallet.trezor.io"}
WALLET_TREZOR_NEXT = {"Trezor Beta": "https://beta-wallet.trezor.io/next/"} WALLET_ETH_TREZOR = {"Trezor Beta": "https://beta-wallet.trezor.io/next/"}
WALLET_NEM = {"Nano Wallet": "https://nem.io/downloads/"} WALLET_NEM = {
"Nano Wallet": "https://nem.io/downloads/",
"Magnum": "https://magnumwallet.co",
}
WALLETS_ETH_3RDPARTY = { WALLETS_ETH_3RDPARTY = {
"MyEtherWallet": "https://www.myetherwallet.com", "MyEtherWallet": "https://www.myetherwallet.com",
"MyCrypto": "https://mycrypto.com", "MyCrypto": "https://mycrypto.com",
} }
WALLETS_ETH_NATIVE = WALLETS_ETH_3RDPARTY.copy()
WALLETS_ETH_NATIVE.update(WALLET_TREZOR_NEXT)
TREZOR_KNOWN_URLS = ( TREZOR_KNOWN_URLS = (
@ -259,7 +259,7 @@ def update_erc20(coins, networks, support_info):
hidden = True hidden = True
if network_support.get(chain, {}).get("webwallet"): if network_support.get(chain, {}).get("webwallet"):
wallets = WALLETS_ETH_NATIVE wallets = WALLET_ETH_TREZOR
else: else:
wallets = WALLETS_ETH_3RDPARTY wallets = WALLETS_ETH_3RDPARTY
@ -287,7 +287,7 @@ def update_ethereum_networks(coins, support_info):
for coin in coins: for coin in coins:
key = coin["key"] key = coin["key"]
if support_info[key].get("webwallet"): if support_info[key].get("webwallet"):
wallets = WALLETS_ETH_NATIVE wallets = WALLET_ETH_TREZOR
else: else:
wallets = WALLETS_ETH_3RDPARTY wallets = WALLETS_ETH_3RDPARTY
details = dict(links=dict(Homepage=coin.get("url")), wallet=wallets) details = dict(links=dict(Homepage=coin.get("url")), wallet=wallets)