ethers.js/packages/json-wallets/lib/utils.d.ts

7 lines
415 B
TypeScript
Raw Normal View History

2020-07-20 09:27:26 +03:00
import { Bytes, BytesLike } from "@ethersproject/bytes";
2019-05-15 01:48:48 +03:00
export declare function looseArrayify(hexString: string): Uint8Array;
export declare function zpad(value: String | number, length: number): String;
export declare function getPassword(password: Bytes | string): Uint8Array;
export declare function searchPath(object: any, path: string): string;
2020-07-20 09:27:26 +03:00
export declare function uuidV4(randomBytes: BytesLike): string;