AI-Powered DeFi Security Infrastructure
Detect and prevent hacks before they happen
Architecture • Tokenomics • Quick Start • Deployment
In 2025 alone, $3.4 Billion was stolen in crypto exploits.
Traditional security relies on Audits (before deployment) and Bounties (after the hack). There is a critical gap in the middle: Execution Time.
| Attack Vector | 2025 Losses (Approx) | Status Quo Defense | Aegis Defense |
|---|---|---|---|
| Flash Loan / Math Logic | ~$420M | None. (Auditors missed it) | Interrupted. (AI flags anomaly in mempool) |
| Price Manipulation | ~$150M | Reactive. (Oracle pauses too late) | Pre-emptive. (Checks CEX/DEX spread) |
| Governance Attacks | ~$200M | Time-Locks (Manual Veto) | Automated. (Simulates treasury drain) |
Aegis exists to close this gap. We don't just watch the chain; we defend it.
┌─────────────────────────────────────────────────────────────────────────┐
│ Aegis Network │
├─────────────────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐ │
│ │ sentinel-brain │ │ sentinel-core │ │ sentinel-node │ │
│ │ (Python/ML) │ │ (Solidity) │ │ (Go) │ │
│ │ │ │ │ │ │ │
│ │ • AI Detection │ │ • $SENTR Token │ │ • Mempool │ │
│ │ • Exploit Data │ │ • Staking │ │ • P2P Consensus │ │
│ │ • Feature Eng. │ │ • Bounty System │ │ • BLS Signing │ │
│ │ • Inference │ │ • Kill Switch │ │ • gRPC Bridge │ │
│ └──────────────────┘ └──────────────────┘ └──────────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────────────┘
| Package | Language | Description |
|---|---|---|
| sentinel-brain | Python | AI/ML anomaly detection using Isolation Forest |
| sentinel-core | Solidity | Smart contracts: token, staking, bounties, router |
| sentinel-node | Go | High-performance node: mempool, P2P, BLS signing |
| Allocation | Amount | Vesting |
|---|---|---|
| Team | 20M (20%) | 4 years, 1 year cliff |
| Investors | 15M (15%) | 2 years, 6 month cliff |
| Ecosystem | 25M (25%) | 4 years, grants |
| Treasury | 25M (25%) | DAO-controlled |
| Public | 15M (15%) | TGE liquidity |
Protocol Customers (TVL-based staking):
| TVL Protected | Required Stake |
|---|---|
| < $1M | 5,000 $SENTR |
| $1M - $10M | 25,000 $SENTR |
| $10M - $100M | 50,000 $SENTR |
| > $100M | 100,000 $SENTR |
Node Operators:
- Minimum stake: 10,000 $SENTR
- 21-day unstake cooldown
- Slashable for false positives or downtime
48-hour dispute window prevents gaming:
| Pool TVL | Bounty Amount |
|---|---|
| < $1M | $5,000 |
| $1M-$10M | $25,000 |
| $10M-$100M | $50,000 |
| > $100M | $100,000 (cap) |
See TOKENOMICS.md for full economic model and vesting details.
- Python 3.11+
- Go 1.22+
- Foundry (forge, anvil)
# Clone repository
git clone https://github.com/bbiangul/Aegis-Network.git
cd aegis-network
# Install sentinel-brain
cd packages/sentinel-brain
pip install -e .
# Install sentinel-core dependencies
cd ../sentinel-core
forge install
# Build sentinel-node
cd ../sentinel-node
go build ./cmd/sentinel# Python tests (64 tests)
cd packages/sentinel-brain && pytest
# Solidity tests (130 tests)
cd packages/sentinel-core && forge test
# Go tests
cd packages/sentinel-node && go test ./...| Document | Description |
|---|---|
| ARCHITECTURE.md | System design and component details |
| TOKENOMICS.md | Full economic model with diagrams |
| DEPLOYMENT.md | Testnet/mainnet deployment guide |
| GAS_ECONOMICS.md | Who pays gas and when |
| CONTRIBUTING.md | How to contribute |
We welcome contributions from the community! Whether it's bug fixes, new features, documentation improvements, or security research - all contributions are appreciated.
Check out our CONTRIBUTING.md guide to get started. If you have questions, feel free to open a GitHub Discussion or reach out at biangulo43@gmail.com.
MIT License - See LICENSE for details.

