1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-21 23:18:13 +00:00

fix(common): fix broken nem urls

This commit is contained in:
Pavol Rusnak 2022-03-02 13:14:16 +01:00
parent d655dbf228
commit d48aa2637f
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
3 changed files with 9 additions and 9 deletions

View File

@ -36223,7 +36223,7 @@
"wallet": [ "wallet": [
{ {
"name": "Nano Wallet", "name": "Nano Wallet",
"url": "https://nem.io/downloads/" "url": "https://nemplatform.com/wallets/#desktop"
} }
] ]
}, },
@ -36240,7 +36240,7 @@
"wallet": [ "wallet": [
{ {
"name": "Nano Wallet", "name": "Nano Wallet",
"url": "https://nem.io/downloads/" "url": "https://nemplatform.com/wallets/#desktop"
} }
] ]
}, },
@ -36258,7 +36258,7 @@
"wallet": [ "wallet": [
{ {
"name": "Nano Wallet", "name": "Nano Wallet",
"url": "https://nem.io/downloads/" "url": "https://nemplatform.com/wallets/#desktop"
} }
] ]
}, },
@ -36275,7 +36275,7 @@
"wallet": [ "wallet": [
{ {
"name": "Nano Wallet", "name": "Nano Wallet",
"url": "https://nem.io/downloads/" "url": "https://nemplatform.com/wallets/#desktop"
} }
] ]
}, },
@ -36292,13 +36292,13 @@
"wallet": [ "wallet": [
{ {
"name": "Nano Wallet", "name": "Nano Wallet",
"url": "https://nem.io/downloads/" "url": "https://nemplatform.com/wallets/#desktop"
} }
] ]
}, },
"nem:XEM": { "nem:XEM": {
"links": { "links": {
"Homepage": "https://nem.io" "Homepage": "https://nemplatform.com"
}, },
"marketcap_usd": 1255848019, "marketcap_usd": 1255848019,
"name": "NEM", "name": "NEM",
@ -36309,7 +36309,7 @@
"wallet": [ "wallet": [
{ {
"name": "Nano Wallet", "name": "Nano Wallet",
"url": "https://nem.io/downloads/" "url": "https://nemplatform.com/wallets/#desktop"
} }
] ]
} }

View File

@ -6,7 +6,7 @@
"mosaic": "xem", "mosaic": "xem",
"divisibility": 6, "divisibility": 6,
"links": { "links": {
"Homepage": "https://nem.io" "Homepage": "https://nemplatform.com"
} }
}, },
{ {

View File

@ -22,7 +22,7 @@ VERSIONS = coin_info.latest_releases()
# automatic wallet entries # automatic wallet entries
WALLET_SUITE = {"Trezor Suite": "https://suite.trezor.io"} WALLET_SUITE = {"Trezor Suite": "https://suite.trezor.io"}
WALLET_NEM = {"Nano Wallet": "https://nem.io/downloads/"} WALLET_NEM = {"Nano Wallet": "https://nemplatform.com/wallets/#desktop"}
WALLETS_ETH_3RDPARTY = { WALLETS_ETH_3RDPARTY = {
"MyEtherWallet": "https://www.myetherwallet.com", "MyEtherWallet": "https://www.myetherwallet.com",
"MyCrypto": "https://mycrypto.com", "MyCrypto": "https://mycrypto.com",