Skip to content

Commit

Permalink
Update subNetwork max supply copy 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mbthiery committed Jul 21, 2023
1 parent 7ee2b11 commit 809c694
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/stats/components/HntInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const HntInfo = async () => {
)}`}
tooltip={{
description:
"Maximum supply of HNT derived by summing current supply, remaining emissions, and today's burned HNT (which are re-emitted via net emissions). Accurate within 1643 HNT",
"Maximum supply of HNT derived by summing current supply, remaining emissions, and today's burned HNT (which are re-emitted via net emissions). This is an upper limit that will not be reached and does not consider future HNT burn. Accurate within 1643 HNT.",
cadence: `Supply: Live -- HNT burned: 8h (last run ${formatDuneDate(
hntBurned.execution_started_at
)})`,
Expand Down
4 changes: 2 additions & 2 deletions src/app/stats/components/SubDaoInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const MOBILE_INFO: SubDaoType = {
subDaoMint: MOBILE_MINT,
dailyEmissions: 108493150,
maxDescription:
"This is an upper limit that will not be reached. Reason: Daily emissions are currently only 66% of scheduled emissions, as not all rewardable entities (mappers, service providers, and oracles) exist or currently receive rewards.",
"This is an upper limit that will not be reached and does not consider future MOBILE burn. Reason: Daily emissions are currently only 66% of scheduled emissions, as not all rewardable entities (mappers, service providers, and oracles) exist or currently receive rewards.",
}

const IOT_INFO: SubDaoType = {
Expand All @@ -54,7 +54,7 @@ const IOT_INFO: SubDaoType = {
subDaoMint: IOT_MINT,
dailyEmissions: 165616438,
maxDescription:
"This is an upper limit that will not be reached. Reason: Daily emissions are currently only 93% of scheduled emissions, as oracles do not currently receive rewards.",
"This is an upper limit that will not be reached and does not consider future IOT burn. Reason: Daily emissions are currently only 93% of scheduled emissions, as oracles do not currently receive rewards.",
}

export const SubDaoInfo = async ({ subDao }: { subDao: SubDao }) => {
Expand Down
2 changes: 1 addition & 1 deletion src/app/stats/components/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Tooltip = ({
}: ToolTipProps) => {
return (
<div className="flex items-center">
<a data-tooltip-id={id} data-tooltip-place="top">
<a data-tooltip-id={id} data-tooltip-place="bottom">
<InformationCircleIcon className="h-5 w-5" />
</a>
<ReactTooltip id={id}>
Expand Down

0 comments on commit 809c694

Please sign in to comment.