import { BigNumber } from 'ethers';
import { Contract, IContractRecipe } from '../../';
export interface IContract {
    name: string;
    recipe: IContractRecipe;
    gate?: Contract;
    cacheTax5min?: BigNumber;
    cacheTaxLastTime?: number;
}
