UNPKG

@ledgerhq/coin-filecoin

Version:
11 lines 348 B
import { fetchBlockHeight } from "../../network/api"; export async function lastBlock() { const status = await fetchBlockHeight(); const { index, hash } = status.current_block_identifier; return { height: index, hash, time: new Date(status.current_block_timestamp), }; } //# sourceMappingURL=lastBlock.js.map