https://github.com/allianzatech/blockchainallianza
Quantum-safe, bridge-free cross-chain interoperability platform using NIST PQC standards and Zero-Knowledge Proofs.
https://github.com/allianzatech/blockchainallianza
bitcoin blockchain bridge-free cross-chain cybersecurity decentralized-finance ethereum fintech interoperability nist-pqc nobridge polygon post-quantum-cryptography pqc quantum-safe smart-contracts solana web3 zero-knowledge-proofs zk-proofs
Last synced: 2 months ago
JSON representation
Quantum-safe, bridge-free cross-chain interoperability platform using NIST PQC standards and Zero-Knowledge Proofs.
- Host: GitHub
- URL: https://github.com/allianzatech/blockchainallianza
- Owner: allianzatech
- License: mit
- Created: 2025-12-22T22:32:35.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-01-13T15:02:12.000Z (2 months ago)
- Last Synced: 2026-01-13T16:30:15.644Z (2 months ago)
- Topics: bitcoin, blockchain, bridge-free, cross-chain, cybersecurity, decentralized-finance, ethereum, fintech, interoperability, nist-pqc, nobridge, polygon, post-quantum-cryptography, pqc, quantum-safe, smart-contracts, solana, web3, zero-knowledge-proofs, zk-proofs
- Language: HTML
- Homepage: https://allianza.tech/
- Size: 5.02 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Audit: AUDIT_GUIDE.md
- Security: SECURITY.md
- Roadmap: docs/ROADMAP.md
Awesome Lists containing this project
README
# Allianza Blockchain






