├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── app.ts ├── config ├── config.json ├── environment.ts ├── network.ts ├── pi.ts └── stellar.ts ├── contracts ├── AutomatedTransaction.sol ├── DataAggregator.sol ├── DecentralizedIdentity.sol ├── ERC20Token.sol ├── Governance.sol ├── IdentityVerification.sol ├── Interoperability.sol ├── MLModelIntegration.sol ├── MultiSigWallet.sol ├── MyToken.sol ├── Oracle.sol ├── PiNetworkContract.sol ├── PriceOracle.sol ├── StellarSmartContract.sol ├── mainnet │ └── PiCoinStable.js └── testnet │ └── PiCoinStable.js ├── docs └── Stellar-Pi-Nexus.jpeg ├── index.ts ├── package.json ├── services ├── pi_service.ts └── stellar_service.ts ├── src ├── ai │ └── models │ │ ├── imageClassification.model.ts │ │ ├── imageGeneration.model.ts │ │ ├── predictive_analytics_model.py │ │ ├── reinforcementLearning.model.ts │ │ ├── sentimentAnalysis.model.ts │ │ ├── timeSeriesForecasting.model.ts │ │ └── transaction_anomaly_detector.py ├── api │ ├── ai.controller.ts │ ├── analytics.js │ ├── api.module.ts │ ├── auth.ts │ ├── dataProcessing.controller.ts │ ├── dataProcessing.service.ts │ ├── docs.ts │ ├── interoperabilityService.ts │ ├── logging.controller.ts │ ├── logging.service.ts │ ├── pi.js │ ├── predictiveAnalytics.ts │ ├── stellar.js │ ├── threatDetection.ts │ ├── user.controller.ts │ ├── user.entity.ts │ └── websocketServer.ts ├── config │ ├── apiConfig.js │ ├── apiConfig.ts │ ├── databaseConfig.ts │ ├── dbConfig.js │ ├── envConfig.ts │ ├── featureFlags.ts │ ├── loggerConfig.ts │ └── securityConfig.ts ├── constants.py ├── data │ ├── models │ │ ├── Transaction.ts │ │ ├── UserModel.ts │ │ ├── predictiveAnalytics.model.ts │ │ └── threatDetection.model.ts │ ├── pi_data_loader.py │ └── stellar_data_loader.py ├── index.js ├── models │ ├── Transaction.js │ └── User.js ├── services │ ├── ai.service.ts │ ├── analytics.js │ ├── authentication.service.ts │ ├── authorization.service.ts │ ├── blockchain.service.ts │ ├── cryptography.service.ts │ ├── database.service.ts │ ├── fraudDetectionService.js │ ├── iot.service.ts │ ├── logging.service.ts │ ├── monitoring.service.ts │ ├── networking.service.ts │ ├── predictiveAnalytics.js │ ├── smartContracts.ts │ └── transactionService.js ├── stabilizer │ ├── advanced_stabilizer.py │ ├── ai_predictor.py │ ├── blockchain_oracle.py │ ├── collateralService.ts │ ├── dashboard.controller.ts │ ├── dynamic_price_stabilizer.py │ ├── monitoring.py │ ├── pi_coin_quantum_stabilizer.py │ ├── quantum_encryption.py │ ├── requirements.txt │ ├── risk_management.py │ ├── stabilizer.py │ ├── stabilizer.ts │ └── stablecoin.ts └── utils │ ├── apiClient.ts │ ├── encryption.js │ ├── errorHandler.ts │ ├── logger.js │ ├── logger.ts │ └── validator.ts ├── tests ├── pytest.ini ├── requirements-dev.txt ├── test_quantum_encryption.py └── test_stabilizer.py └── utils ├── crypto_utils.ts └── math_utils.ts /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/README.md -------------------------------------------------------------------------------- /app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/app.ts -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/config/config.json -------------------------------------------------------------------------------- /config/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/config/environment.ts -------------------------------------------------------------------------------- /config/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/config/network.ts -------------------------------------------------------------------------------- /config/pi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/config/pi.ts -------------------------------------------------------------------------------- /config/stellar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/config/stellar.ts -------------------------------------------------------------------------------- /contracts/AutomatedTransaction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/AutomatedTransaction.sol -------------------------------------------------------------------------------- /contracts/DataAggregator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/DataAggregator.sol -------------------------------------------------------------------------------- /contracts/DecentralizedIdentity.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/DecentralizedIdentity.sol -------------------------------------------------------------------------------- /contracts/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/ERC20Token.sol -------------------------------------------------------------------------------- /contracts/Governance.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/Governance.sol -------------------------------------------------------------------------------- /contracts/IdentityVerification.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/IdentityVerification.sol -------------------------------------------------------------------------------- /contracts/Interoperability.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/Interoperability.sol -------------------------------------------------------------------------------- /contracts/MLModelIntegration.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/MLModelIntegration.sol -------------------------------------------------------------------------------- /contracts/MultiSigWallet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/MultiSigWallet.sol -------------------------------------------------------------------------------- /contracts/MyToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/MyToken.sol -------------------------------------------------------------------------------- /contracts/Oracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/Oracle.sol -------------------------------------------------------------------------------- /contracts/PiNetworkContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/PiNetworkContract.sol -------------------------------------------------------------------------------- /contracts/PriceOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/PriceOracle.sol -------------------------------------------------------------------------------- /contracts/StellarSmartContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/StellarSmartContract.sol -------------------------------------------------------------------------------- /contracts/mainnet/PiCoinStable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/mainnet/PiCoinStable.js -------------------------------------------------------------------------------- /contracts/testnet/PiCoinStable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/contracts/testnet/PiCoinStable.js -------------------------------------------------------------------------------- /docs/Stellar-Pi-Nexus.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/docs/Stellar-Pi-Nexus.jpeg -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/package.json -------------------------------------------------------------------------------- /services/pi_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/services/pi_service.ts -------------------------------------------------------------------------------- /services/stellar_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/services/stellar_service.ts -------------------------------------------------------------------------------- /src/ai/models/imageClassification.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/ai/models/imageClassification.model.ts -------------------------------------------------------------------------------- /src/ai/models/imageGeneration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/ai/models/imageGeneration.model.ts -------------------------------------------------------------------------------- /src/ai/models/predictive_analytics_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/ai/models/predictive_analytics_model.py -------------------------------------------------------------------------------- /src/ai/models/reinforcementLearning.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/ai/models/reinforcementLearning.model.ts -------------------------------------------------------------------------------- /src/ai/models/sentimentAnalysis.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/ai/models/sentimentAnalysis.model.ts -------------------------------------------------------------------------------- /src/ai/models/timeSeriesForecasting.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/ai/models/timeSeriesForecasting.model.ts -------------------------------------------------------------------------------- /src/ai/models/transaction_anomaly_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/ai/models/transaction_anomaly_detector.py -------------------------------------------------------------------------------- /src/api/ai.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/ai.controller.ts -------------------------------------------------------------------------------- /src/api/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/analytics.js -------------------------------------------------------------------------------- /src/api/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/api.module.ts -------------------------------------------------------------------------------- /src/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/auth.ts -------------------------------------------------------------------------------- /src/api/dataProcessing.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/dataProcessing.controller.ts -------------------------------------------------------------------------------- /src/api/dataProcessing.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/dataProcessing.service.ts -------------------------------------------------------------------------------- /src/api/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/docs.ts -------------------------------------------------------------------------------- /src/api/interoperabilityService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/interoperabilityService.ts -------------------------------------------------------------------------------- /src/api/logging.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/logging.controller.ts -------------------------------------------------------------------------------- /src/api/logging.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/logging.service.ts -------------------------------------------------------------------------------- /src/api/pi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/pi.js -------------------------------------------------------------------------------- /src/api/predictiveAnalytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/predictiveAnalytics.ts -------------------------------------------------------------------------------- /src/api/stellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/stellar.js -------------------------------------------------------------------------------- /src/api/threatDetection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/threatDetection.ts -------------------------------------------------------------------------------- /src/api/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/user.controller.ts -------------------------------------------------------------------------------- /src/api/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/user.entity.ts -------------------------------------------------------------------------------- /src/api/websocketServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/api/websocketServer.ts -------------------------------------------------------------------------------- /src/config/apiConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/apiConfig.js -------------------------------------------------------------------------------- /src/config/apiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/apiConfig.ts -------------------------------------------------------------------------------- /src/config/databaseConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/databaseConfig.ts -------------------------------------------------------------------------------- /src/config/dbConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/dbConfig.js -------------------------------------------------------------------------------- /src/config/envConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/envConfig.ts -------------------------------------------------------------------------------- /src/config/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/featureFlags.ts -------------------------------------------------------------------------------- /src/config/loggerConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/loggerConfig.ts -------------------------------------------------------------------------------- /src/config/securityConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/config/securityConfig.ts -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/data/models/Transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/data/models/Transaction.ts -------------------------------------------------------------------------------- /src/data/models/UserModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/data/models/UserModel.ts -------------------------------------------------------------------------------- /src/data/models/predictiveAnalytics.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/data/models/predictiveAnalytics.model.ts -------------------------------------------------------------------------------- /src/data/models/threatDetection.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/data/models/threatDetection.model.ts -------------------------------------------------------------------------------- /src/data/pi_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/data/pi_data_loader.py -------------------------------------------------------------------------------- /src/data/stellar_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/data/stellar_data_loader.py -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/index.js -------------------------------------------------------------------------------- /src/models/Transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/models/Transaction.js -------------------------------------------------------------------------------- /src/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/models/User.js -------------------------------------------------------------------------------- /src/services/ai.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/ai.service.ts -------------------------------------------------------------------------------- /src/services/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/analytics.js -------------------------------------------------------------------------------- /src/services/authentication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/authentication.service.ts -------------------------------------------------------------------------------- /src/services/authorization.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/authorization.service.ts -------------------------------------------------------------------------------- /src/services/blockchain.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/blockchain.service.ts -------------------------------------------------------------------------------- /src/services/cryptography.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/cryptography.service.ts -------------------------------------------------------------------------------- /src/services/database.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/database.service.ts -------------------------------------------------------------------------------- /src/services/fraudDetectionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/fraudDetectionService.js -------------------------------------------------------------------------------- /src/services/iot.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/iot.service.ts -------------------------------------------------------------------------------- /src/services/logging.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/logging.service.ts -------------------------------------------------------------------------------- /src/services/monitoring.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/monitoring.service.ts -------------------------------------------------------------------------------- /src/services/networking.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/networking.service.ts -------------------------------------------------------------------------------- /src/services/predictiveAnalytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/predictiveAnalytics.js -------------------------------------------------------------------------------- /src/services/smartContracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/smartContracts.ts -------------------------------------------------------------------------------- /src/services/transactionService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/services/transactionService.js -------------------------------------------------------------------------------- /src/stabilizer/advanced_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/advanced_stabilizer.py -------------------------------------------------------------------------------- /src/stabilizer/ai_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/ai_predictor.py -------------------------------------------------------------------------------- /src/stabilizer/blockchain_oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/blockchain_oracle.py -------------------------------------------------------------------------------- /src/stabilizer/collateralService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/collateralService.ts -------------------------------------------------------------------------------- /src/stabilizer/dashboard.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/dashboard.controller.ts -------------------------------------------------------------------------------- /src/stabilizer/dynamic_price_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/dynamic_price_stabilizer.py -------------------------------------------------------------------------------- /src/stabilizer/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/monitoring.py -------------------------------------------------------------------------------- /src/stabilizer/pi_coin_quantum_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/pi_coin_quantum_stabilizer.py -------------------------------------------------------------------------------- /src/stabilizer/quantum_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/quantum_encryption.py -------------------------------------------------------------------------------- /src/stabilizer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/requirements.txt -------------------------------------------------------------------------------- /src/stabilizer/risk_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/risk_management.py -------------------------------------------------------------------------------- /src/stabilizer/stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/stabilizer.py -------------------------------------------------------------------------------- /src/stabilizer/stabilizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/stabilizer.ts -------------------------------------------------------------------------------- /src/stabilizer/stablecoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/stabilizer/stablecoin.ts -------------------------------------------------------------------------------- /src/utils/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/utils/apiClient.ts -------------------------------------------------------------------------------- /src/utils/encryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/utils/encryption.js -------------------------------------------------------------------------------- /src/utils/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/utils/errorHandler.ts -------------------------------------------------------------------------------- /src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/utils/logger.js -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/src/utils/validator.ts -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/tests/requirements-dev.txt -------------------------------------------------------------------------------- /tests/test_quantum_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/tests/test_quantum_encryption.py -------------------------------------------------------------------------------- /tests/test_stabilizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/tests/test_stabilizer.py -------------------------------------------------------------------------------- /utils/crypto_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/utils/crypto_utils.ts -------------------------------------------------------------------------------- /utils/math_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KOSASIH/Stellar-Pi-Nexus-SPN/HEAD/utils/math_utils.ts --------------------------------------------------------------------------------