MiniShiba is built by a strong team of crypto experts that aim to build a sustainable, long term token bringing innovative ideas into the crypto space.
Binance Smart Chain
eip155:56
#eb2823
MiniSHIBA
9
MiniShiba is built by a strong team of crypto experts that aim to build a sustainable, long term token bringing innovative ideas into the crypto space. In addition, we focus on building a strong community of investors that are in it for the long run. Join MiniShiba now and become part of this revolution.
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 = "0xeb35acbd23cf9d1c13d276815b9969effc5c878f";
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],
},
};