import { IChain } from './contract-recipe.i'

export interface MyIdeaKeys {
	ideaIndex: string // unique
	strategyUniqueKey: string // unique
	chain: IChain
	contractAddress: string
	nftId: number // unique within contract
	strategyKey: string
	stageKey: number
	ideaKey: number
}
