UKAN token is the first of its kind token, driven by the community that empowers a nation during an immense humanitarian crisis.
Ethereum
eip155:1
#0d6bcb
UKAN
18
UKAN token is the first of its kind token, driven by the community that empowers a nation during an immense humanitarian crisis. Nicknamed the SAVIOR, because we utilize blockchain technology for the better good, and bring a transparent project to the world that will help bootstrap the economy of Ukraine during and especially in the aftermath of the war.
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 = "0x49bc8340acd3521150d7ccd8a4a3510d2f5130ca";
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],
},
};