├── .env.example ├── .gitignore ├── CLAUDE.md ├── README.md ├── index.js ├── package.json ├── revoke.js ├── src ├── approve.js ├── config.js ├── decode-helper.js ├── fast-mode.js ├── purchase-with-signature.js ├── purchase.js ├── revoke.js ├── signature.js └── wallet.js ├── tools ├── analyze-calldata.js └── signature-test.js └── vibe-coding-history ├── 67d73b86-e830-4cc8-904a-c8685fa35686.jsonl ├── a1b81bdd-0efc-4d89-bac0-6c6400236fa5.jsonl ├── e527a519-65a9-4469-8e1c-8f5769e9153c.jsonl └── ea0e06f0-4d5e-4cb2-9169-9254e4505893.jsonl /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/package.json -------------------------------------------------------------------------------- /revoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/revoke.js -------------------------------------------------------------------------------- /src/approve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/approve.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/config.js -------------------------------------------------------------------------------- /src/decode-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/decode-helper.js -------------------------------------------------------------------------------- /src/fast-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/fast-mode.js -------------------------------------------------------------------------------- /src/purchase-with-signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/purchase-with-signature.js -------------------------------------------------------------------------------- /src/purchase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/purchase.js -------------------------------------------------------------------------------- /src/revoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/revoke.js -------------------------------------------------------------------------------- /src/signature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/signature.js -------------------------------------------------------------------------------- /src/wallet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/src/wallet.js -------------------------------------------------------------------------------- /tools/analyze-calldata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/tools/analyze-calldata.js -------------------------------------------------------------------------------- /tools/signature-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/tools/signature-test.js -------------------------------------------------------------------------------- /vibe-coding-history/67d73b86-e830-4cc8-904a-c8685fa35686.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/vibe-coding-history/67d73b86-e830-4cc8-904a-c8685fa35686.jsonl -------------------------------------------------------------------------------- /vibe-coding-history/a1b81bdd-0efc-4d89-bac0-6c6400236fa5.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/vibe-coding-history/a1b81bdd-0efc-4d89-bac0-6c6400236fa5.jsonl -------------------------------------------------------------------------------- /vibe-coding-history/e527a519-65a9-4469-8e1c-8f5769e9153c.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/vibe-coding-history/e527a519-65a9-4469-8e1c-8f5769e9153c.jsonl -------------------------------------------------------------------------------- /vibe-coding-history/ea0e06f0-4d5e-4cb2-9169-9254e4505893.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fox493/uptop-tge-bot/HEAD/vibe-coding-history/ea0e06f0-4d5e-4cb2-9169-9254e4505893.jsonl --------------------------------------------------------------------------------