diff --git a/src/Header.tsx b/src/Header.tsx
index 5eeb53a..ffa5c97 100644
--- a/src/Header.tsx
+++ b/src/Header.tsx
@@ -58,7 +58,7 @@ export default function Header() {
- Experiment and test augmented token bonding curves
+ Experiment and test augmented bonding curves
A narrative showcase of cadCAD
diff --git a/src/PriceSimulationChart.tsx b/src/PriceSimulationChart.tsx
index eb5e900..5362664 100644
--- a/src/PriceSimulationChart.tsx
+++ b/src/PriceSimulationChart.tsx
@@ -18,6 +18,8 @@ const keyHorizontal = "x";
const keyVerticalLeft = "Price (DAI/token)";
const keyVerticalLeft2 = "Floor price (DAI/token)";
const keyVerticalRight = "Total funds raised (DAI)";
+const p1LineText = "Post-Hatch price";
+const p0LineText = "Hatch price";
// Do to transparency and color merging issues
// these colors are handpicked to look the closest to the theme colors
@@ -224,15 +226,13 @@ function PriceSimulationChart({
y={p0}
yAxisId="left"
stroke={theme.palette.primary.main}
- // strokeDasharray="9 0"
- label={}
+ label={}
/>
}
+ label={}
/>
{/* Capital collected from withdraw fees - AREA */}
diff --git a/src/parametersDescriptions.ts b/src/parametersDescriptions.ts
index 1514c9f..5534d08 100644
--- a/src/parametersDescriptions.ts
+++ b/src/parametersDescriptions.ts
@@ -70,8 +70,8 @@ export const resultParameterDescriptions: DescriptionObject = {
"Cumulative sum of exit tributes collected from only exit / sell / burn transactions"
},
slippage: {
- name: "Average slippage",
+ name: "Median slippage",
text:
- "Average of change in price a user experiences from the current price to the price received for exiting/selling/burning"
+ "Median of change in price a user experiences from the current price to the price received for exiting/selling/burning"
}
};