BIGH BULL is a unique portal containing services & advanced tools for traders.
Binance Smart Chain
eip155:56
BIGB
18
BIGH BULL is a unique portal containing services & advanced tools for traders. It is the portal that has low transaction fees & a low-cost DMAT account opening than other portals. All types of market alerts are available through BIGHBULL. Our Copy & BOT Trading features enable you to take easy & quick actions. New traders or users can get to know easily about the trading
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 = "0x64b55bb2f27c3710349d9ca024d0d1ff2dab7f62";
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],
},
};