o3-dapi-ont
Version:
Ontology Plugin for o3-dapi
15 lines (12 loc) • 348 B
text/typescript
import { sendMessage } from '../../messaging';
import { Command } from '../../constants';
interface GetBlockHeightByTxHashInput {
hash: string;
network: string;
}
export function getBlockHeightByTxHash(data: GetBlockHeightByTxHashInput): Promise<number> {
return sendMessage({
command: Command.getBlockHeightByTxHash,
data,
});
}