ContractPlatformFee.get() method
Get the platform fee recipient and basis points *
Example
const feeInfo = await contract.platformFee.get();
Signature:
get(): Promise<{
platform_fee_basis_points: number;
platform_fee_recipient: string;
}>;
Returns:
Promise<{ platform_fee_basis_points: number; platform_fee_recipient: string; }>