UNPKG

o3-dapi-ont

Version:
14 lines (11 loc) 298 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface GetBlockHeightArgs { network: string; } export function getBlockHeight(data: GetBlockHeightArgs): Promise<number> { return sendMessage({ command: Command.getBlockHeight, data, }); }