UNPKG

@betacodd/lighthouse-package

Version:

NPM package and CLI tool to interact with lighthouse protocol

21 lines (20 loc) 472 B
type dealData = { chainDealID: string; endEpoch: string; publishCID: string; storageProvider: string; dealStatus: string; bundleId: string; dealUUID: string; startEpoch: string; providerCollateral: string; lastUpdate: number; dealId: number; miner: string; content: number; }; export type dealResponse = { data: dealData[]; }; declare const _default: (cid: string) => Promise<dealResponse>; export default _default;