@roochnetwork/rooch-sdk
Version:
7 lines (6 loc) • 340 B
TypeScript
import { Bytes } from '../types/bytes.js';
export declare function isHex(input: string | Bytes): boolean;
export declare function getHexByteLength(input: string): number;
export declare function normalizeHex(input: string): string;
export declare function fromHEX(input: string): Bytes;
export declare function toHEX(input: Bytes): string;