address.d.ts 407 B

123456
  1. export declare function fromHex(address: string): string;
  2. export declare function toHex(address: string): string;
  3. export declare function toChecksumAddress(address: string): string;
  4. export declare function isChecksumAddress(address: string): boolean;
  5. export declare function fromPrivateKey(privateKey: string, strict?: boolean): string | false;
  6. export declare function isAddress(address: unknown): boolean;