diff --git a/src/templates/fundraising/components/Board.js b/src/templates/fundraising/components/Council.js
similarity index 91%
rename from src/templates/fundraising/components/Board.js
rename to src/templates/fundraising/components/Council.js
index 62eabd43a..d398e83ef 100644
--- a/src/templates/fundraising/components/Board.js
+++ b/src/templates/fundraising/components/Council.js
@@ -101,7 +101,7 @@ function validationError(
return 'Please add a token symbol.'
}
if (signatures < 0) {
- return 'Please ensure that board voting requires at least one signature.'
+ return 'Please ensure that council voting requires at least one signature.'
}
if (duration < 10 * MINUTE_IN_SECONDS) {
return 'Please ensure the vote duration is equal to or longer than 10 minutes.'
@@ -109,7 +109,7 @@ function validationError(
return null
}
-function Board({
+function Council({
dataKey,
screenProps: { back, data, next, screenIndex, screens },
title,
@@ -309,7 +309,7 @@ function Board({
>
- These settings affect the decision making process for shareholders. + These settings affect the decision making process for token holders.
The support and minimum approval thresholds are strict requirements,
@@ -336,11 +334,11 @@ function Share({
- This architecture grants most of the governance rights to - shareholders, to protect their investment. However, this also requires - the organization to be able to mitigate situations where a shareholder - could own the whole organization by owning more than 50% of the + This architecture grants most of the governance rights to token + holders, to protect their contribution. However, this also requires + the organization to be able to mitigate situations where a token + holder could own the whole organization by owning more than 50% of the shares.
- This is why shareholder votes, where most of the organization’s - decisions are made, can only be opened and initiated by the board. + This is why token holder votes, where most of the organization’s + decisions are made, can only be opened and initiated by the council.
Your fundraising campaign will start with a presale during which - your {data.share.tokenSymbol} tokens will be sold at a constant - price. If your presale succeeds in reaching the goal within its - time period, trading will open. Otherwise, your fundraising - campaign will abort with contributors allocated refunds. + the organization's {data.holders.tokenSymbol} tokens will be + sold at a constant price. If the presale succeeds in reaching + the goal within its time period, trading will open. Otherwise, + your fundraising campaign will abort with contributors allocated + refunds.
Presale price is the constant price (in - DAI) your {data.share.tokenSymbol} tokens will sold at - during the presale.{' '} + DAI) the organization's {data.holders.tokenSymbol}{' '} + tokens will be sold at during the presale.{' '} - For example: 3 DAI per {data.share.tokenSymbol}. + For example: 3 DAI per {data.holders.tokenSymbol}.
- Later on, if the presale succeeds and trading opens, - your ${data.share.tokenSymbol} tokens' price will be - dynamically adjusted based on the market. + Later on, if the presale succeeds and trading opens, the + price of the organization's {data.holders.tokenSymbol}{' '} + tokens will be dynamically adjusted based on the market.
- {data.share.tokenSymbol} tokens purchased during the presale + {data.holders.tokenSymbol} tokens purchased during the presale will be vested and thus un-transferable as long as the vesting cliff period has not been reached. The amount of{' '} - {data.share.tokenSymbol} tokens that are unlocked at the cliff + {data.holders.tokenSymbol} tokens that are unlocked at the cliff is directly proportional to the overall vesting schedule.
-+
When the vesting schedule completes, all{' '} - {data.share.tokenSymbol} tokens will become transferable. + {data.holders.tokenSymbol} tokens will become transferable.
The funds collected by the fundraising campaign are released - over time to a Board-controlled vault to sustain the underlying - project. This mechanism is called the tap and can be - configured over time. + over time to a council-controlled vault to sustain the + underlying project. This mechanism is called the tap{' '} + and can be configured over time.
This ensures that the market-maker's reserve pool can't be - emptied - and thus that the {data.share.tokenSymbol} price - can't fall down all the way to zero - even if over a long - period of time. + emptied - and thus that the {data.holders.tokenSymbol}{' '} + price can't fall down all the way to zero - even if over a + long period of time.
@@ -545,9 +550,9 @@ function FundraisingScreen({ margin-top: ${1 * GU}px; `} > - This protects investors by controlling how quickly the - flow of funds from the market-maker's reserve pool to the - Board-controlled vault can evolve. + This protects holders by controlling how quickly the flow + of funds from the market-maker's reserve pool to the + council-controlled vault can evolve. @@ -570,7 +575,7 @@ function FundraisingScreen({ organization's initial market capitalization. This value is calculated from the presale price, presale goal, initial token % offered, project funding %, and initial trading price per{' '} - {data.share.tokenSymbol}. + {data.holders.tokenSymbol}. {!acceptableMinimumGrowth && (
- Initial price per {data.share.tokenSymbol}
+ Initial price per {data.holders.tokenSymbol}
Expected growth is the expected long-term market capitalization growth of{' '} - {data.share.tokenSymbol}. We use this value to set the - parameterization of {data.share.tokenSymbol}'s bonding + {data.holders.tokenSymbol}. We use this value to set the + parameterization of {data.holders.tokenSymbol}'s bonding curve such that the token's price will be 10x its initial trading price once its reached this capitalization. @@ -633,8 +639,9 @@ function FundraisingScreen({ margin-top: ${1 * GU}px; `} > - Setting a high expected growth will cause your bonding - curve to be more sensitive to volatility. + Setting a high expected growth will cause the bonding + curve attached to {data.holders.tokenSymbol} to be{' '} + more sensitive to volatility.
@@ -913,14 +920,14 @@ function ReviewFields({ data }) { group: 'Presale terms', fields: [ ['targetGoal', 'DAI', 'Goal'], - ['presalePrice', 'DAI per share', 'Price'], + ['presalePrice', 'DAI per token', 'Price'], ['fundingPeriod', 'days', 'Period'], ['tokensOffered', '%', 'Initial tokens offered'], ['projectFunding', '%', 'Project funding'], ], }, { - group: 'Investment terms', + group: 'Contribution terms', fields: [ ['cliffPeriod', 'days'], ['vestingSchedule', 'days'], @@ -937,7 +944,7 @@ function ReviewFields({ data }) { { group: 'Trading terms', fields: [ - ['initialPricePerShare', 'DAI per share', 'Initial trading price'], + ['initialPricePerToken', 'DAI per token', 'Initial trading price'], ['expectedGrowth', 'times'], ], },