@meshsdk/mesh-csl
Version:
Cardano Off-chain Code APIs built on cardano-serialization-lib
8 lines (7 loc) • 380 B
TypeScript
/// <reference types="node" />
export declare const bytesToHex: (bytes: ArrayBuffer) => string;
export declare const hexToBytes: (hex: string) => Buffer;
export declare const stringToHex: (str: string) => string;
export declare const hexToString: (hex: string) => string;
export declare const hexToObj: <T>(hex: string) => T;
export declare const objToHex: <T>(obj: T) => string;