UNPKG

@ledgerhq/coin-canton

Version:
10 lines 297 B
import { getLastBlock } from "../../network/node"; export async function lastBlock() { const result = await getLastBlock(); return { height: result.blockHeight, hash: result.blockHash, time: new Date(result.timestamp), }; } //# sourceMappingURL=lastBlock.js.map