npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ethereum-casual-message-coder

v1.0.0

Published

This Node.js command-line application is a fun and educational tool that encodes and decodes strings using the Ethereum blockchain's block hash as the key. Initiated by **Singular** from the [tea community](https://discord.tea.xyz/), the idea was born out

Downloads

5

Readme

Ethereum Casual Message Coder

This Node.js command-line application is a fun and educational tool that encodes and decodes strings using the Ethereum blockchain's block hash as the key. Initiated by Singular from the tea community, the idea was born out of a casual conversation where Singular mentioned, "it would be nice if the key to decoding was the Ethereum block number at the sentence generation timestamp.". This application embodies that concept by leveraging the Ethereum block hash, providing a unique twist to string encryption and decryption.

Disclaimer

This project is created for fun and educational purposes only. It is not intended for serious cryptographic applications or for securing sensitive data. The use of block hashes as encryption keys in a production environment is not recommended due to security concerns as block hashes are publicly available and can be easily brute-forced.

Prerequisites

Before you begin, ensure you have Node.js installed on your system. You can download and install Node.js from https://nodejs.org/.

Setup

  1. Clone the repository

    Start by cloning this repository to your local machine:

    git clone https://github.com/stevenlei/ethereum-casual-message-coder.git
    cd ethereum-casual-message-coder
  2. Install dependencies

    Install the necessary Node.js packages:

    npm install
  3. Set up the .env file

    Copy the .env.example file to .env, and update the ETHEREUM_RPC_URL variable with your Ethereum RPC URL and API key.

    ETHEREUM_RPC_URL=https://your-ethereum-rpc-url/api-key

    Replace https://your-ethereum-rpc-url/api-key with your actual Ethereum RPC URL and API key.

Running the Application

To start the application, run:

npm run cli

Follow the prompts to encode or decode strings using the Ethereum block hash.

How It Works

  • Encode Mode: The application asks the user to enter a string and then fetches the latest Ethereum block hash to use as an encryption key. The string is then encrypted, and the resulting encoded string is displayed to the user.

  • Decode Mode: The user provides the previously encoded string and the block hash that was used for encoding. The application then attempts to decode the string using the provided block hash. If successful, the original string is displayed; otherwise, an error message is shown.

Contributing

Feel free to fork this project and make your own changes. Pull requests are welcome!

Acknowledgments

Special thanks to Singular from the tea community for inspiring this project with their creative idea!

License

MIT