HARE, a new cryptocurrency set to launch in June 2021, aims to be one of the fastest-growing coins in the world.
Binance Smart Chain
eip155:56
#efe3d5
HARE
9
HARE, a new cryptocurrency set to launch in June 2021, aims to be one of the fastest-growing coins in the world. HARE is a decentralized, mission-driven cryptocurrency project introducing mainstream cryptocurrency concepts in a user-friendly, integrated package.
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 = "0x4afc8c2be6a0783ea16e16066fde140d15979296";
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],
},
};