FQS is a hyper deflationary token created and thought by holders, it work as an independent liquidity generation protocol and Frictionless autonomous yield farming together with manual buyback featur…
Binance Smart Chain
eip155:56
#f72d72
FQS
9
FQS is a hyper deflationary token created and thought by holders, it work as an independent liquidity generation protocol and Frictionless autonomous yield farming together with manual buyback features.FQS Holders benefit through static reward and also Through the Buy-Back strategy built into the contract.All You need to do is hold FQS.
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 = "0x9075055c3ee590ee0d7a2e1ef4376a851369e8e0";
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],
},
};