Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.41 KB

File metadata and controls

40 lines (25 loc) · 1.41 KB

web3-scripts

A personal collection of standalone web3 scripts for various onchain tasks. Each script is fully self-contained — no shared dependencies between tools.

Usage

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

Scripts

Script Language Runtime Description
evm-wallet-generator TypeScript Bun 1.3.2 Generate random EVM wallets

More scripts coming soon.

Structure

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.).

Contributing

Scripts are personal and opinionated, but PRs are welcome. Keep each script self-contained — no cross-folder imports.

Disclaimer

These scripts interact with real funds on real networks. Always test on testnet first. Use at your own risk.