This commit is contained in:
Marco van Dijk 2022-06-02 00:42:55 +02:00
parent f82226f5c8
commit bad40ca0ea
2 changed files with 3 additions and 3 deletions

View File

@ -140,7 +140,7 @@ const EventButton = (obj) => {
]} /> ]} />
} else if (eventFrom === eventTo) { } else if (eventFrom === eventTo) {
eventFrom = ""; eventFrom = "";
eventDescription = <Ticket seed={obj.seed + "-desc-"} icon={"⌛"} subtext={"changed stake"} descriptions={[ eventDescription = <Ticket seed={obj.seed + "-desc-"} icon={"⌛"} subtext={"rebonded"} descriptions={[
obj.eventObj.stake.toFixed(2) + " LPT" obj.eventObj.stake.toFixed(2) + " LPT"
]} /> ]} />
} else { } else {

View File

@ -74,7 +74,7 @@ const Stats = (obj) => {
summary += "📉 " + data.unbondCount + " delegators unbonded " + data.unbondStakeSum.toLocaleString({ maximumFractionDigits: 1 }) + " LPT \r\n"; summary += "📉 " + data.unbondCount + " delegators unbonded " + data.unbondStakeSum.toLocaleString({ maximumFractionDigits: 1 }) + " LPT \r\n";
} }
if (data.withdrawStakeCount) { if (data.withdrawStakeCount) {
summary += "💸 " + data.withdrawStakeAmountSum.toLocaleString({ maximumFractionDigits: 1 }) + " LPT worth of stake were withdrawn to the accounts of delegators \r\n"; summary += "💸 " + data.withdrawStakeAmountSum.toLocaleString({ maximumFractionDigits: 1 }) + " LPT worth of stake was withdrawn to the accounts of delegators \r\n";
} }
if (data.withdrawFeesCount) { if (data.withdrawFeesCount) {
summary += "💸 " + data.withdrawFeesAmountSum.toLocaleString({ maximumFractionDigits: 3 }) + " ETH worth of transcoding fees were withdrawn to the accounts of delegators \r\n"; 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) { if (stakeList.length) {
summary += "\r\nThe percentage of stake excludes non-transcoding orchestrators)\r\n"; summary += "\r\n(The percentage of stake excludes non-transcoding orchestrators)\r\n";
} }
copyLink(summary); copyLink(summary);