@zerochain/sdk
Version:
The Züs JS SDK is a JavaScript client library that provides a convenient interface for interacting with the Züs Network. It allows developers to perform various operations such as creating and managing allocations, uploading and downloading files, executi
11 lines (10 loc) • 445 B
TypeScript
export declare const getBip39MnemonicSeedBuffer: (customBip39Mnemonic?: string) => Promise<{
mnemonic: string;
buffer: Uint8Array<ArrayBufferLike>;
}>;
export declare const getBlsKeys: (bip39MnemonicSeedBuffer: Uint8Array<ArrayBufferLike>) => Promise<{
publicKey: string;
privateKey: string;
}>;
export declare const getSha3HashFromHexString: (hexString: string) => string;
export declare const isHash: (str: string) => boolean;