├── .gitignore ├── main.js ├── package.json ├── readme.md └── src ├── classes ├── ariChain.js ├── authGmail.js └── proxy.js ├── index.js ├── json └── client_secret.json.example └── utils ├── generator.js └── logger.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/.gitignore -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/readme.md -------------------------------------------------------------------------------- /src/classes/ariChain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/src/classes/ariChain.js -------------------------------------------------------------------------------- /src/classes/authGmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/src/classes/authGmail.js -------------------------------------------------------------------------------- /src/classes/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/src/classes/proxy.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/src/index.js -------------------------------------------------------------------------------- /src/json/client_secret.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/src/json/client_secret.json.example -------------------------------------------------------------------------------- /src/utils/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/src/utils/generator.js -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/im-hanzou/arichain-autoreff/HEAD/src/utils/logger.js --------------------------------------------------------------------------------