import { IDBBlockstore } from 'blockstore-idb' let blockStore: IDBBlockstore export function getBlockStore() { if (!blockStore) blockStore = new IDBBlockstore('ipfs/blocks') return blockStore }