import { BigNumber } from 'ethers'
import { Contract, IContractRecipe } from '../../'

export interface IContract {
	name: string
	recipe: IContractRecipe
	gate?: Contract
	// core?: Contract
	cacheTax5min?: BigNumber
	cacheTaxLastTime?: number
}
