A personal collection of standalone web3 scripts for various onchain tasks. Each script is fully self-contained — no shared dependencies between tools.
Every script lives in its own folder with its own dependencies and setup. Navigate into the folder and follow the README inside.
cd <script-name>
cp .env.example .env
# fill in your .env, then run| Script | Language | Runtime | Description |
|---|---|---|---|
| evm-wallet-generator | TypeScript | Bun 1.3.2 | Generate random EVM wallets |
More scripts coming soon.
Each script folder contains:
README.md— setup & usage instructions.env.example— required environment variables- Source files + dependency manifest (
package.json/go.mod/Cargo.toml) .gitignore— ignores output files specific to that script (e.g.*.json,*.csv)
The root .gitignore covers common patterns across all scripts (node_modules/, .env, target/, .DS_Store, etc.).
Scripts are personal and opinionated, but PRs are welcome. Keep each script self-contained — no cross-folder imports.
These scripts interact with real funds on real networks. Always test on testnet first. Use at your own risk.