Change RPC's to uncensored & links to actual

This commit is contained in:
Theo 2023-06-01 02:45:12 -07:00
parent 9462caeac6
commit 5562db53dc
3 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,5 @@
import { ChainId, NetworkConfig, MetamaskList } from '@/types'
import { RPC_LIST } from '@/constants'
const L1_CHAIN_ID = ChainId.MAINNET
@ -49,7 +50,7 @@ const METAMASK_LIST: MetamaskList = {
[ChainId.BSC]: {
chainId: '0x38',
chainName: 'Binance Smart Chain Mainnet',
rpcUrls: ['https://bsc-dataseed1.binance.org'],
rpcUrls: [RPC_LIST[56]],
nativeCurrency: {
name: 'Binance Chain Native Token',
symbol: 'BNB',
@ -60,7 +61,7 @@ const METAMASK_LIST: MetamaskList = {
[ChainId.XDAI]: {
chainId: '0x64',
chainName: 'Gnosis',
rpcUrls: ['https://rpc.gnosischain.com'],
rpcUrls: [RPC_LIST[100]],
nativeCurrency: {
name: 'xDAI',
symbol: 'xDAI',

View File

@ -21,9 +21,9 @@ export const WRAPPED_TOKEN: { [chainId in ChainId]: string } = {
}
export const RPC_LIST: { [chainId in ChainId]: string } = {
[ChainId.BSC]: 'https://bsc-dataseed.binance.org/',
[ChainId.MAINNET]: 'https://api.securerpc.com/v1',
[ChainId.XDAI]: 'https://rpc.gnosischain.com/tornado',
[ChainId.BSC]: 'https://bsc-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607',
[ChainId.MAINNET]: 'https://mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607',
[ChainId.XDAI]: 'https://gnosis-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607',
}
export const FALLBACK_RPC_LIST: { [chainId in ChainId]: string[] } = {
@ -36,16 +36,15 @@ export const FALLBACK_RPC_LIST: { [chainId in ChainId]: string[] } = {
// 'https://rpc.ankr.com/eth/dbe08b852ba176a8aeac783cc1fa8becaf4f107235dfdae79241063fbf52ca4a',
],
[ChainId.XDAI]: [
'https://poa-xdai.gateway.pokt.network/v1/lb/61a6992dd6fbf3591b90c95b',
// 'https://rpc.ankr.com/gnosis/dbe08b852ba176a8aeac783cc1fa8becaf4f107235dfdae79241063fbf52ca4a',
'https://rpc.gnosischain.com',
'https://rpc.gnosis.gateway.fm',
],
}
export const RPC_WS_LIST: { [chainId in ChainId]: string } = {
[ChainId.MAINNET]: 'wss://mainnet.infura.io/ws/v3/9b8f0ddb3e684ece890f594bf1710c88',
[ChainId.BSC]: 'wss://bsc-ws-node.nariox.org',
[ChainId.XDAI]: 'wss://rpc.xdaichain.com/wss/',
[ChainId.MAINNET]: 'wss://mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607',
[ChainId.BSC]: 'wss://bsc-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607',
[ChainId.XDAI]: 'wss://gnosis-mainnet.chainnodes.org/d692ae63-0a7e-43e0-9da9-fe4f4cc6c607',
}
export const MULTICALL: { [chainId in ChainId]: string } = {

View File

@ -35,6 +35,6 @@ export const menuLinks = {
// SOCIALS
export const DUNE = 'https://dune.xyz/k06a/TornadoCash-Nova'
export const TWITTER = 'https://twitter.com/TornadoCash'
export const TELEGRAM = 'https://t.me/TornadoCashOfficial'
export const GITHUB = 'https://github.com/tornadocash'
export const TORNADO_CASH_LANDING = 'https://tornado.cash'
export const TELEGRAM = 'https://t.me/TornadoOfficial'
export const GITHUB = 'https://git.tornado.ws'
export const TORNADO_CASH_LANDING = 'https://tornado.ws'