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>
<Typography className={classes.subtitle}> <Typography className={classes.subtitle}>
Experiment and test augmented token bonding curves Experiment and test augmented bonding curves
</Typography> </Typography>
<Typography className={classes.subsubtitle}> <Typography className={classes.subsubtitle}>
A narrative showcase of <Link href={cadCadLink}>cadCAD</Link> A narrative showcase of <Link href={cadCadLink}>cadCAD</Link>

View File

@ -18,6 +18,8 @@ const keyHorizontal = "x";
const keyVerticalLeft = "Price (DAI/token)"; const keyVerticalLeft = "Price (DAI/token)";
const keyVerticalLeft2 = "Floor price (DAI/token)"; const keyVerticalLeft2 = "Floor price (DAI/token)";
const keyVerticalRight = "Total funds raised (DAI)"; const keyVerticalRight = "Total funds raised (DAI)";
const p1LineText = "Post-Hatch price";
const p0LineText = "Hatch price";
// Do to transparency and color merging issues // Do to transparency and color merging issues
// these colors are handpicked to look the closest to the theme colors // these colors are handpicked to look the closest to the theme colors
@ -224,15 +226,13 @@ function PriceSimulationChart({
y={p0} y={p0}
yAxisId="left" yAxisId="left"
stroke={theme.palette.primary.main} stroke={theme.palette.primary.main}
// strokeDasharray="9 0" label={<ReferenceLabel text={p0LineText} />}
label={<ReferenceLabel text="Hatch sale price" />}
/> />
<ReferenceLine <ReferenceLine
y={p1} y={p1}
yAxisId="left" yAxisId="left"
stroke={theme.palette.primary.main} stroke={theme.palette.primary.main}
// strokeDasharray="9 0" label={<ReferenceLabel text={p1LineText} />}
label={<ReferenceLabel text="After hatch price" />}
/> />
{/* Capital collected from withdraw fees - AREA */} {/* 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" "Cumulative sum of exit tributes collected from only exit / sell / burn transactions"
}, },
slippage: { slippage: {
name: "Average slippage", name: "Median slippage",
text: 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"
} }
}; };