├── .env.example ├── .gitignore ├── .prettierrc ├── README.md ├── image.png ├── package.json ├── scripts ├── main.ts └── score.ts ├── src ├── captcha │ └── index.ts ├── email │ └── index.ts ├── galxe │ ├── index.ts │ └── query.ts ├── logger │ └── index.ts ├── requests │ └── curl.ts ├── twitter │ └── index.ts ├── utils │ └── common.ts └── wallet │ └── index.ts ├── tsconfig.json └── twitter.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | *.log 3 | dist/ 4 | node_modules/ 5 | *.txt -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/README.md -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/image.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/package.json -------------------------------------------------------------------------------- /scripts/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/scripts/main.ts -------------------------------------------------------------------------------- /scripts/score.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/scripts/score.ts -------------------------------------------------------------------------------- /src/captcha/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/captcha/index.ts -------------------------------------------------------------------------------- /src/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/email/index.ts -------------------------------------------------------------------------------- /src/galxe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/galxe/index.ts -------------------------------------------------------------------------------- /src/galxe/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/galxe/query.ts -------------------------------------------------------------------------------- /src/logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/logger/index.ts -------------------------------------------------------------------------------- /src/requests/curl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/requests/curl.ts -------------------------------------------------------------------------------- /src/twitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/twitter/index.ts -------------------------------------------------------------------------------- /src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/utils/common.ts -------------------------------------------------------------------------------- /src/wallet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/src/wallet/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kunsect/galxe-task-automation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /twitter.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------