From 1dfb8552f5f73a9c966ff754b62e214a7269afd6 Mon Sep 17 00:00:00 2001 From: dapplion Date: Sun, 11 Aug 2019 19:46:39 +0200 Subject: [PATCH] Modify descriptions --- src/SupplyVsDemandChart.tsx | 4 ++-- src/parametersDescriptions.ts | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/SupplyVsDemandChart.tsx b/src/SupplyVsDemandChart.tsx index f37552e..32b2e47 100644 --- a/src/SupplyVsDemandChart.tsx +++ b/src/SupplyVsDemandChart.tsx @@ -17,7 +17,7 @@ import { useTheme } from "@material-ui/styles"; const isAnimationActive = false; const keyHorizontal = "x"; -const keyVertical = "Supply (tokens) / Reserve (DAI)"; +const keyVertical = "Supply (tokens) / Collateral (DAI)"; const useStyles = makeStyles((theme: Theme) => createStyles({ @@ -117,7 +117,7 @@ function SupplyVsDemandChart({ const price = getPriceR({ R: reserve, V0, k }); const toolTipData: string[][] = [ ["Supply", formatter(supply) + unit, "tokens"], - ["Reserve", formatter(reserve) + unit, "DAI"], + ["Collateral", formatter(reserve) + unit, "DAI"], ["Price", price.toFixed(2), "DAI/token"] ]; return ( diff --git a/src/parametersDescriptions.ts b/src/parametersDescriptions.ts index 5534d08..e10b162 100644 --- a/src/parametersDescriptions.ts +++ b/src/parametersDescriptions.ts @@ -4,7 +4,7 @@ export interface DescriptionObject { export const parameterDescriptions: DescriptionObject = { theta: { - name: "Hatch % to funding pool", + name: "Hatch Raise % to funding pool", text: "The percentage of the funds raised in the Hatch going directly to funding pool to be used to support the Commons, the rest goes to the collateral pool" }, @@ -28,13 +28,13 @@ export const parameterDescriptions: DescriptionObject = { "Tokens that are purchased during the Hatch are locked for 9 weeks and then released slowly such that 50% of the tokens will be able to be sold after this many weeks and 87.5% of the tokens after 3x this many weeks" }, d0: { - name: "Initial raise", + name: "Hatch Raise", text: "Amount of funds contributed during the hatch period" } }; export const supplyVsDemandChartDescription = - "Visualization of the bonding curve up to 4x the initial size of the Collateral Pool Post-Hatch. This result is deterministic given the curve parameters and the initial raise. It will never change regardless of the campaign's performance, it simply shows how the price will react to changes in the Collateral Pool."; + "Visualization of the bonding curve up to 4x the initial size of the Collateral Pool Post-Hatch. This result is deterministic given the curve parameters and the Hatch raise. It will never change regardless of the campaign's performance, it simply shows how the price will react to changes in the Collateral Pool."; export const simulationChartDescription = "This chart shows a 52 week simulation of discrete transactions interacting with the Augmented Bonding Curve. Each transaction adds to or subtracts reserve from the system, modifying the price over time. The frequency, size and direction of each transaction is computed from a set of bounded random functions. This is a NOT a cadCAD simulation, but it showcases the intention behind cadCAD."; @@ -61,7 +61,7 @@ export const resultParameterDescriptions: DescriptionObject = { text: "Total DAI in the collateral pool at the end of the simulated period" }, initialHatchFunds: { - name: "Funds generated from initial Hatch", + name: "Funds generated from Raise Hatch", text: "Funds raised during the Hatch that go directly to the cause" }, exitTributes: {