MVP Chain is an Optimism-style Layer 2 blockchain that enables instant, low-cost stablecoin transactions.
World Chain
eip155:480
#d6b241
MVP
18
MVP Chain is an Optimism-style Layer 2 blockchain that enables instant, low-cost stablecoin transactions. Bridge your existing stablecoins from Ethereum mainnet and experience the future of payments.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "480";
const address = "0x9a60565f305f8863ba48fe642fb55c81f0b3680d";
const frontmatter = await xmatter.getFrontmatter(chainId, address);
return (
<div>
<XmatterIcon
client={xmatter}
chainId={chainId}
address={address}
width={64} height={64}
alt={`${frontmatter.name} Icon`}
fallback={<div className="size-[64px] rounded-full bg-[#aaa]" />}
/>
<h1>{frontmatter.name}</h1>
<p>{frontmatter.symbol}: {frontmatter.decimals} decimals</p>
</div>
);
}import { RemotePattern } from "xmatter/next";
const nextConfig = {
images: {
remotePatterns: [RemotePattern],
},
};