Skip to content

Commit

Permalink
Add new tooltip for CRT v1
Browse files Browse the repository at this point in the history
  • Loading branch information
WRadoslaw committed Dec 7, 2023
1 parent 53eac48 commit 899df43
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ export const getTokenDetails = (token: FullCreatorTokenFragment) => {
caption: 'TOTAL REV.',
content: +token.totalSupply,
icon: <JoyTokenIcon size={16} variant="silver" />,
tooltipText:
'This is the total amount of revenue that the channel made from the time it was created. This information can be useful to determine if the creator had high or low income from their content in the past.',
tooltipText: 'Total revenue this channel made from DAO earnings, NFT sales and Royalties.',
withDenomination: true,
})

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,9 @@ export const TokenIssuanceStep = ({
label="Token assurances"
description="Add cliff & vesting for your own tokens to make your followers feel more secure when investing in your channel."
tooltip={{
text: "These parameters are set up to restrict your ability to sell your own tokens over time. There's a benefit of extra security in locking the portion of your tokens, which acts as a safety net in case your account gets compromised. Additionally, restricting token sales allows all holders to minimise the manipulation of token price by the biggest token owner, which will be yourself at start, and block the infamous pump and dump tactics. ",
text:
'Different options presented below correspond to different level of token safety projected to your potential buyers. ' +
'For example choosing risky option does not signal to your buyers that they are safe from the pump and dump scenario, while secure and safe options signal a safer token purchasing option. ',
}}
>
<Controller
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,20 +99,24 @@ export const TokenSummaryStep = ({ setPrimaryButtonProps, form, onSuccess }: Tok
</Text>
<SectionRow
title="Name"
tooltipText="3 letter name for your token, to be displayed on your token page, all tokens marketplace and in your buyer's portfolio."
tooltipText="Short name of your token, how it will be displayed in portfolio and marketplace."
>
<Text variant="h300" as="p" color="colorTextStrong">
${form.name}
</Text>
</SectionRow>
<SectionRow title="Access" tooltipText="Define if everyone can buy your token or only selected memebers.">
<SectionRow
title="Access"
tooltipText="Token can be accessed and purchased by any member, or strictly limited to members added to your token whitelist."
>
<Text variant="h300" as="p" color="colorTextStrong">
{form.isOpen ? 'Anyone' : 'Invite only'}
</Text>
</SectionRow>
<SectionRow
title="Revenue share with holders"
tooltipText="Define % of your channel revenue that you will keep and how much your token holders will earn. "
tooltipText="The % ratio of how much channel revenue gets distributed among all token holders vs the % ratio of what get's transferred to channel owners (yours) account when the revenue share is initiated.
Annual creator reward Annual creator reward aka patronage, that is earned by channel owner for managing channel.Tokens issued in your walletTotal number of tokens issuedCliffPeriod of time during which no tokens can be issued. After the cliff has passed, initial allocation happens.Vesting periodPeriod of time after cliff during which all your tokens become vested, meaning that they can be spent or transferred.First payotAmount of tokens that become transferable, after the clif and before the vesting period starts."
>
<RowBox gap={2}>
<RowBox gap={1}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,14 @@ export const StartRevenueShare = ({ token, onClose, show }: StartRevenueSharePro
name="endDate"
control={control}
render={({ field: { onChange, value }, fieldState: { error } }) => (
<FormField error={error?.message} disableErrorAnimation label="Ends">
<FormField
error={error?.message}
disableErrorAnimation
label="Ends"
tooltip={{
text: 'Revenue share has limited duration and needs to be closed after the ending date ends. It is after closing the revenue share, all tokens staked during the revenue share can be recovered.',
}}
>
<OuterBox>
<InnerBox>
<AuctionDatePicker
Expand Down

0 comments on commit 899df43

Please sign in to comment.