Fry.world is a yield optimization project with unique baskets(vaults) where $FRIES holders will share in all profits accrued on the platform.
Binance Smart Chain
eip155:56
#fbca23
FRIES
18
Fry.world is a yield optimization project with unique baskets(vaults) where $FRIES holders will share in all profits accrued on the platform. $FRIES token holders will also the ability to earn Ketchup ($KHP) as the governance token of the platform. The $FRIES token is currently being distributed via farming pools on fry.world
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 = "0x393b312c01048b3ed2720bf1b090084c09e408a1";
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],
},
};