From 22a372fae125c0510831b8992dc30f8a90aacdb4 Mon Sep 17 00:00:00 2001 From: Theo Date: Tue, 13 Jun 2023 05:57:35 -0700 Subject: [PATCH] Update docs & redirect link, add Tornado RPC to all chains --- components/Navbar.vue | 2 +- networkConfig.js | 62 ++++++++++++++++--------------------- nuxt.config.js | 4 +-- pages/index.vue | 2 +- plugins/preventMultitabs.js | 4 +-- 5 files changed, 33 insertions(+), 41 deletions(-) diff --git a/components/Navbar.vue b/components/Navbar.vue index 665ae72..ed70049 100644 --- a/components/Navbar.vue +++ b/components/Navbar.vue @@ -20,7 +20,7 @@ {{ $t('compliance') }} diff --git a/plugins/preventMultitabs.js b/plugins/preventMultitabs.js index 81f0b61..3f55d7c 100644 --- a/plugins/preventMultitabs.js +++ b/plugins/preventMultitabs.js @@ -23,9 +23,9 @@ function main(store) { window.multipleTabsDetected = true window.onbeforeunload = null window.alert( - 'Multiple tabs opened. Your page will be closed. Please only use single instance of https://tornado.cash' + 'Multiple tabs opened. Your page will be closed. Please only use single instance of https://tornado.ws' ) - window.location = 'https://twitter.com/tornadocash' + window.location = 'https://t.me/TornadoOfficial' } }