This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import matplotlib.pyplot as plt | |
# Constants | |
total_stake = 24958 # TAO | |
voted_stake = 22626 # TAO (including the whale) | |
total_daily_return = 4.97 # TAO tokens | |
validator_earnings_per_day = total_daily_return * 0.09 # 9% of total daily return | |
whale_stake = 10018 # TAO | |
new_voted_stake = voted_stake - whale_stake # Voted stake after excluding the whale |