1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 12:28:09 +00:00

common: don't use Beta/Next but rather Suite

This commit is contained in:
Pavol Rusnak 2020-11-14 16:41:03 +01:00
parent de44454cbf
commit f0968e8f66
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 4 additions and 5 deletions

View File

@ -56,7 +56,7 @@
"Github": "https://github.com/ripple/rippled" "Github": "https://github.com/ripple/rippled"
}, },
"wallet": { "wallet": {
"Trezor Beta": "https://beta-wallet.trezor.io/next/", "Trezor Beta": "https://suite.trezor.io",
"Exodus": "https://www.exodus.io", "Exodus": "https://www.exodus.io",
"Magnum": "https://magnumwallet.co" "Magnum": "https://magnumwallet.co"
}, },
@ -80,7 +80,7 @@
"Github": "https://github.com/ripple/rippled" "Github": "https://github.com/ripple/rippled"
}, },
"wallet": { "wallet": {
"Trezor Beta": "https://beta-wallet.trezor.io/next/" "Trezor Suite": "https://suite.trezor.io"
}, },
"blockchain_link": { "blockchain_link": {
"type": "ripple", "type": "ripple",

View File

@ -21,8 +21,8 @@ OVERRIDES = coin_info.load_json("coins_details.override.json")
VERSIONS = coin_info.latest_releases() VERSIONS = coin_info.latest_releases()
# automatic wallet entries # automatic wallet entries
WALLET_TREZOR = {"Trezor": "https://wallet.trezor.io"} WALLET_TREZOR = {"Trezor Wallet": "https://wallet.trezor.io"}
WALLET_ETH_TREZOR = {"Trezor Beta": "https://beta-wallet.trezor.io/next/"} WALLET_ETH_TREZOR = {"Trezor Suite": "https://suite.trezor.io"}
WALLET_NEM = { WALLET_NEM = {
"Nano Wallet": "https://nem.io/downloads/", "Nano Wallet": "https://nem.io/downloads/",
"Magnum": "https://magnumwallet.co", "Magnum": "https://magnumwallet.co",
@ -36,7 +36,6 @@ WALLETS_ETH_3RDPARTY = {
TREZOR_KNOWN_URLS = ( TREZOR_KNOWN_URLS = (
"https://suite.trezor.io", "https://suite.trezor.io",
"https://wallet.trezor.io", "https://wallet.trezor.io",
"https://beta-wallet.trezor.io/next/",
) )