Calls the "getBlockNumber" function on the contract.
import { getBlockNumber } from "thirdweb/extensions/multicall3"; const result = await getBlockNumber({ contract,});
function getBlockNumber( options: BaseTransactionOptions,): Promise<bigint>;
The options for the getBlockNumber function.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: Promise<bigint>;
The parsed result of the function call.