@mojito-inc/secondary-market
Version:
Mojito secondary market is the platform to purchase NFT.
19 lines (18 loc) • 549 B
TypeScript
import { TaxEstimateType } from '../interface';
interface EstimateTaxData {
platformFee: number;
royaltyFee: number;
taxPercentage: number;
commissionFee: number;
taxResponse?: {
USDUnitprice: number;
cryptoTaxPrice: number;
cryptoTotalPrice: number;
taxPercentage: number;
};
}
export declare const useTax: (orgId: string, estimateType: TaxEstimateType, nftTokenId: string, isOpen?: boolean, currency?: string) => {
taxData: EstimateTaxData | null;
taxLoading: boolean;
};
export {};