├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── backend ├── app │ ├── __init__.py │ ├── config.py │ ├── models.py │ ├── routes.py │ ├── services.py │ └── utils.py ├── auth │ ├── __init__.py │ ├── auth.py │ ├── models.py │ └── utils.py └── db │ ├── __init__.py │ ├── models.py │ └── utils.py ├── blockchain └── pi-network-api │ ├── __init__.py │ ├── api.py │ ├── models.py │ └── utils.py ├── frontend ├── public │ ├── api.js │ ├── index.html │ ├── script.js │ └── styles.css └── src │ ├── actions │ ├── index.js │ ├── launchActions.js │ ├── nodeActions.js │ └── walletActions.js │ ├── api │ └── index.js │ ├── components │ ├── App.js │ ├── Footer.js │ └── Header.js │ ├── containers │ └── AppContainer.js │ ├── reducers │ ├── index.js │ ├── launchReducer.js │ ├── nodeReducer.js │ └── walletReducer.js │ ├── store │ └── index.js │ └── types │ └── index.d.ts ├── machine-learning └── anomaly-detection │ ├── __init__.py │ ├── models.py │ └── utils.py ├── security └── encryption │ ├── __init__.py │ ├── encryption.py │ └── utils.py ├── tests ├── backend │ ├── test_app.py │ ├── test_auth.py │ └── test_models.py └── frontend │ ├── test_app.js │ ├── test_components.js │ └── test_utils.js └── utils ├── __init__.py ├── async_utils.py ├── cache.py ├── helpers.py ├── logging.py ├── string_utils.py └── validation.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/README.md -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/app/__init__.py -------------------------------------------------------------------------------- /backend/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/app/config.py -------------------------------------------------------------------------------- /backend/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/app/models.py -------------------------------------------------------------------------------- /backend/app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/app/routes.py -------------------------------------------------------------------------------- /backend/app/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/app/services.py -------------------------------------------------------------------------------- /backend/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/app/utils.py -------------------------------------------------------------------------------- /backend/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/auth/__init__.py -------------------------------------------------------------------------------- /backend/auth/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/auth/auth.py -------------------------------------------------------------------------------- /backend/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/auth/models.py -------------------------------------------------------------------------------- /backend/auth/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/auth/utils.py -------------------------------------------------------------------------------- /backend/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/db/__init__.py -------------------------------------------------------------------------------- /backend/db/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/db/models.py -------------------------------------------------------------------------------- /backend/db/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/backend/db/utils.py -------------------------------------------------------------------------------- /blockchain/pi-network-api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/blockchain/pi-network-api/__init__.py -------------------------------------------------------------------------------- /blockchain/pi-network-api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/blockchain/pi-network-api/api.py -------------------------------------------------------------------------------- /blockchain/pi-network-api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/blockchain/pi-network-api/models.py -------------------------------------------------------------------------------- /blockchain/pi-network-api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/blockchain/pi-network-api/utils.py -------------------------------------------------------------------------------- /frontend/public/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/public/api.js -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/public/script.js -------------------------------------------------------------------------------- /frontend/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/public/styles.css -------------------------------------------------------------------------------- /frontend/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/actions/index.js -------------------------------------------------------------------------------- /frontend/src/actions/launchActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/actions/launchActions.js -------------------------------------------------------------------------------- /frontend/src/actions/nodeActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/actions/nodeActions.js -------------------------------------------------------------------------------- /frontend/src/actions/walletActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/actions/walletActions.js -------------------------------------------------------------------------------- /frontend/src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/api/index.js -------------------------------------------------------------------------------- /frontend/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/components/App.js -------------------------------------------------------------------------------- /frontend/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/components/Footer.js -------------------------------------------------------------------------------- /frontend/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/components/Header.js -------------------------------------------------------------------------------- /frontend/src/containers/AppContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/containers/AppContainer.js -------------------------------------------------------------------------------- /frontend/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/reducers/index.js -------------------------------------------------------------------------------- /frontend/src/reducers/launchReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/reducers/launchReducer.js -------------------------------------------------------------------------------- /frontend/src/reducers/nodeReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/reducers/nodeReducer.js -------------------------------------------------------------------------------- /frontend/src/reducers/walletReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/reducers/walletReducer.js -------------------------------------------------------------------------------- /frontend/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/store/index.js -------------------------------------------------------------------------------- /frontend/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/frontend/src/types/index.d.ts -------------------------------------------------------------------------------- /machine-learning/anomaly-detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/machine-learning/anomaly-detection/__init__.py -------------------------------------------------------------------------------- /machine-learning/anomaly-detection/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/machine-learning/anomaly-detection/models.py -------------------------------------------------------------------------------- /machine-learning/anomaly-detection/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/machine-learning/anomaly-detection/utils.py -------------------------------------------------------------------------------- /security/encryption/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/security/encryption/__init__.py -------------------------------------------------------------------------------- /security/encryption/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/security/encryption/encryption.py -------------------------------------------------------------------------------- /security/encryption/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/security/encryption/utils.py -------------------------------------------------------------------------------- /tests/backend/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/tests/backend/test_app.py -------------------------------------------------------------------------------- /tests/backend/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/tests/backend/test_auth.py -------------------------------------------------------------------------------- /tests/backend/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/tests/backend/test_models.py -------------------------------------------------------------------------------- /tests/frontend/test_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/tests/frontend/test_app.js -------------------------------------------------------------------------------- /tests/frontend/test_components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/tests/frontend/test_components.js -------------------------------------------------------------------------------- /tests/frontend/test_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/tests/frontend/test_utils.js -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Empty file to make utils a package 2 | -------------------------------------------------------------------------------- /utils/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/utils/async_utils.py -------------------------------------------------------------------------------- /utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/utils/cache.py -------------------------------------------------------------------------------- /utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/utils/helpers.py -------------------------------------------------------------------------------- /utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/utils/logging.py -------------------------------------------------------------------------------- /utils/string_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/utils/string_utils.py -------------------------------------------------------------------------------- /utils/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/pimainnet-launcher/HEAD/utils/validation.py --------------------------------------------------------------------------------