eth-utils.com šŸ”§

Helpful utils for devs building on Ethereum

Overview

eth-utils.com is swiss army knife for working with EVM projects, it currently supports: āœ… Unit conversion (eg. wei, gwei) āœ… Checksum āœ… Hexstring conversion āœ… Keccak256 šŸš§ ABI encoder šŸš§ UTF8 to ASCII

Problem

As a dev myself, I often found myself googling online converters for BigNumbers or Keccak256 whenever writing smart contracts. These tools were often spread across the web and were inconvenient to track. What if all these tools were in a single place? šŸ‘‰šŸ‘ˆ

Solution

I interviewed a handful of Typescript/Solidity devs and found they frequently searched for:

  • Unit converters
  • Checksum
  • Hexstring converters
  • keccak256 converters

I went ahead and built a react app with those simple utils. I did so using ethers.js. (s/o to RicMoo).

The source code is available on GitHub, feel free to create an issue if you'd like to see any new feature!