Points Program Business Rules

Overview

The Points Program is designed to reward users for their participation in the Silo Finance protocol. Points are awarded for supplying assets and borrowing, with different multipliers applied based on various factors.

Core Point Calculation Rules

Base Points

Multiplier System

Before February 21, 2025

After February 21, 2025

Points Calculation Components

Market has a token A and B

  1. Supply Points

       baseSupplyPoint * depositMultiplier * SuppliedAmountUSD
  2. Non-borrowable Supply Points

       if bBorrowedAmountUSD > 0:
          baseSupplyPoint * depositMultiplierA * aSuppliedAmountUSD
       else:
          0
    //Users borrowing small amounts against non-borrowable deposits will have their points slashed. Please make sure you maintain a legitimate borrowing position.

    Token B

       if aBorrowedAmountUSD > 0:
          baseSupplyPoint * depositMultiplierB * bSuppliedAmountUSD
       else:
          0
     //Users borrowing small amounts against non-borrowable deposits will have their points slashed. Please make sure you maintain a legitimate borrowing position.
  3. Borrow Points

    baseBorrowPoint * borrowMultiplier * borrowedAmountUSD

Distribution Rules

  1. Timing
  2. Eligibility
  3. Blacklist System

Pool and Token Configuration

  1. Pool Structure
  2. Multiplier Configuration

Data Processing

  1. Position Snapshots
  2. Updates and Modifications

Technical Implementation

  1. Data Sources
  2. Processing Pipeline
  3. Error Handling
  4. Configuration Management