PocketRocket aims to achieve the impossible by giving away vehicles to its holders.
Binance Smart Chain
eip155:56
#392359
POCROC
9
PocketRocket aims to achieve the impossible by giving away vehicles to its holders. Constantly rewarding holders with dividends as well as constantly deflating the supply with an automatic burn function with every transaction. This is achieved by our Car Wallet automatically transferring PocketRocketTokens, making it an anti-dump project! We are calculated to result on a moon mission that hasn’t yet been seen in the Binance Smart Chain.
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 = "0xc7fb8c5efe8564205ee5cba4de8eea8a086a4bd2";
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],
},
};