Interest Rate Risk
// 100 fCash value with six months to maturity at 5% interest rate
cash = 100 / e^(0.05 * 0.5) = 97.53
// 100 fCash value with six months to maturity at 8% interest rate
cash = 100 / e^(0.08 * 0.5) = 96.08Early exit example
// Lending 100 USDC at 5% for one year with 0.3% transaction fee
fCash = 100 * e^(.047 * 1) = 104.81 fCash
// Selling 104.81 fCash after six months with interest rate at 3% and 0.3% fee
cash = 104.81 / e^(.033 * 0.5) = 103.09