The xHunter is a community driven platform that aims to bridge the gap between blockchain and the outdoors.
Binance Smart Chain
eip155:56
#0b2c04
XHT
9
The xHunter is a community driven platform that aims to bridge the gap between blockchain and the outdoors. Our goal is to be the gateway for all outdoor enthusiasts into the crypto world. This will be made possible through outdoor events, adventure store and our very own NFT game.
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 = "0x487e464ed2f07306d5d0add219c7e13d3be9d867";
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],
},
};