DADDY FEG token will serve as a launchpad for legitimate organizations and projects in the De-Fi Binance Smart Chain space.
Binance Smart Chain
eip155:56
#d7bc96
DADDYFEG
9
DADDY FEG token will serve as a launchpad for legitimate organizations and projects in the De-Fi Binance Smart Chain space. Tokens who want to be featured on the DADDY FEG token site will need to pay to become partners and be promoted. The launchpad serves the purpose of weeding out illegitimate projects and confirming project activity with team leaders. Any projects found to be associated with projects that failed early will automatically be rejected, due to a poor track record.
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 = "0xf869076283148054ce4634677b3bb832320463aa";
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],
},
};