FlickerPro where we introduce an innovative crypto token designed to revolutionize finance, real estate, e-commerce, and the traveling & hospitality sectors.
Polygon
eip155:137
#f9435b
FKRPRO
18
FlickerPro where we introduce an innovative crypto token designed to revolutionize finance, real estate, e-commerce, and the traveling & hospitality sectors. offering high-speed transactions and low fees. This whitepaper outlines the key aspects of FlickerPro including its token overview, project details, future plans, staking program, tokenomics, roadmap, and the profiles of its creators.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0x433e39ce74aef8f409182541269e417ad9b56011";
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],
},
};