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