This file contains hidden or 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
| # Update starting burn to 5 million DOT/year | |
| initial_coretime_demand_5m = 5e6 # 5 million DOT/year | |
| # Recalculate coretime burn with 60% growth from 5M start | |
| coretime_burn_5m = initial_coretime_demand_5m * np.exp(faster_growth_rate * (short_years_updated - 2024)) | |
| burn_interp_5m = interp1d(short_years_updated, coretime_burn_5m, kind='linear') | |
| fine_burn_5m = burn_interp_5m(fine_years_updated) | |
| fine_net_inflation_5m = fine_inflation_updated - fine_burn_5m | |
| # Find precise tipping point with 5M starting burn |
OlderNewer