video.mp4
The avail-mass-airdrop-checker-ts
is a TypeScript script designed to check mass eligibility of Ethereum (EVM) addresses for the Avail airdrop (AvailProject). This script utilizes Bun, a modern JavaScript runtime similar to Node.js, to efficiently handle the processing of multiple addresses. ๐
Twitter (@deltartificial)
Before using the script, make sure you have the following:
- Bun installed on your machine. You can install Bun by following the instructions here.
Check Bun installation : (don't forget to refresh your path or close your terminal)
bun --version
To get started with the Avail Mass Airdrop Checker, follow these steps:
Clone the repository:
git clone https://github.com/deltartificial/avail-mass-airdrop-checker-ts
Navigate to the cloned directory:
cd avail-mass-airdrop-checker-ts
Install the necessary dependencies using Bun:
bun install viem
Go to the src
directory and open pk.json
.
Replace with your private keys you want to test, formatted as follows:
["0xprivatekey1", "0xprivatekey2"]
โ ๏ธ Keep the '0x' before each privatekey.
To run the script, use the following command:
bun run src/index.ts
Important Security Notes :
- Private Key Handling : The private keys are not stored or sent to the AvailProject API. They are used solely to sign the message for Avail, and only the signed message is sent.
- Caution : Always ensure that your private keys are handled securely. Do not expose them in publicly accessible locations.