TAI
  • How does TAI work?
    • Overview
    • Supported Collaterals
    • Liquidations and Auctions
    • Tokenomics
    • Governance
      • Goverance Process
      • Governance Parameters
    • Rewards
    • Audits
  • TAI Protocol: In-depth
    • Contracts
      • System Contracts
        • Core Module
          • SAFE Engine
          • Liquidation Engine
          • Accounting Engine
        • Auction Module
          • Increasing Discount Collateral Auction House
          • Debt Auction House
          • Surplus Auction House
        • Oracle Module
          • Oracle Relayer
          • Medianizer
            • DSValue
            • Governance Led Median
            • Chainlink Median
          • FSM
            • Oracle Security Module
        • Token Module
          • Token Adapters
          • System Coin: TAI
          • Protocol Token: RATE
          • Protocol Token Authority
        • Money Market Module
          • Tax Collector
        • Sustainability Module
          • Stability Fee Treasury
          • FSM Wrapper
          • Increasing Treasury Reimbursement
          • Mandatory Fixed Treasury Reimbursement
        • Automation Module
          • Collateral Auction Throttler
          • Single Spot Debt Ceiling Setter
          • ESM Threshold Setter
        • Governance Module
          • DSPause
        • Shutdown Module
          • Global Settlement
          • ESM
      • Proxy Infrastructure
        • DSProxy
        • Proxy Registry
      • Helper Contracts
        • SAFE Manager
      • Contract Addresses
    • Data APIs
      • API Endpoints
Powered by GitBook
On this page
  1. How does TAI work?

Rewards

PreviousGovernance ParametersNextAudits

Last updated 1 year ago

78% of the RATE supply will be distributed to community through rewards. Rewards can be received by

  • Providing TAI/ETH Liquidity in the TAI App

    or

  • Minting TAI from any Safe

Users can receive both mint and liquidity rewards at the same time.

Community Rewards Allocation

Current allocations:

Rewards
Allocation of emitted rewards

TAI/ETH Liquidity

90%

MInt TAI

10%

The RATE amount distributed to LPers vs Minters will not remain constant and will be periodically re-evaluated.

Community Rewards Emission Schedule

RATE rewards emission is done on a hardcoded schedule from the .

Below is the reward schedule encoded in the contract, along with Team rewards vesting for comparison

The RATE rewards schedule is generated from this supply function.

import math
start = 780000 # 78%
c = 20
lam = 1/120

def starting_supply(month):
    # amount at begining of `month` month after launch
    return start * (c*math.e)**(lam * -month)

Using this supply function:

Time
% of rewards that have been distributed

1 year

32.94%

5 years

86.44%

10 years

98.16%

20 years

99.97%

Emitter contract
Total Rewards Schedule