useWatchBlocks Hook to watch for new blocks. Usage Copy import { useWatchBlocks } from "@hyper-gate/react"; export function App() { useWatchBlocks({ onBlock: (block) => { console.log("new block", block); }, }); }