util: {
    CertificateHelper: typeof CertificateHelper;
    hash: {
        hashFile: (file: File, algo?: HashAlgorithm) => Promise<string>;
        hashSiblingHashes: (hashA: string, hashB: string) => Promise<string>;
        hashString: (message: string, algo?: HashAlgorithm) => Promise<string>;
        isValidHash: (hash: string, algo?: HashAlgorithm) => boolean;
    };
    Solana: typeof Solana;
    time: util/time;
    Xrp: typeof Xrp;
} = ...

Type declaration

  • CertificateHelper: typeof CertificateHelper
  • hash: {
        hashFile: (file: File, algo?: HashAlgorithm) => Promise<string>;
        hashSiblingHashes: (hashA: string, hashB: string) => Promise<string>;
        hashString: (message: string, algo?: HashAlgorithm) => Promise<string>;
        isValidHash: (hash: string, algo?: HashAlgorithm) => boolean;
    }
    • hashFile: (file: File, algo?: HashAlgorithm) => Promise<string>
    • hashSiblingHashes: (hashA: string, hashB: string) => Promise<string>
    • hashString: (message: string, algo?: HashAlgorithm) => Promise<string>
    • isValidHash: (hash: string, algo?: HashAlgorithm) => boolean
  • Solana: typeof Solana
  • time: util/time
  • Xrp: typeof Xrp