From bfe559cf8de763198c5e3833c749694738cb227a Mon Sep 17 00:00:00 2001 From: Carlos <75177443+0xcen@users.noreply.github.com> Date: Fri, 13 Sep 2024 11:46:23 +0200 Subject: [PATCH] Change SOL to ETH --- app/components/inspector/AddressWithContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/inspector/AddressWithContext.tsx b/app/components/inspector/AddressWithContext.tsx index c25ba3dd..699371f5 100755 --- a/app/components/inspector/AddressWithContext.tsx +++ b/app/components/inspector/AddressWithContext.tsx @@ -101,7 +101,7 @@ function AccountInfo({ pubkey, validator }: { pubkey: PublicKey; validator?: Acc return ( {`Owned by ${ownerLabel || ownerAddress}.`} - {` Balance is ${lamportsToSolString(account.lamports)} SOL.`} + {` Balance is ${lamportsToSolString(account.lamports)} ETH.`} {account.space !== undefined && ` Size is ${new Intl.NumberFormat('en-US').format(account.space)} byte(s).`} );