dynETHc gives users exposure to Ethereum using long only strategies managed by the Dynamic Asset Manager with less fees & expenses.
Ethereum
eip155:1
#969595
dynETHc
18
dynETHc gives users exposure to Ethereum using long only strategies managed by the Dynamic Asset Manager with less fees & expenses. dynETHc tokens can then be used as collateral on 3rd party protocols. Powered by SingularityDAO.ai.
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 = "0xbbbfa5d0bfd30b9ebce64b06e3e9fc85e7f0f396";
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],
},
};