Formation Fi revolutionizes portfolio construction by introducing risk-adjusted portfolio of decentralized open financial crypto assets in the form of algorithmically rebasing indexes, with a high de…
Ethereum
eip155:1
#040404
FORM
18
Formation Fi revolutionizes portfolio construction by introducing risk-adjusted portfolio of decentralized open financial crypto assets in the form of algorithmically rebasing indexes, with a high degree of composability, across the major blockchain networks.
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 = "0x21381e026ad6d8266244f2a583b35f9e4413fa2a";
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],
},
};