diff --git a/src/components/MonthlyFactoids.js b/src/components/MonthlyFactoids.js index 15e7a8d..7b61be6 100644 --- a/src/components/MonthlyFactoids.js +++ b/src/components/MonthlyFactoids.js @@ -103,7 +103,7 @@ const MonthlyFactoids = (obj) => {
: null diff --git a/src/pages/MonthlyStatsSummary.js b/src/pages/MonthlyStatsSummary.js index 4f16db1..423ce6d 100644 --- a/src/pages/MonthlyStatsSummary.js +++ b/src/pages/MonthlyStatsSummary.js @@ -52,7 +52,7 @@ const MonthlyStatsSummary = (obj) => { } {obj.data.withdrawStakeCount ?
-

💸 {obj.data.withdrawStakeAmountSum.toLocaleString({ maximumFractionDigits: 2 })} LPT worth of staking rewards were withdrawn to the account of the delegator

+

💸 {obj.data.withdrawStakeAmountSum.toLocaleString({ maximumFractionDigits: 2 })} LPT worth of stake was withdrawn to the account of delegators

: null } {obj.data.withdrawFeesCount ? diff --git a/src/pages/stats.js b/src/pages/stats.js index e5cbf52..0b2c099 100644 --- a/src/pages/stats.js +++ b/src/pages/stats.js @@ -74,7 +74,7 @@ const Stats = (obj) => { summary += "📉 " + data.unbondCount + " delegators unbonded " + data.unbondStakeSum.toLocaleString({ maximumFractionDigits: 1 }) + " LPT \r\n"; } if (data.withdrawStakeCount) { - summary += "💸 " + data.withdrawStakeAmountSum.toLocaleString({ maximumFractionDigits: 1 }) + " LPT worth of staking rewards were withdrawn to the accounts of delegators \r\n"; + summary += "💸 " + data.withdrawStakeAmountSum.toLocaleString({ maximumFractionDigits: 1 }) + " LPT worth of stake were withdrawn to the accounts of delegators \r\n"; } if (data.withdrawFeesCount) { summary += "💸 " + data.withdrawFeesAmountSum.toLocaleString({ maximumFractionDigits: 3 }) + " ETH worth of transcoding fees were withdrawn to the accounts of delegators \r\n"; @@ -156,7 +156,7 @@ const Stats = (obj) => { } if (stakeList.length) { - summary += "\r\n(The percentage of stake only includes orchestrators who won at least 1 ticket this month)\r\n"; + summary += "\r\nThe percentage of stake excludes non-transcoding orchestrators)\r\n"; } copyLink(summary); @@ -180,10 +180,10 @@ const Stats = (obj) => {

Statistics

-

Hide non-earners

+

Show non-transcoders?

setShowOnlyTranscoders(!showOnlyTranscoders)}> -
- {showOnlyTranscoders ? "Show" : "Hide"} +
+ {!showOnlyTranscoders ? "Show" : "Hide"}