From 1edec8e2222d11600a32c178e858b8ab4ab85345 Mon Sep 17 00:00:00 2001 From: Benjamin Wilson Date: Sat, 1 Feb 2025 15:32:20 -0500 Subject: [PATCH] hash suffix --- src/app/pipes/hash-suffix.pipe.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pipes/hash-suffix.pipe.ts b/src/app/pipes/hash-suffix.pipe.ts index f6a57cf..e77bce5 100644 --- a/src/app/pipes/hash-suffix.pipe.ts +++ b/src/app/pipes/hash-suffix.pipe.ts @@ -17,7 +17,7 @@ export class HashSuffixPipe implements PipeTransform { return '0'; } - const suffixes = [' H/s', ' KH/s', ' MH/s', ' GH/s', ' TH/s', ' PH/s', ' EH/s']; + const suffixes = [' H/s', ' KH/s', ' MH/s', ' GH/s', ' TH/s', ' PH/s', ' EH/s', ' ZH/s', ' YH/s', ' RH/s', ' QH/s']; let power = Math.floor(Math.log10(value) / 3); if (power < 0) {