By the time you get into our journey, you will find out that Legend of Fantasy War (LFW) is not just any ordinary game, it contains its own ecosystem and the most unique concept of many different uni…
Binance Smart Chain
eip155:56
#13333f
LFW
18
By the time you get into our journey, you will find out that Legend of Fantasy War (LFW) is not just any ordinary game, it contains its own ecosystem and the most unique concept of many different universes within one world, we call it the Legendary Fantasy World.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xd71239a33c8542bd42130c1b4aca0673b4e4f48b";
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],
},
};