Utility and Economic Mechanism

Aligns incentives for users and node operators.

The DÆTA token is designed to create a self-sustaining ecosystem that aligns incentives across all network participants.

Token Flow Diagram
graph TD
    A[Users] -->|Pay for Storage| B(DÆTA Network)
    B -->|Reward| C[Node Operators]
    C -->|Stake Tokens| B
    B -->|Distribute Fees| D[Protocol Treasury]
    D -->|Fund Development| E[DÆTA Team]
    D -->|Provide Liquidity| F[DEX Pools]
    F -->|Enable Trading| A
    B -->|Governance Rewards| G[Token Holders]
    G -->|Vote on Proposals| B

Economic Mechanisms

Storage Payments Users pay in DÆTA tokens based on storage usage and duration. Example pricing model:
def calculate_storage_cost(size_gb, duration_months):
    base_rate = 0.1  # DAETA per GB per month
    volume_discount = max(0, min(0.5, (size_gb - 100) / 1000))
    duration_discount = max(0, min(0.3, (duration_months - 1) / 11))
    
    discounted_rate = base_rate * (1 - volume_discount) * (1 - duration_discount)
    total_cost = size_gb * duration_months * discounted_rate
    
    return total_cost

# Usage example
cost = calculate_storage_cost(500, 12)
print(f"Storage cost: {cost} DAETA tokens")

Last updated