From d281ef8e214a14ce15d4db6bf758ead7b2ce0a33 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Fri, 21 Oct 2022 11:08:34 +0200 Subject: [PATCH] [#14120] Remove Ropsten and Rinkeby test networks --- src/status_im/ethereum/contracts.cljs | 12 +++------ src/status_im/ethereum/core.cljs | 6 +---- src/status_im/ethereum/core_test.cljs | 2 -- src/status_im/ethereum/eip681_test.cljs | 8 +----- src/status_im/ethereum/ens.cljs | 4 +-- src/status_im/ethereum/tokens.cljs | 12 +-------- src/status_im/ethereum/transactions/core.cljs | 8 ++---- src/status_im/i18n/i18n_test.cljs | 2 -- .../multiaccounts/login/data_test.cljs | 6 +---- src/status_im/subs/networks.cljs | 2 +- .../screens/network/edit_network/views.cljs | 4 +-- src/status_im/utils/config.cljs | 25 +++---------------- src/status_im/wallet/transactions_test.cljs | 4 --- translations/ar.json | 4 +-- translations/bn.json | 4 +-- translations/de.json | 4 +-- translations/el.json | 4 +-- translations/en.json | 2 -- translations/es.json | 4 +-- translations/es_419.json | 4 +-- translations/es_AR.json | 4 +-- translations/fil.json | 4 +-- translations/fr.json | 4 +-- translations/hi.json | 2 -- translations/id.json | 4 +-- translations/it.json | 4 +-- translations/ja.json | 2 -- translations/ko.json | 4 +-- translations/ms.json | 4 +-- translations/ne.json | 4 +-- translations/nl.json | 4 +-- translations/pl.json | 4 +-- translations/pt.json | 4 +-- translations/pt_BR.json | 2 -- translations/ru.json | 2 -- translations/tl.json | 4 +-- translations/tr.json | 4 +-- translations/vi.json | 4 +-- translations/zh.json | 4 +-- translations/zh_Hans_CN.json | 3 --- translations/zh_TW.json | 4 +-- translations/zh_hans.json | 2 -- 42 files changed, 37 insertions(+), 161 deletions(-) diff --git a/src/status_im/ethereum/contracts.cljs b/src/status_im/ethereum/contracts.cljs index c5d7deca2f..c9da0d564b 100644 --- a/src/status_im/ethereum/contracts.cljs +++ b/src/status_im/ethereum/contracts.cljs @@ -4,21 +4,15 @@ (def contracts {:status/snt {:mainnet "0x744d70fdbe2ba4cf95131626614a1763df805b9e" - :testnet "0xc55cf4b03948d7ebc8b9e8bad92643703811d162" :goerli "0x3D6AFAA395C31FCd391fE3D562E75fe9E8ec7E6a"} - :status/tribute-to-talk - {:testnet "0xC61aa0287247a0398589a66fCD6146EC0F295432"} :status/stickers - {:testnet "0x8cc272396be7583c65bee82cd7b743c69a87287d" - :mainnet "0x0577215622f43a39f4bc9640806dfea9b10d2a36" + {:mainnet "0x0577215622f43a39f4bc9640806dfea9b10d2a36" :goerli "0x07f7CB0C0a4ab3e0999AfE8b3997Da34880f05d0"} :status/sticker-market - {:testnet "0x6CC7274aF9cE9572d22DFD8545Fb8c9C9Bcb48AD" - :mainnet "0x12824271339304d3a9f7e096e62a2a7e73b4a7e7" + {:mainnet "0x12824271339304d3a9f7e096e62a2a7e73b4a7e7" :goerli "0xf1E149A7DF70D5Ff1E265daAa738d785D3274717"} :status/sticker-pack - {:testnet "0xf852198d0385c4b871e0b91804ecd47c6ba97351" - :mainnet "0x110101156e8F0743948B2A61aFcf3994A8Fb172e" + {:mainnet "0x110101156e8F0743948B2A61aFcf3994A8Fb172e" :goerli "0x8D3fD2EA24bD53a8Bd2b1026727db8bbe9A8C8Af"}}) (defn get-address diff --git a/src/status_im/ethereum/core.cljs b/src/status_im/ethereum/core.cljs index 916e5cf1ce..727d4f5600 100644 --- a/src/status_im/ethereum/core.cljs +++ b/src/status_im/ethereum/core.cljs @@ -25,8 +25,6 @@ ;; IDs standardized in https://github.com/ethereum/EIPs/blob/master/EIPS/eip-155.md#list-of-chain-ids (def chains {:mainnet {:id 1 :name "Mainnet"} - :testnet {:id 3 :name "Ropsten"} - :rinkeby {:id 4 :name "Rinkeby"} :xdai {:id 100 :name "xDai"} :goerli {:id 5 :name "Goerli"} :bsc {:id BSC-mainnet-chain-id @@ -51,9 +49,7 @@ :STT)) (defn testnet? [id] - (contains? #{(chain-keyword->chain-id :testnet) - (chain-keyword->chain-id :rinkeby) - (chain-keyword->chain-id :goerli) + (contains? #{(chain-keyword->chain-id :goerli) (chain-keyword->chain-id :bsc-testnet)} id)) (defn sidechain? [id] diff --git a/src/status_im/ethereum/core_test.cljs b/src/status_im/ethereum/core_test.cljs index b5b32de635..1f8a6b6868 100644 --- a/src/status_im/ethereum/core_test.cljs +++ b/src/status_im/ethereum/core_test.cljs @@ -4,8 +4,6 @@ (deftest chain-id->chain-keyword (is (= (ethereum/chain-id->chain-keyword 1) :mainnet)) - (is (= (ethereum/chain-id->chain-keyword 3) :testnet)) - (is (= (ethereum/chain-id->chain-keyword 4) :rinkeby)) (is (= (ethereum/chain-id->chain-keyword 5) :goerli)) (is (= (ethereum/chain-id->chain-keyword 5777) :custom))) diff --git a/src/status_im/ethereum/eip681_test.cljs b/src/status_im/ethereum/eip681_test.cljs index bd8cc24db8..621817b764 100644 --- a/src/status_im/ethereum/eip681_test.cljs +++ b/src/status_im/ethereum/eip681_test.cljs @@ -85,10 +85,6 @@ :name "Status Network Token" :symbol :SNT :decimals 18}} - :testnet {"0xc55cf4b03948d7ebc8b9e8bad92643703811d162" {:address "0xc55cf4b03948d7ebc8b9e8bad92643703811d162" - :name "Status Test Token" - :symbol :STT - :decimals 18}} :goerli {"0x3d6afaa395c31fcd391fe3d562e75fe9e8ec7e6a" {:address "0x3d6afaa395c31fcd391fe3d562e75fe9e8ec7e6a" :name "Status Test Token" :symbol :STT @@ -101,9 +97,7 @@ (is (= "ethereum:0x744d70fdbe2ba4cf95131626614a1763df805b9e/transfer?uint256=5&address=0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7&gas=10000&gasPrice=10000" (eip681/generate-erc20-uri "0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7" {:symbol :SNT :value 5 :gas 10000 :gasPrice 10000} (:mainnet all-tokens)))) (is (= "ethereum:0x744d70fdbe2ba4cf95131626614a1763df805b9e/transfer?uint256=5&address=0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7" - (eip681/generate-erc20-uri "0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7" {:symbol :SNT :chain-id 1 :value 5} (:mainnet all-tokens)))) - (is (= "ethereum:0xc55cf4b03948d7ebc8b9e8bad92643703811d162@3/transfer?uint256=5&address=0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7" - (eip681/generate-erc20-uri "0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7" {:symbol :STT :chain-id 3 :value 5} (:testnet all-tokens))))) + (eip681/generate-erc20-uri "0x89205a3a3b2a69de6dbf7f01ed13b2108b2c43e7" {:symbol :SNT :chain-id 1 :value 5} (:mainnet all-tokens))))) (deftest generate-uri (is (= nil (eip681/generate-uri nil nil))) diff --git a/src/status_im/ethereum/ens.cljs b/src/status_im/ethereum/ens.cljs index 38cdf3b61e..f828ebd498 100644 --- a/src/status_im/ethereum/ens.cljs +++ b/src/status_im/ethereum/ens.cljs @@ -6,9 +6,7 @@ ;; this is the addresses of ens registries for the different networks (def ens-registries {:mainnet "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" - :testnet "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" - :goerli "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" - :rinkeby "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"}) + :goerli "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e"}) (def default-address "0x0000000000000000000000000000000000000000") (def default-key "0x0400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000") diff --git a/src/status_im/ethereum/tokens.cljs b/src/status_im/ethereum/tokens.cljs index 1474e1e8f8..1f65b36eb8 100644 --- a/src/status_im/ethereum/tokens.cljs +++ b/src/status_im/ethereum/tokens.cljs @@ -20,14 +20,6 @@ {:mainnet {:name "Ether" :symbol :ETH :decimals 18} - :testnet {:name "Ropsten Ether" - :symbol :ETH - :symbol-display :ETHro - :decimals 18} - :rinkeby {:name "Rinkeby Ether" - :symbol :ETH - :symbol-display :ETHri - :decimals 18} :goerli {:name "Goerli Ether" :symbol :ETH :symbol-display :ETHgo @@ -58,8 +50,6 @@ (def token-icons {:mainnet (resolve-icons :mainnet) - :testnet (resolve-icons :testnet) - :rinkeby (resolve-icons :rinkeby) :xdai (resolve-icons :xdai) :custom []}) @@ -91,4 +81,4 @@ (if (or (= (:symbol-display native-coin) symbol) (= (:symbol native-coin) symbol)) native-coin - (symbol->token all-tokens symbol)))) \ No newline at end of file + (symbol->token all-tokens symbol)))) diff --git a/src/status_im/ethereum/transactions/core.cljs b/src/status_im/ethereum/transactions/core.cljs index 69ea68625f..726aa046ba 100644 --- a/src/status_im/ethereum/transactions/core.cljs +++ b/src/status_im/ethereum/transactions/core.cljs @@ -16,16 +16,12 @@ (def etherscan-supported? #{(ethereum/chain-keyword->chain-id :mainnet) - (ethereum/chain-keyword->chain-id :testnet) - (ethereum/chain-keyword->chain-id :goerli) - (ethereum/chain-keyword->chain-id :rinkeby)}) + (ethereum/chain-keyword->chain-id :goerli)}) (def binance-mainnet-chain-id (ethereum/chain-keyword->chain-id :bsc)) (def binance-testnet-chain-id (ethereum/chain-keyword->chain-id :bsc-testnet)) -(def network->subdomain {3 "ropsten" - 4 "rinkeby" - 5 "goerli"}) +(def network->subdomain {5 "goerli"}) (defn get-transaction-details-url [chain-id hash] {:pre [(number? chain-id) (string? hash)] diff --git a/src/status_im/i18n/i18n_test.cljs b/src/status_im/i18n/i18n_test.cljs index caf230cd71..89c60a15bc 100644 --- a/src/status_im/i18n/i18n_test.cljs +++ b/src/status_im/i18n/i18n_test.cljs @@ -766,8 +766,6 @@ :reset-card-description :retry :revoke-access - :rinkeby-network - :ropsten-network :rpc-url :save :save-password diff --git a/src/status_im/multiaccounts/login/data_test.cljs b/src/status_im/multiaccounts/login/data_test.cljs index 4a0943208c..9ee1bbb68b 100644 --- a/src/status_im/multiaccounts/login/data_test.cljs +++ b/src/status_im/multiaccounts/login/data_test.cljs @@ -84,12 +84,8 @@ :signed-up? true :name "name" :last-request nil - :wallet/visible-tokens {:testnet #{:STT - :HND} - :mainnet #{:SNT} + :wallet/visible-tokens {:mainnet #{:SNT} :goerli #{:STT} - :rinkeby #{:MOKSHA - :KDO} :xdai #{}} :preview-privacy? true :fleet :eth.prod diff --git a/src/status_im/subs/networks.cljs b/src/status_im/subs/networks.cljs index 534c3eefd4..8eb00389ea 100644 --- a/src/status_im/subs/networks.cljs +++ b/src/status_im/subs/networks.cljs @@ -32,4 +32,4 @@ :manage-network-valid? :<- [:networks/manage] (fn [manage] - (not-any? :error (vals manage)))) \ No newline at end of file + (not-any? :error (vals manage)))) diff --git a/src/status_im/ui/screens/network/edit_network/views.cljs b/src/status_im/ui/screens/network/edit_network/views.cljs index 9551ce9009..f7a8a73808 100644 --- a/src/status_im/ui/screens/network/edit_network/views.cljs +++ b/src/status_im/ui/screens/network/edit_network/views.cljs @@ -11,8 +11,6 @@ (defn- render-network-type [type _ _ manage-network] (let [name (case type :mainnet (i18n/label :t/mainnet-network) - :testnet (i18n/label :t/ropsten-network) - :rinkeby (i18n/label :t/rinkeby-network) :goerli (i18n/label :t/goerli-network) :custom (i18n/label :t/custom))] [quo/list-item @@ -49,7 +47,7 @@ :default-value (get-in manage-network [:url :value]) :on-change-text #(re-frame/dispatch [::network/input-changed :url %])}]]] [quo/list-header (i18n/label :t/network-chain)] - [list/flat-list {:data [:mainnet :testnet :rinkeby :goerli :custom] + [list/flat-list {:data [:mainnet :goerli :custom] :key-fn (fn [_ i] (str i)) :render-data manage-network :render-fn render-network-type}] diff --git a/src/status_im/utils/config.cljs b/src/status_im/utils/config.cljs index 438e7d9d8e..f3b4c16893 100644 --- a/src/status_im/utils/config.cljs +++ b/src/status_im/utils/config.cljs @@ -21,13 +21,8 @@ (goog-define POKT_TOKEN "3ef2018191814b7e1009b8d9") (goog-define OPENSEA_API_KEY "") -(def mainnet-rpc-url - (str "https://eth-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN)) - -(def testnet-rpc-url - (str "https://ropsten.infura.io/v3/" POKT_TOKEN)) -(def goerli-rpc-url - (str "https://goerli-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN)) +(def mainnet-rpc-url (str "https://eth-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN)) +(def goerli-rpc-url (str "https://goerli-archival.gateway.pokt.network/v1/lb/" POKT_TOKEN)) (def opensea-api-key OPENSEA_API_KEY) (def bootnodes-settings-enabled? (enabled? (get-config :BOOTNODES_SETTINGS_ENABLED "1"))) (def mailserver-confirmations-enabled? (enabled? (get-config :MAILSERVER_CONFIRMATIONS_ENABLED))) @@ -119,21 +114,7 @@ :URL "https://bsc-dataseed.binance.org"}}}]) (def testnet-networks - [{:id "testnet_rpc", - :chain-explorer-link "https://ropsten.etherscan.io/address/", - :name "Ropsten with upstream RPC", - :config {:NetworkId (ethereum/chain-keyword->chain-id :testnet) - :DataDir "/ethereum/testnet_rpc" - :UpstreamConfig {:Enabled true - :URL testnet-rpc-url}}} - {:id "rinkeby_rpc", - :chain-explorer-link "https://rinkeby.etherscan.io/address/", - :name "Rinkeby with upstream RPC", - :config {:NetworkId (ethereum/chain-keyword->chain-id :rinkeby) - :DataDir "/ethereum/rinkeby_rpc" - :UpstreamConfig {:Enabled true - :URL (str "https://rinkeby.infura.io/v3/" POKT_TOKEN)}}} - {:id "goerli_rpc", + [{:id "goerli_rpc", :chain-explorer-link "https://goerli.etherscan.io/address/", :name "Goerli with upstream RPC", :config {:NetworkId (ethereum/chain-keyword->chain-id :goerli) diff --git a/src/status_im/wallet/transactions_test.cljs b/src/status_im/wallet/transactions_test.cljs index 36a1d52909..32fcb49c56 100644 --- a/src/status_im/wallet/transactions_test.cljs +++ b/src/status_im/wallet/transactions_test.cljs @@ -5,10 +5,6 @@ (deftest get-transaction-details-url (is (= "https://etherscan.io/tx/asdfasdf" (transactions/get-transaction-details-url 1 "asdfasdf"))) - (is (= "https://rinkeby.etherscan.io/tx/asdfasdfg" - (transactions/get-transaction-details-url 4 "asdfasdfg"))) - (is (= "https://ropsten.etherscan.io/tx/asdfasdfgg" - (transactions/get-transaction-details-url 3 "asdfasdfgg"))) (is (nil? (transactions/get-transaction-details-url 7787878 "asdfasdfg"))) (is (thrown? js/Error (transactions/get-transaction-details-url nil "asdfasdfg"))) (is (thrown? js/Error (transactions/get-transaction-details-url 676868 1)))) diff --git a/translations/ar.json b/translations/ar.json index beca04667f..42066f0a66 100644 --- a/translations/ar.json +++ b/translations/ar.json @@ -1400,8 +1400,6 @@ "restore-defaults": "استعادة الضبط الافتراضي", "retry": "إعادة المحاولة", "revoke-access": "إلغاء الوصول", - "rinkeby-network": "Rinkeby اختبار الشبكة", - "ropsten-network": "اختبار شبكة Ropsten ", "rpc-url": "RPC URL", "rpc-usage-copy": "نسخ", "rpc-usage-filter": "أساليب التصفية", @@ -1796,4 +1794,4 @@ "your-recovery-phrase-description": "هذه هي العبارة الأولية الخاصة بك. يمكنك استخدامها لإثبات أن هذه هي محفظتك. يمكنك فقط أن ترى ذلك مرة واحدة! اكتبها على الورق واحتفظ بها في مكان آمن. ستحتاج إليها إذا فقدت أو أعدت تثبيت محفظتك.", "your-tip-limit": "حد الإكرامية الخاص بك", "youre-on-mobile-network": "أنت متصل بشبكة الجوال" -} \ No newline at end of file +} diff --git a/translations/bn.json b/translations/bn.json index f8bc4f5a02..ea0c0f4edc 100644 --- a/translations/bn.json +++ b/translations/bn.json @@ -1344,8 +1344,6 @@ "restore-defaults": "ডিফল্টগুলি পুনর্বহাল করুন", "retry": "পুনরায় চেষ্টা করা", "revoke-access": "প্রবেশ বাতিল করুন", - "rinkeby-network": "Rinkeby পরীক্ষা নেটওয়ার্ক", - "ropsten-network": "Ropsten পরীক্ষা নেটওয়ার্ক", "rpc-url": "আরপিসি ইউআরএল", "rpc-usage-copy": "অনুলিপি", "rpc-usage-filter": "ফিল্টার পদ্ধতি", @@ -1736,4 +1734,4 @@ "your-recovery-phrase-description": "এটা তোমার বীজের বাক্যাংশ। আপনি এটা ব্যবহার করে প্রমাণ করতে যে এটা আপনার মানিব্যাগ। তুমি শুধু একবারই এটা দেখতে পাবে! এটা কাগজে লিখে নিরাপদ জায়গায় রাখুন। আপনি যদি আপনার মানিব্যাগ হারান বা পুনরায় ইনস্টল করেন তাহলে আপনার এটি প্রয়োজন হবে।", "your-tip-limit": "আপনার টিপ সীমা", "youre-on-mobile-network": "আপনি মোবাইল নেটওয়ার্কে আছেন" -} \ No newline at end of file +} diff --git a/translations/de.json b/translations/de.json index 55e0982cad..0fbdf9714d 100644 --- a/translations/de.json +++ b/translations/de.json @@ -1330,8 +1330,6 @@ "restore-defaults": "Standardeinstellungen wiederherstellen", "retry": "Wiederholen", "revoke-access": "Zugangsberechtigung widerrufen", - "rinkeby-network": "Rinkeby-Testnetzwerk", - "ropsten-network": "Ropsten-Testnetzwerk", "rpc-url": "RPC-URL", "rpc-usage-copy": "Kopieren", "rpc-usage-filter": "Filtermethoden", @@ -1715,4 +1713,4 @@ "your-recovery-phrase-description": "Dies ist Ihre Seed-Phrase. Sie verwenden sie, um zu beweisen, dass dies Ihre Wallet ist. Sie bekommen sie nur einmal zu sehen! Schreiben Sie sie auf Papier und bewahren Sie es an einem sicheren Ort auf. Sie benötigen sie, wenn Sie Ihre Wallet verlieren oder neu installieren.", "your-tip-limit": "Ihr Trinkgeldlimit", "youre-on-mobile-network": "Sie sind im Mobilfunknetz" -} \ No newline at end of file +} diff --git a/translations/el.json b/translations/el.json index ec8fbda5bc..db36fe83bf 100644 --- a/translations/el.json +++ b/translations/el.json @@ -1064,8 +1064,6 @@ "reset-card-description": "Αυτή η λειτουργία θα επαναφέρει την κάρτα στην αρχική κατάσταση. Θα διαγράψει όλα τα δεδομένα της κάρτας, συμπεριλαμβανομένων των ιδιωτικών κλειδιών. Η λειτουργία δεν είναι αναστρέψιμη.", "retry": "Επανάληψη", "revoke-access": "Ανάκληση πρόσβασης", - "rinkeby-network": "Δίκτυο δοκιμών Rinkeby", - "ropsten-network": "Δοκιμαστικό δίκτυο Ropsten", "rpc-url": "Διεύθυνση URL RPC", "rpc-usage-copy": "Αντιγραφή", "rpc-usage-get-stats": "Ανανέωση", @@ -1360,4 +1358,4 @@ "your-keys": "Τα κλειδιά σας", "your-recovery-phrase": "Η φράση seed σας", "your-recovery-phrase-description": "Αυτή είναι η φράση seed σας. Τη χρησιμοποιείτε για να αποδείξετε ότι αυτό είναι το πορτοφόλι σας. Θα τη δείτε μόνο μία φορά! Γράψτε τη σε χαρτί και φυλάξτε τη σε ασφαλές μέρος. Θα τη χρειαστείτε εάν χάσετε ή επανεγκαταστήσετε το πορτοφόλι σας." -} \ No newline at end of file +} diff --git a/translations/en.json b/translations/en.json index 98b0e91bfe..e122000a81 100644 --- a/translations/en.json +++ b/translations/en.json @@ -1114,8 +1114,6 @@ "reset-card-description": "This operation will reset card to initial state. It will erase all card data including private keys. Operation is not reversible.", "retry": "Retry", "revoke-access": "Revoke access", - "rinkeby-network": "Rinkeby test network", - "ropsten-network": "Ropsten test network", "rpc-url": "RPC URL", "save": "Save", "save-password": "Save password", diff --git a/translations/es.json b/translations/es.json index 54724f606e..07846401a8 100644 --- a/translations/es.json +++ b/translations/es.json @@ -1179,8 +1179,6 @@ "restore-defaults": "Restaurar los valores predeterminados", "retry": "Reintentar", "revoke-access": "Revocar el acceso", - "rinkeby-network": "Red de prueba Rinkeby", - "ropsten-network": "Red de prueba Ropsten", "rpc-url": "RPC URL", "rpc-usage-copy": "Copiar", "rpc-usage-get-stats": "Actualizar", @@ -1499,4 +1497,4 @@ "your-recovery-phrase": "Tu frase semilla", "your-recovery-phrase-description": "Esta es tu frase semilla. La usas para comprobar que esta es tu billetera. ¡Sólo la verás una vez! Escríbela en un papel y guárdala en un lugar seguro. La necesitarás si pierdes o reinstalas tu billetera.", "youre-on-mobile-network": "Estás en una red móvil" -} \ No newline at end of file +} diff --git a/translations/es_419.json b/translations/es_419.json index 114735491c..c4be93eb99 100644 --- a/translations/es_419.json +++ b/translations/es_419.json @@ -1331,8 +1331,6 @@ "restore-defaults": "Restaurar los valores predeterminados", "retry": "Reintentar", "revoke-access": "Revocar el acceso", - "rinkeby-network": "Red de prueba Rinkeby", - "ropsten-network": "Red de prueba Ropsten", "rpc-url": "RPC URL", "rpc-usage-copy": "Copiar", "rpc-usage-filter": "Métodos de filtro", @@ -1715,4 +1713,4 @@ "your-recovery-phrase-description": "Esta es tu frase semilla. La usas para comprobar que esta es tu billetera. ¡Sólo la verás una vez! Escríbela en un papel y guárdala en un lugar seguro. La necesitarás si pierdes o reinstalas tu billetera.", "your-tip-limit": "Tu límite de propina", "youre-on-mobile-network": "Estás en una red móvil" -} \ No newline at end of file +} diff --git a/translations/es_AR.json b/translations/es_AR.json index 6d373f5b08..e27a790842 100644 --- a/translations/es_AR.json +++ b/translations/es_AR.json @@ -1181,8 +1181,6 @@ "restore-defaults": "Restaurar los Valores Predeterminados", "retry": "Reintentar", "revoke-access": "Revocar el acceso", - "rinkeby-network": "Red de prueba Rinkeby", - "ropsten-network": "Red de prueba Ropsten", "rpc-url": "RPC URL", "rpc-usage-copy": "Copiar", "rpc-usage-filter": "Métodos de filtrado", @@ -1506,4 +1504,4 @@ "your-recovery-phrase-description": "Esta es tu frase semilla. La usas para comprobar que esta es tu billetera. ¡Sólo la verás una vez! Escríbela en un papel y guárdala en un lugar seguro. La necesitarás si pierdes o reinstalas tu billetera.", "your-tip-limit": "Tu límite de propina", "youre-on-mobile-network": "Estás en una red móvil" -} \ No newline at end of file +} diff --git a/translations/fil.json b/translations/fil.json index 307df063ac..03d981b3ae 100644 --- a/translations/fil.json +++ b/translations/fil.json @@ -1400,8 +1400,6 @@ "restore-defaults": "Ibalik sa dating ayos", "retry": "Ulitin", "revoke-access": "Bawiin ang access", - "rinkeby-network": "Rinkeby test network", - "ropsten-network": "Ropsten test network", "rpc-url": "RPC URL", "rpc-usage-copy": "Kopya", "rpc-usage-filter": "Mga pamamaraan sa pagsala", @@ -1796,4 +1794,4 @@ "your-recovery-phrase-description": "ito ang iyong seed phrase. Ginagamit mo ito upang patunayan na ito ang iyong pitaka. ikaw lamang makita ito nang isang beses! Isulat ito sa papel at itago ito sa isang ligtas na lugar. Kakailanganin mo ito kung nawala o muling i-install ang iyong pitaka.", "your-tip-limit": "ang iyong tip limit", "youre-on-mobile-network": "Ikaw ay nasa mobile network" -} \ No newline at end of file +} diff --git a/translations/fr.json b/translations/fr.json index ab903a6ed8..0361150a64 100644 --- a/translations/fr.json +++ b/translations/fr.json @@ -1299,8 +1299,6 @@ "restore-defaults": "Restaurer les valeurs par défaut", "retry": "Réessayer", "revoke-access": "Révoquer l'accès", - "rinkeby-network": "Réseau de test Rinkeby", - "ropsten-network": "Réseau de test Ropsten", "rpc-url": "URL RPC", "rpc-usage-copy": "Copier", "rpc-usage-filter": "Méthodes de filtre", @@ -1662,4 +1660,4 @@ "your-recovery-phrase-description": "Ceci est votre phrase de récupération. Vous l'utilisez pour prouver qu'il s'agit de votre portefeuille. Vous ne le voyez qu'une fois! Ecrivez-le sur du papier et conservez-le dans un endroit sûr. Vous en aurez besoin si vous perdez ou réinstallez votre portefeuille.", "your-tip-limit": "Votre plafond des pourboires", "youre-on-mobile-network": "Vous êtes sur un réseau mobile" -} \ No newline at end of file +} diff --git a/translations/hi.json b/translations/hi.json index 61cf5f3c98..4921e927b8 100644 --- a/translations/hi.json +++ b/translations/hi.json @@ -1373,8 +1373,6 @@ "restore-defaults": "डिफॉल्ट्स का पुनःस्थापन", "retry": "पुन: प्रयास करें", "revoke-access": "एक्सेस अक्षम करें", - "rinkeby-network": "रिंकीबाई टेस्ट नेटवर्क", - "ropsten-network": "रोपस्टेन परीक्षण नेटवर्क", "rpc-url": "आरपीसी यूआरएल", "rpc-usage-copy": "प्रतिलिपि", "rpc-usage-filter": "फ़िल्टर के तरीके", diff --git a/translations/id.json b/translations/id.json index ab676d2b18..e896474ef5 100644 --- a/translations/id.json +++ b/translations/id.json @@ -1104,8 +1104,6 @@ "restore-defaults": "Pulihkan Default", "retry": "Mencoba kembali", "revoke-access": "Mencabut akses", - "rinkeby-network": "Jaringan pengujian Rinkeby", - "ropsten-network": "Jaringan uji Ropsten", "rpc-url": "URL RPC", "rpc-usage-copy": "Salinan", "rpc-usage-get-stats": "Menyegarkan", @@ -1418,4 +1416,4 @@ "your-recovery-phrase": "Frase seed Anda", "your-recovery-phrase-description": "Ini adalah frase awal Anda. Anda menggunakannya untuk membuktikan bahwa ini adalah dompet Anda. Anda hanya bisa melihatnya sekali! Tulis di atas kertas dan simpan di tempat yang aman. Anda akan membutuhkannya jika Anda kehilangan atau menginstal ulang dompet Anda.", "youre-on-mobile-network": "Anda berada di jaringan seluler" -} \ No newline at end of file +} diff --git a/translations/it.json b/translations/it.json index c1e8e6ade5..c810e72477 100644 --- a/translations/it.json +++ b/translations/it.json @@ -1329,8 +1329,6 @@ "restore-defaults": "Ripristina i valori predefiniti", "retry": "Riprova", "revoke-access": "Revoca l'accesso", - "rinkeby-network": "Rete di test Rinkeby", - "ropsten-network": "Rete di test Ropsten", "rpc-url": "URL RPC", "rpc-usage-copy": "Copia", "rpc-usage-filter": "Metodi di filtro", @@ -1713,4 +1711,4 @@ "your-recovery-phrase-description": "Questa è la tua frase di recupero. La usi per dimostrare che questo è il tuo portafoglio. Puoi vederlo solo una volta! Scrivilo su carta e conservalo in un luogo sicuro. Ne avrai bisogno se perdi o reinstalli il tuo portafoglio.", "your-tip-limit": "Il tuo limite di mancia", "youre-on-mobile-network": "Stai usando una rete mobile" -} \ No newline at end of file +} diff --git a/translations/ja.json b/translations/ja.json index 74d910e2a8..5c1211e419 100644 --- a/translations/ja.json +++ b/translations/ja.json @@ -1359,8 +1359,6 @@ "restore-defaults": "デフォルトに戻す", "retry": "再試行", "revoke-access": "アクセス権を取り消す", - "rinkeby-network": "Rinkebyテストネット", - "ropsten-network": "Ropstenテストネット", "rpc-url": "RPCのURL", "rpc-usage-copy": "コピー", "rpc-usage-filter": "フィルター方法", diff --git a/translations/ko.json b/translations/ko.json index e31bd2ba5d..d2ddfcf76f 100644 --- a/translations/ko.json +++ b/translations/ko.json @@ -1330,8 +1330,6 @@ "restore-defaults": "기본값 복원", "retry": "다시 시도", "revoke-access": "접근 권한 취소", - "rinkeby-network": "Rinkeby 테스트 네트워크", - "ropsten-network": "Ropsten 테스트 네트워크", "rpc-url": "RPC URL", "rpc-usage-copy": "클립보드에 복사", "rpc-usage-filter": "필터 방법", @@ -1721,4 +1719,4 @@ "your-recovery-phrase-description": "위 12단어가 사용자의 시드 구문입니다. 이 구문은 사용자의 지갑을 증명하기 위해 반드시 필요하며, 이번 한 번만 확인할 수 있습니다. 지갑을 분실하거나 재설치하는 경우 반드시 필요하므로, 종이에 적어두고 안전한 장소에 보관하세요.", "your-tip-limit": "팁 한도", "youre-on-mobile-network": "모바일 네트워크를 사용 중입니다" -} \ No newline at end of file +} diff --git a/translations/ms.json b/translations/ms.json index 18cfc20c90..e625a4a380 100644 --- a/translations/ms.json +++ b/translations/ms.json @@ -1271,8 +1271,6 @@ "restore-defaults": "Kembali kepada asal", "retry": "Cuba lagi", "revoke-access": "Batalkan akses", - "rinkeby-network": "Rangkaian ujian Rinkeby", - "ropsten-network": "Rangkaian ujian Ropsten", "rpc-url": "URL RPC", "rpc-usage-copy": "Salinan", "rpc-usage-filter": "Kaedah tapisan", @@ -1630,4 +1628,4 @@ "your-recovery-phrase-description": "Ini adalah frasa pemulihan anda. Anda menggunakannya untuk membuktikan bahawa ini adalah dompet anda. Anda hanya dapat melihatnya sekali sahaja! Tuliskannya pada kertas dan simpan di tempat yang selamat. Anda akan memerlukannya jika anda kehilangan atau memasang semula dompet anda.", "your-tip-limit": "Had tip anda", "youre-on-mobile-network": "Anda menggunakan rangkaian mudah alih" -} \ No newline at end of file +} diff --git a/translations/ne.json b/translations/ne.json index e444afdc75..4554192841 100644 --- a/translations/ne.json +++ b/translations/ne.json @@ -365,8 +365,6 @@ "request-transaction": "Minta transaksi", "required-field": "आवश्यक फिल्ड", "resend-message": "Hantar semula", - "rinkeby-network": "Rangkaian ujian Rinkeby", - "ropsten-network": "Ropsten परीक्षण नेटवर्क", "rpc-url": "URL RPC", "save": "साँच्नुहोस्", "save-password": "लगआउट सम्म पासवर्ड बचत गर्नुहोस्", @@ -474,4 +472,4 @@ "yes": "हो", "You": "तपाईं", "you-are-all-set": "Anda telah siap sedia!" -} \ No newline at end of file +} diff --git a/translations/nl.json b/translations/nl.json index cd0718f17d..7b6a69a8df 100644 --- a/translations/nl.json +++ b/translations/nl.json @@ -1283,8 +1283,6 @@ "restore-defaults": "Standaardwaarden herstellen", "retry": "Opnieuw proberen", "revoke-access": "Toegang intrekken", - "rinkeby-network": "Rinkeby testnetwerk", - "ropsten-network": "Ropsten testnetwerk", "rpc-url": "RPC-URL", "rpc-usage-copy": "Kopiëren", "rpc-usage-filter": "Filtermethoden", @@ -1639,4 +1637,4 @@ "your-recovery-phrase-description": "Dit is je seed phrase. Je gebruikt het om te bewijzen dat dit je wallet is. Je krijgt het maar één keer te zien! Schrijf het op papier en bewaar het op een veilige plaats. Je hebt het nodig als je de wallet verliest of opnieuw installeert.", "your-tip-limit": "Jouw fooilimiet", "youre-on-mobile-network": "Je hebt een mobiele dataverbinding" -} \ No newline at end of file +} diff --git a/translations/pl.json b/translations/pl.json index d26760780d..78e5f402d8 100644 --- a/translations/pl.json +++ b/translations/pl.json @@ -1357,8 +1357,6 @@ "restore-defaults": "Przywróć domyślne", "retry": "Ponów próbę", "revoke-access": "Odwołaj dostęp", - "rinkeby-network": "Sieć testowa Rinkeby", - "ropsten-network": "Sieć testowa Ropsten", "rpc-url": "URL RPC", "rpc-usage-copy": "Skopiuj do schowka", "rpc-usage-filter": "Metody filtrowania", @@ -1743,4 +1741,4 @@ "your-recovery-phrase-description": "To jest Twoja fraza odzyskiwania (Seed). Używasz jej, aby udowodnić, że to Twój portfel. Możesz ją zobaczyć tylko raz! Zapisz ją na papierze i przechowuj w bezpiecznym miejscu. Będzie ona potrzebna, jeśli stracisz lub ponownie zainstalujesz Twój portfel.", "your-tip-limit": "Twój limit napiwków", "youre-on-mobile-network": "Korzystasz z sieci komórkowej" -} \ No newline at end of file +} diff --git a/translations/pt.json b/translations/pt.json index b124384005..01848b9e13 100644 --- a/translations/pt.json +++ b/translations/pt.json @@ -1161,8 +1161,6 @@ "restore-defaults": "Restaurar padrões", "retry": "Tentar de novo", "revoke-access": "Recuperar acesso", - "rinkeby-network": "Rede de teste Rinkeby", - "ropsten-network": "Rede de teste de Ropsten", "rpc-url": "RPC URL", "rpc-usage-copy": "Copiar", "rpc-usage-get-stats": "Atualizar", @@ -1476,4 +1474,4 @@ "your-recovery-phrase": "Sua frase-semente", "your-recovery-phrase-description": "Esta é sua frase-semente. Você o usa para provar que esta é sua carteira. Você só pode vê-lo uma vez! Escreva no papel e mantenha em um lugar seguro. Você vai precisar dele se você perder ou reinstalar sua carteira.", "youre-on-mobile-network": "Você está em uma rede móvel" -} \ No newline at end of file +} diff --git a/translations/pt_BR.json b/translations/pt_BR.json index 3991061457..a8a0d55ea3 100644 --- a/translations/pt_BR.json +++ b/translations/pt_BR.json @@ -1371,8 +1371,6 @@ "restore-defaults": "Restaurar padrões", "retry": "Tentar de novo", "revoke-access": "Recuperar acesso", - "rinkeby-network": "Rede de teste Rinkeby", - "ropsten-network": "Rede de teste de Ropsten", "rpc-url": "RPC URL", "rpc-usage-copy": "Copiar", "rpc-usage-filter": "Métodos de filtro", diff --git a/translations/ru.json b/translations/ru.json index c7e583e15c..166f048fbd 100644 --- a/translations/ru.json +++ b/translations/ru.json @@ -1415,8 +1415,6 @@ "restore-defaults": "Восстановить настройки по умолчанию", "retry": "Повторить", "revoke-access": "Отменить доступ", - "rinkeby-network": "Тестовая сеть Rinkeby", - "ropsten-network": "Тестовая сеть Ropsten", "rpc-url": "URL-адрес RPC", "rpc-usage-copy": "Копировать", "rpc-usage-filter": "Методы фильтрации", diff --git a/translations/tl.json b/translations/tl.json index de70ba7281..43bccdbd94 100644 --- a/translations/tl.json +++ b/translations/tl.json @@ -1209,8 +1209,6 @@ "restore-defaults": "Ibalik sa dating ayos", "retry": "Ulitin", "revoke-access": "Bawiin ang access", - "rinkeby-network": "Rinkeby test network", - "ropsten-network": "Ropsten test network", "rpc-url": "RPC URL", "save": "I-save", "save-password": "I-save ang password", @@ -1528,4 +1526,4 @@ "your-recovery-phrase": "Ang iyong seed phrase", "your-recovery-phrase-description": "ito ang iyong seed phrase. Ginagamit mo ito upang patunayan na ito ang iyong pitaka. ikaw lamang makita ito nang isang beses! Isulat ito sa papel at itago ito sa isang ligtas na lugar. Kakailanganin mo ito kung nawala o muling i-install ang iyong pitaka.", "youre-on-mobile-network": "Ikaw ay nasa mobile network" -} \ No newline at end of file +} diff --git a/translations/tr.json b/translations/tr.json index bdf8f34fcf..33806b70d7 100644 --- a/translations/tr.json +++ b/translations/tr.json @@ -1314,8 +1314,6 @@ "restore-defaults": "Varsayılanları Geri Yükle", "retry": "Yeniden Dene", "revoke-access": "Erişimi iptal et", - "rinkeby-network": "Rinkeby test ağı", - "ropsten-network": "Ropsten test ağı", "rpc-url": "RPC URL'si", "rpc-usage-copy": "Kopyala", "rpc-usage-filter": "Filtre yöntemleri", @@ -1688,4 +1686,4 @@ "your-recovery-phrase": "Kelime imzanız", "your-recovery-phrase-description": "Bu senin kelime imzan. Bunu senin cüzdanın olduğunu kanıtlamak için kullanıyorsun. Sadece bir kez görüyorsunuz! Kağıda yazın ve güvenli bir yerde saklayın. Cüzdanınızı kaybederseniz veya uygulamayı yeniden yüklerseniz ihtiyacınız olacak.", "youre-on-mobile-network": "Mobil ağ üzerindesiniz" -} \ No newline at end of file +} diff --git a/translations/vi.json b/translations/vi.json index c75df6103b..596164a4df 100644 --- a/translations/vi.json +++ b/translations/vi.json @@ -1033,8 +1033,6 @@ "reset-card-description": "Thao tác này sẽ đặt lại thẻ về trạng thái ban đầu. Nó sẽ xóa tất cả dữ liệu thẻ bao gồm cả khóa cá nhân. Hoạt động không thể đảo ngược.", "retry": "Thử lại", "revoke-access": "Thu hồi truy cập", - "rinkeby-network": "Mạng thử nghiệm Rinkeby", - "ropsten-network": "Ropsten mạng thử nghiệm", "rpc-url": "URL RPC", "rpc-usage-copy": "Sao chép", "rpc-usage-get-stats": "Làm tươi", @@ -1327,4 +1325,4 @@ "your-keys": "Chìa khóa của bạn", "your-recovery-phrase": "Cụm từ hạt giống của bạn", "your-recovery-phrase-description": "Đây là cụm từ hạt giống của bạn. Bạn sử dụng nó để chứng minh rằng đây là ví của bạn. Bạn chỉ có thể xem nó một lần! Viết nó trên giấy và giữ nó ở một nơi an toàn. Bạn sẽ cần nó nếu bạn bị mất hoặc cài đặt lại ví của mình." -} \ No newline at end of file +} diff --git a/translations/zh.json b/translations/zh.json index 893b82796d..bbaba87064 100644 --- a/translations/zh.json +++ b/translations/zh.json @@ -1343,8 +1343,6 @@ "restore-defaults": "恢复默认值", "retry": "重试", "revoke-access": "撤消访问权限", - "rinkeby-network": "Rinkeby测试网络", - "ropsten-network": "Ropsten测试网络", "rpc-url": "RPC URL", "rpc-usage-copy": "复制", "rpc-usage-filter": "过滤方式", @@ -1739,4 +1737,4 @@ "your-recovery-phrase-description": "这是您的助记词。您需要用它来证明这个钱包属于您。您只能查看一次!请将其写在纸上并保存在安全的地方。如果丢失或重新安装钱包,您将需要用到这些助记词。", "your-tip-limit": "您的手续费上限", "youre-on-mobile-network": "您正在使用移动网络" -} \ No newline at end of file +} diff --git a/translations/zh_Hans_CN.json b/translations/zh_Hans_CN.json index 69f6365122..cf30102808 100644 --- a/translations/zh_Hans_CN.json +++ b/translations/zh_Hans_CN.json @@ -737,9 +737,6 @@ "reset-card": "重置卡片", "reset-card-description": "此操作将卡片重置为初始状态。它将清除所有数据,包括私钥。操作不可逆。", "retry": "重试", - "revoke-access": "撤消访问权限", - "rinkeby-network": "Rinkeby 测试网络", - "ropsten-network": "Ropsten 测试网络", "rpc-url": "RPC 链接", "save": "保存", "save-password": "保存密码", diff --git a/translations/zh_TW.json b/translations/zh_TW.json index 20a8dd5bc7..1130a4be96 100644 --- a/translations/zh_TW.json +++ b/translations/zh_TW.json @@ -1343,8 +1343,6 @@ "restore-defaults": "恢復預設值", "retry": "重試", "revoke-access": "解除訪問權限", - "rinkeby-network": "Rinkeby測試網路", - "ropsten-network": "Ropsten測試網路", "rpc-url": "RPC URL", "rpc-usage-copy": "複製", "rpc-usage-filter": "過濾方式", @@ -1739,4 +1737,4 @@ "your-recovery-phrase-description": "這是您的種子詞組,能用它來證明這是您的錢包。您只會看到一次!請將其寫在紙上,並存放在安全的地方。如果裝置遺失或想重新安裝錢包,將需要它。", "your-tip-limit": "您的手續費上限", "youre-on-mobile-network": "您正在使用行動網路" -} \ No newline at end of file +} diff --git a/translations/zh_hans.json b/translations/zh_hans.json index 93e4ea0947..ec5b105cc2 100644 --- a/translations/zh_hans.json +++ b/translations/zh_hans.json @@ -686,8 +686,6 @@ "reset-card-description": "此操作将卡片重置为初始状态。它将清除所有数据,包括私钥。操作不可逆。", "retry": "重试", "revoke-access": "撤消访问权限", - "rinkeby-network": "Rinkeby 测试网络", - "ropsten-network": "Ropsten 测试网络", "rpc-url": "RPC 链接", "save": "保存", "save-password": "保存密码直到注销",