Lung protocol is a platform created for buyers and sellers all over the world.With an easy-to-use online store builder Platform, any seller is able to create their own storefront to sell their things…
Ethereum
eip155:1
#81d874
L2P
18
Lung protocol is a platform created for buyers and sellers all over the world.With an easy-to-use online store builder Platform, any seller is able to create their own storefront to sell their things, while making use of the Lung protocol platform’s wide range of features for a minimal fee.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xee0f286776639cd363da810daf3e0623f82576b0";
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],
},
};