The First Post-Quantum Institutional Settlement and AI Execution Layer
Founder: Kishore K — admin@quantachain.org — quantachain.org
QUANTA is a production-ready blockchain built from the ground up to be quantum-resistant and optimized as a settlement layer for autonomous AI agents, Machine-to-Machine (M2M) micro-transactions, and Decentralized Physical Infrastructure Networks (DePIN). While traditional blockchains rely on cryptography that is vulnerable to future quantum computers, QUANTA secures its network using NIST-standardized Post-Quantum Cryptography (PQC).
QUANTA V2 completely abandons Proof-of-Work in favor of Delegated Proof-of-Stake (DPoS) combined with Asynchronous Byzantine Fault Tolerance (AlephBFT). This provides the deterministic 6-second finality required for rapid AI and M2M agent settlement.
Built with:
- Falcon-512 — NIST-standardized post-quantum transaction signatures
- Kyber-1024 — Post-quantum wallet encryption
- AlephBFT — Asynchronous Byzantine Fault Tolerance consensus
- SHA3-256 — Quantum-resistant hashing
- Rust — Memory-safe, high-performance implementation
- PQC + AI Execution Layer: Every transaction includes a
payload: Vec<u8>field signed by Falcon-512, which can carry agent instructions or stablecoin settlement intents. The network acts as the execution and gas layer for AI agents. - DPoS + AlephBFT Finality: Instant mathematical finality in 6 seconds. Consensus requires greater than 2/3 committee signatures. The network uses a delegated staking model with an unbonding period for strict validator accountability.
- Native Contract Templates: To minimize the attack surface of Turing-complete smart contracts, QUANTA provides built-in, highly audited native templates:
- Escrow (
TEMPLATE_ESCROW): Cryptographic escrow using pre-image hashes. - Agent Job (
TEMPLATE_AGENT_JOB): Trustless execution contracts between employers and AI workers.
- Escrow (
- High Throughput: Parallel Rayon verification, LRU signature caching, and O(1) bloom filter mempool duplicate detection enable 120+ TPS.
- Institutional Treasury: Native 3-of-N Multisig enforced directly at the consensus layer.
The protocol supports a distinct set of transaction types tailored for financial and AI operations:
Transfer: Standard value transferTimeLockTransfer: Cryptographic vaulting locked until a specific block heightMultiSigTransfer: Institutional M-of-N multisig transferStake: Register as a DPoS validatorUnstake: Deregister validator and begin the unbonding periodContractDeploy: Instantiate a native contract templateContractCall: Invoke a method on a deployed native contract
Docker is the recommended way to run a Quanta node. No Rust toolchain is required.
If you ran a V1 node, you must wipe the old Proof-of-Work data:
rm -rf ./quanta_datadocker pull xd637/quanta-node:latest
docker run -d \
--name quanta-node \
--restart always \
-p 3000:3000 -p 8333:8333 -p 7782:7782 -p 9090:9090 \
-v quanta-data:/home/quanta/quanta_data \
-v quanta-logs:/home/quanta/logs \
xd637/quanta-node:latestdocker logs quanta-node --tail 20 -f
curl http://localhost:3000/blocks/latestTo participate in consensus on the permissioned testnet, you must inject your wallet into the node.
- Create a Raw Wallet
docker exec -it quanta-node quanta-wallet new-raw --file validator.qua- Start the Node as Validator Pass your wallet and password into the container to enable block production:
docker run -d \
--name quanta-validator \
--restart always \
-e QUANTA_WALLET_PASSWORD="your_password" \
-p 3000:3000 -p 8333:8333 -p 7782:7782 -p 9090:9090 \
-v quanta-data:/home/quanta/quanta_data \
-v /absolute/path/to/validator.qua:/home/quanta/validator.qua \
xd637/quanta-node:latest \
quanta start --validator-wallet /home/quanta/validator.quaPrerequisites: Rust 1.70+, Git, OpenSSL 1.1.1+
git clone https://github.com/quantachain/quanta.git
cd quanta
cargo build --release
./target/release/quanta start -c quanta.tomlThe quanta-wallet supports Headless AI Mode via environment variables.
export QUANTA_WALLET_PASSWORD="your_password"
# Create a new HD Wallet
quanta-wallet new --file wallet.json
# Check Balance
quanta-wallet info --file wallet.json
# Deploy an Agent Job Contract
quanta-wallet deploy-escrow --beneficiary <WORKER_ADDR> --secret-hash <HASH> --amount 5.0| Port | Protocol | Purpose |
|---|---|---|
| 3000 | HTTP | REST API |
| 8333 | TCP | P2P networking |
| 7782 | TCP | RPC server |
| 9090 | HTTP | Prometheus metrics |
QUANTA operates under an Open-Core Dual License model:
- Core Protocol: Licensed under the GNU AGPLv3.
- Native Templates & APIs: Licensed under a Proprietary Commercial License.
Managed by QuantaLabs Pvt Ltd.