Staking and Rewards
Allows token holders to earn rewards securely.
Staking is a crucial aspect of the DÆTA ecosystem, providing network security and allowing token holders to earn rewards.
graph TD
    A[Token Holder] -->|Stakes Tokens| B(Staking Contract)
    B -->|Locks Tokens| C[Staking Pool]
    C -->|Generates Rewards| D[Reward Pool]
    D -->|Distributes Rewards| A
    B -->|Provides Voting Power| E[Governance]
    E -->|Influences| F[Protocol Decisions]
Staking Parameters
Value: 10000 DAETA.
Description: Minimum amount required to participate in staking.
Value: 7-365 days.
Description: Duration for which tokens are locked.
Value: 5-11% APY.
Description: Annual percentage yield for stakers.
Value: Varies.
Description: Penalties for malicious behavior.
def calculate_staking_reward(staked_amount, days_staked, network_usage):
    base_apy = 0.05  # 5% base APY
    duration_bonus = min(0.03, days_staked / 365 * 0.03)  # Up to 3% bonus for longer staking
    network_bonus = min(0.03, network_usage * 0.03)  # Up to 3% bonus based on network usage
    
    total_apy = base_apy + duration_bonus + network_bonus
    daily_rate = total_apy / 365
    
    reward = staked_amount * daily_rate * days_staked
    return reward
# Usage example
reward = calculate_staking_reward(10000, 180, 0.7)
print(f"Staking reward: {reward} DAETA tokens")
Token Distribution
The initial token distribution is designed to ensure a fair launch and sustainable growth of the DÆTA ecosystem.
$DAETA Token Initial Distribution
    "Uniswap Liquidity Pool" : 45
    "Node Operator Rewards" : 30
    "LVRG Farmer Rewards" : 15
    "Partnership, Market Making, Listing" : 5
    "Technology Ops" : 2.5
    "Contingency" : 2.5This comprehensive tokenomics model is designed to create a balanced and sustainable ecosystem that rewards participation, ensures network security and drives the long-term growth of the DÆTA platform.
Last updated