UNPKG

@ethersphere/swarm-cli

Version:
10 lines (6 loc) 249 B
import { Bee } from '@ethersphere/bee-js' const THRESHOLD = 10_000 export async function isChainStateReady(bee: Bee): Promise<boolean> { const chainState = await bee.getChainState() return chainState.chainTip > chainState.block - THRESHOLD }