Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/config/config.devnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions src/config/config.multiple.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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
Expand Down
2 changes: 0 additions & 2 deletions src/layouts/Layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
useLoopManager,
useCheckVersion,
useGetURLNetwork,
useInitDatadog,
useInitWebsocket,
useSetBrowserClassNames,
useSetDappConfig,
Expand All @@ -35,7 +34,6 @@ export const Layout = () => {

useLoopManager();
useCheckVersion();
useInitDatadog();
useInitWebsocket();
useSetDappConfig();
useSetBrowserClassNames();
Expand Down
Loading