Born from a passionate community, Sekuya is a groundbreaking gaming and entertainment company headquartered in Singapore & Indonesia.
Base
eip155:8453
#c7507b
SKYA
18
Born from a passionate community, Sekuya is a groundbreaking gaming and entertainment company headquartered in Singapore & Indonesia. With a mission to inspire dreams with passion, Sekuya blends cutting-edge Web3 technology, AI innovation, and world-class creative storytelling to deliver unique experiences in gaming, racing, and entertainment.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0x623cd3a3edf080057892aaf8d773bbb7a5c9b6e9";
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],
},
};