Thanks for your interest in improving nft-mint-agent! 🎉
- 🐛 Report bugs via Issues (use the Bug Report template).
- 💡 Propose features via the Feature Request template.
- 🔧 Open a PR for fixes, new chains, new mint patterns, or docs.
git clone https://github.com/dhasap/nft-mint-agent.git
cd nft-mint-agent
npm install
cp .env.example .env # add RPC_URL + burner WALLET_PRIVATE_KEYS
npm run build # tsc -> dist/npm run buildmust pass with no TypeScript errors.- Keep the competitive mint path (
fast-mint.mjs) free of per-mint LLM/round-trip dependencies — latency is the product. - Never weaken the safety rules in
SECURITY.mdorSKILL.md(explicit confirmation before signing/broadcasting). - Update
CHANGELOG.mdunder "Unreleased". - Do not commit secrets. Run a quick scan:
git grep -nE "0x[a-fA-F0-9]{64}"should return nothing.
Conventional commits: feat:, fix:, perf:, docs:, refactor:, chore:.
By participating you agree to the Code of Conduct.