**Advanced Blockchain Platform with Cross-Chain Interoperability**
[Features](#-features) • [Documentation](#-documentation) • [Quick Start](#-quick-start) • [Security](#-security) • [Getting Started](GETTING_STARTED.md) • [Testing](TESTING.md)
---
## 🌟 Features
- ✅ **Cross-Chain Interoperability**: Real transfers between EVM, non-EVM, and sovereign blockchains
- ✅ **ALZ-NIEV Protocol**: 5-layer interoperability system with ZK proofs
- ✅ **Quantum-Safe Security**: Post-quantum cryptography (ML-DSA, ML-KEM, SPHINCS+)
- ✅ **Bridge-Free Transfers**: No custody, no wrapped tokens
- ✅ **Multi-Consensus Support**: PoW, PoS, PoH+PoS+BFT, Custom BFT
## 📚 Documentation
| Document | Description |
|----------|-------------|
| [Complete README](docs/README_COMPLETO.md) | Complete system documentation |
| [Security Model](docs/SECURITY_MODEL_WHITEPAPER.md) | Security architecture and model |
| [Threat Model](docs/THREAT_MODEL.md) | Threat analysis and mitigation |
| [Audit Guide](AUDIT_GUIDE.md) | External audit guidelines |
| [Technical Proofs](PROOFS_README.md) | Technical proofs and verifications |
| [Roadmap](docs/ROADMAP_PUBLIC.md) | Development roadmap |
## 🔬 Technical Proofs
Allianza Blockchain provides **verifiable technical proofs** that can be independently audited:
- ✅ **41 Technical Validations** - 100% success rate
- ✅ **On-Chain Verifiable Transactions** - Real transactions on Bitcoin, Ethereum, Polygon testnets
- ✅ **Quantum Security Proofs** - QRS-3 implementation verified
- ✅ **Cross-Chain Interoperability Proofs** - Real transfers between blockchains
- ✅ **Public Testnet** - Fully functional testnet available at https://testnet.allianza.tech
**Quick Access:**
- [Technical Proofs Index](PROOFS_README.md) - Quick access to all proofs
- [Complete Technical Proofs](COMPLETE_TECHNICAL_PROOFS_FINAL.json) - Full technical validation (41 tests)
- [On-Chain Proofs](VERIFIABLE_ON_CHAIN_PROOFS.md) - Verifiable transaction hashes
- [Audit Guide](AUDIT_GUIDE.md) - Complete audit guide for external auditors
**Verification Scripts:**
```bash
# Verify all technical proofs
python scripts/verify_technical_proofs.py
# Verify on-chain transactions
python scripts/verify_on_chain_transactions.py
# Verify QRS-3 implementation
python scripts/verify_qrs3_implementation.py
```
## 🏗️ Project Structure
```
allianza-blockchain/
├── core/ # Core blockchain components
│ ├── interoperability/ # Cross-chain interoperability
│ ├── consensus/ # Consensus mechanisms
│ └── quantum/ # Quantum-safe cryptography
├── testnet/ # Testnet infrastructure
├── scripts/ # Utility scripts
├── docs/ # Documentation
├── config/ # Configuration files
├── templates/ # Web templates
└── static/ # Static assets
```
## 🛠️ Installation
### Quick Start (Docker - Recommended)
```bash
# Clone repository
git clone https://github.com/allianzatech/blockchainallianza.git
cd blockchainallianza
# Run with Docker (one command)
docker-compose -f docker-compose.public.yml up
# Or build and run
docker build -f Dockerfile.public -t allianza-public .
docker run -v $(pwd)/verification_reports:/app/verification_reports allianza-public
```
### Manual Installation
#### Requirements
- Python 3.8+
- Redis (optional, for caching)
- Node.js 16+ (for frontend assets)
#### Setup
```bash
# Clone repository
git clone https://github.com/allianzatech/blockchainallianza.git
cd blockchainallianza
# Install dependencies
pip install -r requirements.txt
# Install frontend dependencies (optional)
npm install
```
### GitHub Codespaces
Click the green "Code" button and select "Codespaces" to test the repository in your browser with one click!
## 📖 Quick Start
### Run All Demos
```bash
# Linux/Mac
./examples/run_all_demos.sh
# Windows
examples\run_all_demos.bat
```
### Docker Quick Test
```bash
docker-compose -f docker-compose.public.yml up
```
### 1. Clone and Install
```bash
git clone https://github.com/allianzatech/blockchainallianza.git
cd blockchainallianza
pip install -r requirements.txt
```
### 2. Run Examples
```bash
# QRS-3 Signature Demo
python examples/qrs3_demo.py
# ALZ-NIEV Protocol Demo
python examples/alz_niev_demo.py
# Cross-Chain Transfer Demo
python examples/cross_chain_transfer.py
```
### 3. Verify Technical Proofs
```bash
# Verify all proofs
python scripts/verify_technical_proofs.py
# Verify on-chain transactions
python scripts/verify_on_chain_transactions.py
```
**For detailed instructions, see [GETTING_STARTED.md](GETTING_STARTED.md)**
## 🔐 Security
This project implements quantum-safe cryptography and follows security best practices.
- **Post-Quantum Cryptography**: ML-DSA, ML-KEM, SPHINCS+
- **Zero-Knowledge Proofs**: ZK-SNARK verification
- **Multi-Layer Security**: 6 layers of security protection
- **Audit Logs**: Complete transaction and system audit trails
See [SECURITY.md](docs/README_SECURITY.md) for complete security documentation.
## 🌐 Cross-Chain Interoperability
Allianza supports real cross-chain transfers between:
- **EVM Chains**: Ethereum, Polygon, BSC, Base
- **Non-EVM**: Solana (PoH+PoS+BFT)
- **Sovereign**: Allianza (Custom PoS+BFT)
- **UTXO**: Bitcoin (PoW)
All transfers include:
- ✅ ZK Proofs (verified on-chain)
- ✅ Merkle Proofs (inclusion verification)
- ✅ Consensus Proofs (consensus-specific validation)
- ✅ State Transition Hashes
- ✅ No custody, no wrapped tokens
## 📄 License
This project uses a commercial license. See [LICENSE](LICENSE) for details.
## 🤝 Contributing
We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
## 🧪 Testing
Run tests and verify technical proofs:
```bash
# Run all public tests
python tests/public/run_all_tests.py
# Verify technical proofs
python scripts/verify_technical_proofs.py
```
See [TESTING.md](TESTING.md) for complete testing guide.
## 🌐 Links
- **Website**: https://allianza.tech
- **Documentation**: [docs/](docs/)
- **Testnet**: Available at `/testnet` endpoint
- **Contact**: contact@allianza.tech
---
**Built with ❤️ by [Allianza Tech](https://allianza.tech)**
[Website](https://allianza.tech) • [Documentation](docs/) • [Security](docs/README_SECURITY.md)