Skip to content

Commit

Permalink
increase polling interval
Browse files Browse the repository at this point in the history
  • Loading branch information
karooolis committed Dec 13, 2024
1 parent c132111 commit 9d9facb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function useWorldAbiQuery(): UseQueryResult<AbiQueryResult> {
isWorldDeployed: data.isWorldDeployed,
};
},
refetchInterval: 5000,
refetchInterval: 5000000,
enabled: false,
});
}
3 changes: 2 additions & 1 deletion packages/explorer/src/components/LatestBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export function LatestBlock() {
watch: true,
chainId,
query: {
refetchInterval: 1000,
refetchInterval: 10000000,
enabled: false,
},
});

Expand Down

0 comments on commit 9d9facb

Please sign in to comment.