STEPD is a fantastic project for those who want to strengthen the friendship with their pet and earn money in a meaningful way while walking.
Binance Smart Chain
eip155:56
#4dacda
$STEPD
9
STEPD is a fantastic project for those who want to strengthen the friendship with their pet and earn money in a meaningful way while walking. We are the first Move-To-Earn project that has a close relationship with pets.
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 = "0x2582d7afc1bf4496bcb87b6c2a72d24db279dd0e";
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],
},
};