tronewb
Version:
JavaScript SDK that encapsulates the TRON HTTP API
8 lines (7 loc) • 452 B
TypeScript
import { BytesLike } from '../types/UtilsTypes.js';
export declare function byte2hexStr(byte: number): string;
export declare function bytesToString(arr: BytesLike): string;
export declare function hextoString(hex: string): string;
export declare function byteArray2hexStr(byteArray: BytesLike): string;
export declare function base64DecodeFromString(string64: string): number[];
export declare function base64EncodeToString(bytes: BytesLike): string;