├── .env ├── .gitignore ├── README.md ├── index.html ├── install.bat ├── package.json ├── projects ├── proxy_checker_backend │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.ts │ │ ├── proxyChecker.ts │ │ └── types.ts │ └── tsconfig.json ├── wallets_checker │ ├── README.md │ ├── core │ │ ├── debankParser.go │ │ ├── initClient.go │ │ └── rabbyParser.go │ ├── customTypes │ │ └── customTypes.go │ ├── data │ │ ├── accounts.txt │ │ ├── accounts │ │ │ ├── wallets.json │ │ │ └── wallets_2.json │ │ └── config.json │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── modules │ │ └── accounts.go │ └── utils │ │ ├── appendFile.go │ │ ├── checkAccountDataType.go │ │ ├── formatDebankResult.go │ │ ├── generateRequestParams.go │ │ ├── getProxy.go │ │ ├── loader.go │ │ ├── parseProxy.go │ │ ├── readFileByRows.go │ │ └── readJson.go └── xAutomator_server │ ├── .gitignore │ ├── config.json │ ├── config.yaml │ ├── data │ └── accounts │ │ ├── account.json │ │ └── accs.json │ ├── extra │ ├── auth.go │ ├── common.go │ ├── config.go │ ├── hwid.go │ ├── logger.go │ ├── menu_output.go │ ├── output.go │ ├── reader.go │ ├── scraper_config.go │ └── writer.go │ ├── go.mod │ ├── go.sum │ ├── instance │ ├── additional_twitter_methods │ │ ├── get_tweet_id.go │ │ ├── get_twitter_username.go │ │ └── set_auth_cookies.go │ ├── check_suspended.go │ ├── comment.go │ ├── follow.go │ ├── like.go │ ├── model.go │ ├── retweet.go │ ├── tweet.go │ ├── unfreeze.go │ └── vote_poll.go │ ├── main.go │ ├── scraper_config.json │ ├── scraper_config.yaml │ ├── server │ ├── middleware │ │ └── cors.go │ ├── modules │ │ ├── accounts.go │ │ └── config.go │ ├── server.go │ └── x_actions │ │ ├── check_suspended.go │ │ ├── comment.go │ │ ├── follow.go │ │ ├── like.go │ │ ├── retweet.go │ │ ├── tweet.go │ │ ├── types.go │ │ └── vote_poll.go │ └── utils │ ├── cookie_client.go │ ├── http_client.go │ ├── random.go │ ├── tls_config_builds.go │ └── types.go ├── public ├── logo.png ├── manifest.json └── stone_face.png ├── src ├── App.tsx ├── components │ ├── Layout │ │ ├── Layout.tsx │ │ ├── MainContent.tsx │ │ └── Sidebar.tsx │ ├── common │ │ ├── MenuItem.tsx │ │ ├── ModuleTable │ │ │ ├── ModuleTable.css │ │ │ └── ModuleTable.tsx │ │ ├── Progress │ │ │ ├── Progress.css │ │ │ └── Progress.tsx │ │ ├── Toast.css │ │ └── Toast.tsx │ ├── modals │ │ ├── ConfirmationModal.css │ │ ├── ConfirmationModal.tsx │ │ ├── CreateGroupModal.css │ │ ├── CreateGroupModal.tsx │ │ ├── EditModal.tsx │ │ ├── ExportAccountsModal.css │ │ ├── ExportAccountsModal.tsx │ │ ├── FilterModal.css │ │ ├── FilterModal.tsx │ │ ├── LogsModal.css │ │ ├── LogsModal.tsx │ │ ├── Modal.css │ │ └── Modal.tsx │ └── modules │ │ └── twitter │ │ ├── ChangeProfileModule │ │ ├── ChangeProfile.css │ │ └── ChangeProfile.tsx │ │ ├── CommentModule │ │ ├── CommentModule.css │ │ └── CommentModule.tsx │ │ ├── FollowModule │ │ ├── FollowModule.css │ │ └── FollowModule.tsx │ │ ├── LikeModule │ │ ├── LikeModule.css │ │ └── LikeModule.tsx │ │ ├── RetweetModule │ │ ├── RetweetModule.css │ │ └── RetweetModule.tsx │ │ ├── TweetModule │ │ ├── TweetModule.css │ │ └── TweetModule.tsx │ │ └── VoteModule │ │ ├── Vote.css │ │ └── Vote.tsx ├── config │ └── settings.ts ├── index.css ├── main.tsx ├── modules │ ├── proxy_checker │ │ ├── components │ │ │ ├── ExportModal.tsx │ │ │ ├── ProxyCheckerLayout.tsx │ │ │ ├── ProxyFilter.tsx │ │ │ ├── ProxyList.tsx │ │ │ ├── ProxyProgress.css │ │ │ ├── ProxyProgress.tsx │ │ │ ├── ProxyTable.tsx │ │ │ ├── StatusBar.tsx │ │ │ └── styles.css │ │ ├── config.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ └── useProxyChecking.ts │ │ ├── index.ts │ │ ├── types │ │ │ └── index.ts │ │ └── utils │ │ │ ├── proxyChecker.ts │ │ │ ├── proxyParser.ts │ │ │ └── proxyValidator.ts │ └── wallet_checker │ │ ├── WalletChecker.css │ │ ├── api │ │ └── client.ts │ │ ├── components │ │ ├── CheckTypeModal.tsx │ │ ├── CreateWalletGroupModal.tsx │ │ ├── SettingsModal.tsx │ │ ├── WalletFilter.tsx │ │ ├── WalletTable.css │ │ └── WalletTable.tsx │ │ ├── index.tsx │ │ ├── styles │ │ ├── CheckTypeModal.css │ │ ├── CreateWalletGroupModal.css │ │ ├── SettingsModal.css │ │ ├── WalletCheckerDetails.css │ │ ├── WalletFilter.css │ │ └── WalletTable.css │ │ └── types.ts ├── pages │ ├── About.tsx │ ├── AccountTable.css │ ├── Accounts.css │ ├── Accounts.tsx │ ├── Dashboard.css │ ├── Dashboard.tsx │ ├── Settings.css │ └── Settings.tsx ├── services │ └── accountsService.ts └── styles │ ├── buttons.css │ └── global.css ├── start_all.bat ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env: -------------------------------------------------------------------------------- 1 | 2 | SERVER_URL=http://localhost:8080 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/index.html -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/install.bat -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/package.json -------------------------------------------------------------------------------- /projects/proxy_checker_backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/proxy_checker_backend/package-lock.json -------------------------------------------------------------------------------- /projects/proxy_checker_backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/proxy_checker_backend/package.json -------------------------------------------------------------------------------- /projects/proxy_checker_backend/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/proxy_checker_backend/src/index.ts -------------------------------------------------------------------------------- /projects/proxy_checker_backend/src/proxyChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/proxy_checker_backend/src/proxyChecker.ts -------------------------------------------------------------------------------- /projects/proxy_checker_backend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/proxy_checker_backend/src/types.ts -------------------------------------------------------------------------------- /projects/proxy_checker_backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/proxy_checker_backend/tsconfig.json -------------------------------------------------------------------------------- /projects/wallets_checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/README.md -------------------------------------------------------------------------------- /projects/wallets_checker/core/debankParser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/core/debankParser.go -------------------------------------------------------------------------------- /projects/wallets_checker/core/initClient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/core/initClient.go -------------------------------------------------------------------------------- /projects/wallets_checker/core/rabbyParser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/core/rabbyParser.go -------------------------------------------------------------------------------- /projects/wallets_checker/customTypes/customTypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/customTypes/customTypes.go -------------------------------------------------------------------------------- /projects/wallets_checker/data/accounts.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/wallets_checker/data/accounts/wallets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/data/accounts/wallets.json -------------------------------------------------------------------------------- /projects/wallets_checker/data/accounts/wallets_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/data/accounts/wallets_2.json -------------------------------------------------------------------------------- /projects/wallets_checker/data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/data/config.json -------------------------------------------------------------------------------- /projects/wallets_checker/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/go.mod -------------------------------------------------------------------------------- /projects/wallets_checker/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/go.sum -------------------------------------------------------------------------------- /projects/wallets_checker/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/main.go -------------------------------------------------------------------------------- /projects/wallets_checker/modules/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/modules/accounts.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/appendFile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/appendFile.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/checkAccountDataType.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/checkAccountDataType.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/formatDebankResult.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/formatDebankResult.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/generateRequestParams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/generateRequestParams.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/getProxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/getProxy.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/loader.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/parseProxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/parseProxy.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/readFileByRows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/readFileByRows.go -------------------------------------------------------------------------------- /projects/wallets_checker/utils/readJson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/wallets_checker/utils/readJson.go -------------------------------------------------------------------------------- /projects/xAutomator_server/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /projects/xAutomator_server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/config.json -------------------------------------------------------------------------------- /projects/xAutomator_server/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/config.yaml -------------------------------------------------------------------------------- /projects/xAutomator_server/data/accounts/account.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/data/accounts/account.json -------------------------------------------------------------------------------- /projects/xAutomator_server/data/accounts/accs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/data/accounts/accs.json -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/auth.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/common.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/config.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/hwid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/hwid.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/logger.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/menu_output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/menu_output.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/output.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/reader.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/scraper_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/scraper_config.go -------------------------------------------------------------------------------- /projects/xAutomator_server/extra/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/extra/writer.go -------------------------------------------------------------------------------- /projects/xAutomator_server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/go.mod -------------------------------------------------------------------------------- /projects/xAutomator_server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/go.sum -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/additional_twitter_methods/get_tweet_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/additional_twitter_methods/get_tweet_id.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/additional_twitter_methods/get_twitter_username.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/additional_twitter_methods/get_twitter_username.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/additional_twitter_methods/set_auth_cookies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/additional_twitter_methods/set_auth_cookies.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/check_suspended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/check_suspended.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/comment.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/follow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/follow.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/like.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/like.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/model.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/retweet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/retweet.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/tweet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/tweet.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/unfreeze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/unfreeze.go -------------------------------------------------------------------------------- /projects/xAutomator_server/instance/vote_poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/instance/vote_poll.go -------------------------------------------------------------------------------- /projects/xAutomator_server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/main.go -------------------------------------------------------------------------------- /projects/xAutomator_server/scraper_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/scraper_config.json -------------------------------------------------------------------------------- /projects/xAutomator_server/scraper_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/scraper_config.yaml -------------------------------------------------------------------------------- /projects/xAutomator_server/server/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/middleware/cors.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/modules/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/modules/accounts.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/modules/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/modules/config.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/server.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/check_suspended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/check_suspended.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/comment.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/follow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/follow.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/like.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/like.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/retweet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/retweet.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/tweet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/tweet.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/types.go -------------------------------------------------------------------------------- /projects/xAutomator_server/server/x_actions/vote_poll.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/server/x_actions/vote_poll.go -------------------------------------------------------------------------------- /projects/xAutomator_server/utils/cookie_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/utils/cookie_client.go -------------------------------------------------------------------------------- /projects/xAutomator_server/utils/http_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/utils/http_client.go -------------------------------------------------------------------------------- /projects/xAutomator_server/utils/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/utils/random.go -------------------------------------------------------------------------------- /projects/xAutomator_server/utils/tls_config_builds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/utils/tls_config_builds.go -------------------------------------------------------------------------------- /projects/xAutomator_server/utils/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/projects/xAutomator_server/utils/types.go -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/stone_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/public/stone_face.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Layout/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/Layout/Layout.tsx -------------------------------------------------------------------------------- /src/components/Layout/MainContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/Layout/MainContent.tsx -------------------------------------------------------------------------------- /src/components/Layout/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/Layout/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/common/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/common/MenuItem.tsx -------------------------------------------------------------------------------- /src/components/common/ModuleTable/ModuleTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/common/ModuleTable/ModuleTable.css -------------------------------------------------------------------------------- /src/components/common/ModuleTable/ModuleTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/common/ModuleTable/ModuleTable.tsx -------------------------------------------------------------------------------- /src/components/common/Progress/Progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/common/Progress/Progress.css -------------------------------------------------------------------------------- /src/components/common/Progress/Progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/common/Progress/Progress.tsx -------------------------------------------------------------------------------- /src/components/common/Toast.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/common/Toast.css -------------------------------------------------------------------------------- /src/components/common/Toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/common/Toast.tsx -------------------------------------------------------------------------------- /src/components/modals/ConfirmationModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/ConfirmationModal.css -------------------------------------------------------------------------------- /src/components/modals/ConfirmationModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/ConfirmationModal.tsx -------------------------------------------------------------------------------- /src/components/modals/CreateGroupModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/CreateGroupModal.css -------------------------------------------------------------------------------- /src/components/modals/CreateGroupModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/CreateGroupModal.tsx -------------------------------------------------------------------------------- /src/components/modals/EditModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/EditModal.tsx -------------------------------------------------------------------------------- /src/components/modals/ExportAccountsModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/ExportAccountsModal.css -------------------------------------------------------------------------------- /src/components/modals/ExportAccountsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/ExportAccountsModal.tsx -------------------------------------------------------------------------------- /src/components/modals/FilterModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/FilterModal.css -------------------------------------------------------------------------------- /src/components/modals/FilterModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/FilterModal.tsx -------------------------------------------------------------------------------- /src/components/modals/LogsModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/LogsModal.css -------------------------------------------------------------------------------- /src/components/modals/LogsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/LogsModal.tsx -------------------------------------------------------------------------------- /src/components/modals/Modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/Modal.css -------------------------------------------------------------------------------- /src/components/modals/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modals/Modal.tsx -------------------------------------------------------------------------------- /src/components/modules/twitter/ChangeProfileModule/ChangeProfile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/ChangeProfileModule/ChangeProfile.css -------------------------------------------------------------------------------- /src/components/modules/twitter/ChangeProfileModule/ChangeProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/ChangeProfileModule/ChangeProfile.tsx -------------------------------------------------------------------------------- /src/components/modules/twitter/CommentModule/CommentModule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/CommentModule/CommentModule.css -------------------------------------------------------------------------------- /src/components/modules/twitter/CommentModule/CommentModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/CommentModule/CommentModule.tsx -------------------------------------------------------------------------------- /src/components/modules/twitter/FollowModule/FollowModule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/FollowModule/FollowModule.css -------------------------------------------------------------------------------- /src/components/modules/twitter/FollowModule/FollowModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/FollowModule/FollowModule.tsx -------------------------------------------------------------------------------- /src/components/modules/twitter/LikeModule/LikeModule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/LikeModule/LikeModule.css -------------------------------------------------------------------------------- /src/components/modules/twitter/LikeModule/LikeModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/LikeModule/LikeModule.tsx -------------------------------------------------------------------------------- /src/components/modules/twitter/RetweetModule/RetweetModule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/RetweetModule/RetweetModule.css -------------------------------------------------------------------------------- /src/components/modules/twitter/RetweetModule/RetweetModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/RetweetModule/RetweetModule.tsx -------------------------------------------------------------------------------- /src/components/modules/twitter/TweetModule/TweetModule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/TweetModule/TweetModule.css -------------------------------------------------------------------------------- /src/components/modules/twitter/TweetModule/TweetModule.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/TweetModule/TweetModule.tsx -------------------------------------------------------------------------------- /src/components/modules/twitter/VoteModule/Vote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/VoteModule/Vote.css -------------------------------------------------------------------------------- /src/components/modules/twitter/VoteModule/Vote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/components/modules/twitter/VoteModule/Vote.tsx -------------------------------------------------------------------------------- /src/config/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/config/settings.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/ExportModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/ExportModal.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/ProxyCheckerLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/ProxyCheckerLayout.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/ProxyFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/ProxyFilter.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/ProxyList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/ProxyList.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/ProxyProgress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/ProxyProgress.css -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/ProxyProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/ProxyProgress.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/ProxyTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/ProxyTable.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/StatusBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/StatusBar.tsx -------------------------------------------------------------------------------- /src/modules/proxy_checker/components/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/components/styles.css -------------------------------------------------------------------------------- /src/modules/proxy_checker/config.ts: -------------------------------------------------------------------------------- 1 | export const API_BASE_URL = 'http://localhost:4004/api'; -------------------------------------------------------------------------------- /src/modules/proxy_checker/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/hooks/index.ts -------------------------------------------------------------------------------- /src/modules/proxy_checker/hooks/useProxyChecking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/hooks/useProxyChecking.ts -------------------------------------------------------------------------------- /src/modules/proxy_checker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/index.ts -------------------------------------------------------------------------------- /src/modules/proxy_checker/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/types/index.ts -------------------------------------------------------------------------------- /src/modules/proxy_checker/utils/proxyChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/utils/proxyChecker.ts -------------------------------------------------------------------------------- /src/modules/proxy_checker/utils/proxyParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/utils/proxyParser.ts -------------------------------------------------------------------------------- /src/modules/proxy_checker/utils/proxyValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/proxy_checker/utils/proxyValidator.ts -------------------------------------------------------------------------------- /src/modules/wallet_checker/WalletChecker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/WalletChecker.css -------------------------------------------------------------------------------- /src/modules/wallet_checker/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/api/client.ts -------------------------------------------------------------------------------- /src/modules/wallet_checker/components/CheckTypeModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/components/CheckTypeModal.tsx -------------------------------------------------------------------------------- /src/modules/wallet_checker/components/CreateWalletGroupModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/components/CreateWalletGroupModal.tsx -------------------------------------------------------------------------------- /src/modules/wallet_checker/components/SettingsModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/components/SettingsModal.tsx -------------------------------------------------------------------------------- /src/modules/wallet_checker/components/WalletFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/components/WalletFilter.tsx -------------------------------------------------------------------------------- /src/modules/wallet_checker/components/WalletTable.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/wallet_checker/components/WalletTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/components/WalletTable.tsx -------------------------------------------------------------------------------- /src/modules/wallet_checker/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/index.tsx -------------------------------------------------------------------------------- /src/modules/wallet_checker/styles/CheckTypeModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/styles/CheckTypeModal.css -------------------------------------------------------------------------------- /src/modules/wallet_checker/styles/CreateWalletGroupModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/styles/CreateWalletGroupModal.css -------------------------------------------------------------------------------- /src/modules/wallet_checker/styles/SettingsModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/styles/SettingsModal.css -------------------------------------------------------------------------------- /src/modules/wallet_checker/styles/WalletCheckerDetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/styles/WalletCheckerDetails.css -------------------------------------------------------------------------------- /src/modules/wallet_checker/styles/WalletFilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/styles/WalletFilter.css -------------------------------------------------------------------------------- /src/modules/wallet_checker/styles/WalletTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/styles/WalletTable.css -------------------------------------------------------------------------------- /src/modules/wallet_checker/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/modules/wallet_checker/types.ts -------------------------------------------------------------------------------- /src/pages/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/About.tsx -------------------------------------------------------------------------------- /src/pages/AccountTable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/AccountTable.css -------------------------------------------------------------------------------- /src/pages/Accounts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/Accounts.css -------------------------------------------------------------------------------- /src/pages/Accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/Accounts.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/Dashboard.css -------------------------------------------------------------------------------- /src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/Settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/Settings.css -------------------------------------------------------------------------------- /src/pages/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/pages/Settings.tsx -------------------------------------------------------------------------------- /src/services/accountsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/services/accountsService.ts -------------------------------------------------------------------------------- /src/styles/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/styles/buttons.css -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /start_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/start_all.bat -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xStarLabs/StarLabs-AIO/HEAD/vite.config.ts --------------------------------------------------------------------------------