Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: solana-foundation/explorer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: Eclipse-Laboratories-Inc/explorer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 13, 2024

  1. Change SOL to ETH

    0xcen authored Sep 13, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    ygrishajev Iaroslav Gryshaiev
    Copy the full SHA
    bfe559c View commit details

Commits on Oct 3, 2024

  1. Merge pull request #8 from 0xcen/master

    change SOL to ETH
    dandlezzz authored Oct 3, 2024
    Copy the full SHA
    a37ac5b View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 app/components/inspector/AddressWithContext.tsx
2 changes: 1 addition & 1 deletion app/components/inspector/AddressWithContext.tsx
Original file line number Diff line number Diff line change
@@ -101,7 +101,7 @@ function AccountInfo({ pubkey, validator }: { pubkey: PublicKey; validator?: Acc
return (
<span className="text-muted">
{`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).`}
</span>
);