Skip to content

Commit

Permalink
Change wording from "on Ethereum" to "on any EVM chain" throughout th…
Browse files Browse the repository at this point in the history
…e app
  • Loading branch information
portdeveloper committed Aug 29, 2024
1 parent 170630b commit 461e136
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ABI Ninja

Interact with any contract on Ethereum. ABI Ninja provides an intuitive frontend for contracts from most popular EVM networks, currently supporting:
Interact with any contract on any EVM chain. ABI Ninja provides an intuitive frontend for contracts from most popular EVM networks, currently supporting:

- **Verified contracts**. Pulls the code from [AnyABI](https://anyabi.xyz/) and [Etherscan API](https://docs.etherscan.io/) as a fallback option.
- **Unverified contracts**. Two different options are available:
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/components/MetaHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const MetaHeader = ({
address,
network,
title = "ABI Ninja",
description = "Interact with any contract on Ethereum",
description = "Interact with any contract on any EVM chain",
image = "thumbnail.png",
twitterCard = "summary_large_image",
children,
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const Home: NextPage = () => {
<div className="my-16 flex flex-col items-center justify-center">
<Image src="/logo_inv.svg" alt="logo" width={119} height={87} className="mb-4" />{" "}
<h2 className="mb-0 text-5xl font-bold">ABI Ninja</h2>
<p>Interact with any contract on Ethereum</p>
<p>Interact with any contract on any EVM chain</p>
<div className="mt-4" id="react-select-container">
<NetworksDropdown onChange={option => setNetwork(option ? option.value.toString() : "")} />
</div>
Expand Down

0 comments on commit 461e136

Please sign in to comment.