GBankAPY Auto-Staking and Compounding feature provides the ultimate ease of use for GBK holders with APY up to 953,456% and Rewards holders every 3 Seconds / 28,800 Times Daily!
Binance Smart Chain
eip155:56
#8145f0
GBK
8
GBankAPY Auto-Staking and Compounding feature provides the ultimate ease of use for GBK holders with APY up to 953,456% and Rewards holders every 3 Seconds / 28,800 Times Daily! By simply buying and holding GBK tokens in your wallet, you’ll earn GBK rewards as interest payments directly into your wallet. Your amount of GBK reward tokens will increase every 3 seconds.
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 = "0xda0638ea374c4c5bf2914e6f4d5b2335deb8d80d";
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],
},
};