diff --git a/src/config/config.devnet.ts b/src/config/config.devnet.ts index 4e6973c5b..1eb47654f 100644 --- a/src/config/config.devnet.ts +++ b/src/config/config.devnet.ts @@ -17,7 +17,8 @@ export const networks: NetworkType[] = [ explorerAddress: 'https://devnet-explorer.multiversx.com', nftExplorerAddress: 'https://devnet.xspotlight.com', apiAddress: 'https://devnet-api.multiversx.com', - updatesWebsocketUrl: 'https://devnet-socket-api.multiversx.com' + updatesWebsocketUrl: 'https://devnet-socket-api.multiversx.com', + refreshRate: 600 }, // Saved Custom Network Configs diff --git a/src/config/config.multiple.ts b/src/config/config.multiple.ts index b47da3693..d532a2a63 100644 --- a/src/config/config.multiple.ts +++ b/src/config/config.multiple.ts @@ -21,7 +21,8 @@ export const networks: NetworkType[] = [ explorerAddress: 'https://testnet-explorer.multiversx.com/', nftExplorerAddress: 'https://testnet.xspotlight.com', apiAddress: 'https://testnet-api.multiversx.com', - updatesWebsocketUrl: 'https://testnet-socket-api.multiversx.com' + updatesWebsocketUrl: 'https://testnet-socket-api.multiversx.com', + refreshRate: 600 }, { id: 'devnet', @@ -34,7 +35,8 @@ export const networks: NetworkType[] = [ explorerAddress: 'https://devnet-explorer.multiversx.com', nftExplorerAddress: 'https://devnet.xspotlight.com', apiAddress: 'https://devnet-api.multiversx.com', - updatesWebsocketUrl: 'https://devnet-socket-api.multiversx.com' + updatesWebsocketUrl: 'https://devnet-socket-api.multiversx.com', + refreshRate: 600 }, // Internal Testnets diff --git a/src/layouts/Layout/Layout.tsx b/src/layouts/Layout/Layout.tsx index d12b50dd2..c8dfee1c6 100644 --- a/src/layouts/Layout/Layout.tsx +++ b/src/layouts/Layout/Layout.tsx @@ -10,7 +10,6 @@ import { useLoopManager, useCheckVersion, useGetURLNetwork, - useInitDatadog, useInitWebsocket, useSetBrowserClassNames, useSetDappConfig, @@ -35,7 +34,6 @@ export const Layout = () => { useLoopManager(); useCheckVersion(); - useInitDatadog(); useInitWebsocket(); useSetDappConfig(); useSetBrowserClassNames();