ARCx is deployed and live! Stay tuned for the address and DEX listing!

Economic Equilibrium Simulation

import numpy as np
S_max = 100_000_000 S_t = 1_000_000 demand_growth_rate = 0.03 supply_growth_rate = 0.01 price_tolerance = 0.05
for t in range(1, 101): demand = S_t * (1 + demand_growth_rate)**t supply = S_t * (1 + supply_growth_rate)**t price = demand / supply if abs(price - 1) > price_tolerance: print(f"Adversarial deviation detected at t={t}")

Last updated