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