export interface IpfsStoreProvider {
	name: string
	add: (obj: any) => Promise<string>
	recover: (cid: string) => Promise<any | undefined>
}
