noob-ethereum
Version:
A simple Ethereum library
8 lines • 356 B
TypeScript
/**
* Compute the EIP-55 checksum of a supplied Ethereum address
* @param {string} - address (e.g. 0x001d3f1ef827552ae1114027bd3ecf1f086ba0f9)
* @returns {string} - (e.g. 0x001d3F1ef827552Ae1114027BD3ECF1f086bA0F9)
*/
declare const eip55Checksum: (address: string) => string;
export { eip55Checksum as checksum };
//# sourceMappingURL=checksum.d.ts.map