Feeder Finance is a DeFi aggregator for diversified yield generation on Binance Smart Chain (“BSC”).
Binance Smart Chain
eip155:56
#141c2c
FEED
18
Feeder Finance is a DeFi aggregator for diversified yield generation on Binance Smart Chain (“BSC”). Feeder aims to allow investors to feed capital into lending protocols, liquidity pools, vaults, and other DeFi products in an automated and diversified process — A single deposit with macro exposure.
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 = "0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493";
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],
},
};