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