Goldfinch (GFI) is bringing large, institutional private credit managers onchain.
Base
eip155:8453
#504160
GFI
18
Goldfinch (GFI) is bringing large, institutional private credit managers onchain. Goldfinch's flagship product, Goldfinch Prime, enables exposure to private credit funds like Ares, Apollo, KKR and more who collectively manage over $1T of private credit assets. Through the power of stablecoins, Goldfinch expands access to these funds to nearly anyone in the world, at low cost. Goldfinch focuses on providing yields generated by real-world economic activity (mostly from US companies), thus offering a more stable alternative to the often volatile DeFi space.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xb78e7d4c5d47af92942321ed40419dab0e573810";
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],
},
};