Modify texts

This commit is contained in:
dapplion 2019-08-11 19:30:31 +02:00
parent ae3662d114
commit a70a4e986b
3 changed files with 7 additions and 7 deletions

View File

@ -58,7 +58,7 @@ export default function Header() {
</Typography>
<Typography className={classes.subtitle}>
Experiment and test augmented token bonding curves
Experiment and test augmented bonding curves
</Typography>
<Typography className={classes.subsubtitle}>
A narrative showcase of <Link href={cadCadLink}>cadCAD</Link>

View File

@ -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={<ReferenceLabel text="Hatch sale price" />}
label={<ReferenceLabel text={p0LineText} />}
/>
<ReferenceLine
y={p1}
yAxisId="left"
stroke={theme.palette.primary.main}
// strokeDasharray="9 0"
label={<ReferenceLabel text="After hatch price" />}
label={<ReferenceLabel text={p1LineText} />}
/>
{/* Capital collected from withdraw fees - AREA */}

View File

@ -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"
}
};