Calls the "getPlatformFeeInfo" function on the contract.
import { getPlatformFeeInfo } from "thirdweb/extensions/common"; const result = await getPlatformFeeInfo({ contract,});
function getPlatformFeeInfo( options: BaseTransactionOptions,): Promise<readonly [string, number]>;
The options for the getPlatformFeeInfo function.
let options: { contract: ThirdwebContract<abi> } & T;
let returnType: Promise<readonly [string, number]>;
The parsed result of the function call.