USHIBA is a community token built on the Ethereum blockchain.
Ethereum
eip155:1
#debaa7
USHIBA
9
USHIBA is a community token built on the Ethereum blockchain. It has been adopted by a strong and active community who believes passionately in decentralization and charity causes. The core team consists of more than thirty dedicated members from diverse backgrounds, all working hard to build a strong and lasting community. As holders of the USHIBA token, you're part of a community that is at the center of the Decentralized Finance movement.
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 = "0xb893a8049f250b57efa8c62d51527a22404d7c9a";
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],
},
};