# Pyramid Configuration
# Revenue distribution rates.
rates:
tier1: 0.05 #(5%) Direct Upline Commission
tier2: 0.01 #(1%) Indirect (Tier 2) Commission
referral-bonus: 100.0 # One-time bonus for successful recruitment.
# Operation Mode:
# 'tax' = Commission is deducted from the recruit's income. (Deflationary)
# 'printer' = Commission is generated by the server. (Inflationary)
mode: tax
# Retention & Activity Settings
retention:
enabled: true
inactivity-days: 14 # Days before a player is removed from a downline
check-interval-hours: 24 # Frequency of retention checks
# Activity Requirement: Upline must be active to receive commissions
upline-activity-required: true
upline-activity-threshold-hours: 24 # Hours since last login required to receive payout
database:
type: sqlite # Options: sqlite, mysql
host: localhost
port: 3306
database: pyramid
username: root
password: ""
ssl: false
pool-name: "Pyramid-Capital-Pool"
max-pool-size: 10