YFDAI is a community centric, innovative DeFi project developed by the people, for the people.
Ethereum
eip155:1
#e6e6e6
Yf-DAI
18
YFDAI is a community centric, innovative DeFi project developed by the people, for the people. The decisions and actions of YFDAI will be made by its members and community to ensure equity and fairness for all. YFDAI is a new form of governance system where innovation, entrepreneurship, and technological advancement is the priority and the goal is delivering a much needed utility focus to DeFi.
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 = "0xf4cd3d3fda8d7fd6c5a500203e38640a70bf9577";
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],
},
};