UNPKG

sign-in-with-ethereum-parser

Version:

Parse Messages that conform to EIP-4361: Sign In with Ethereum (SIWE)

8 lines (7 loc) 346 B
/** * This method is supposed to check if an address is conforming to EIP-55. * @param address Address to be checked if conforms with EIP-55. * @returns Either the return is or not in the EIP-55 format. */ export declare const isEIP55Address: (address: string) => boolean; export declare const parseIntegerNumber: (number: string) => number;