Watches the block number for a specific chain.
import { watchBlockNumber } from "thirdweb";const unwatch = watchBlockNumber({ client, chainId, onNewBlockNumber: (blockNumber) => { // do something with the block number },}); // later stop watchingunwatch();
The unwatch function.