Modify texts
This commit is contained in:
parent
ae3662d114
commit
a70a4e986b
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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 */}
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue