common: update wallet support list

pull/633/head
Pavol Rusnak 5 years ago
parent 899a03dd1d
commit b23da6acb9
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

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…
Cancel
Save