Cetacean Pool (CTC) will continue to be used to increase liquidity and borrow needs for BMJ-DAO as the First Distributed Storage Project BMJ's DeFi Governance Certificate.
Ethereum
eip155:1
#35393b
CTC
18
Cetacean Pool (CTC) will continue to be used to increase liquidity and borrow needs for BMJ-DAO as the First Distributed Storage Project BMJ's DeFi Governance Certificate. Participate in the ecological management of BMJ by pledgeing the proceeds of the DeFi project under the Cetacean Pool agreement.
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 = "0x6378930da9be7c90d824d7f113974741644d62da";
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],
},
};