YFFC is active now with the currently products what are launching like STAKE, FARM, GOVERNANCE, and other products are coming.
Ethereum
eip155:1
#095674
YFFC
18
YFFC is active now with the currently products what are launching like STAKE, FARM, GOVERNANCE, and other products are coming. With GOVERNANCE, YFFC will be a community-governed Automated Market Maker, focused on safety and value capture for the robust community of YFFC hodlers. The YFFC platform is packed with unique features aimed at addressing the pain points faced by DEFI of our time
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xea004e8fa3701b8e58e41b78d50996e0f7176cbd";
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],
},
};