DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO.
Ethereum
eip155:1
#040404
DEXE
18
DeXe Protocol is a decentralized suite of permissionless tools for managing assets, products, and communities governed by $DEXE holders within DeXe Protocol DAO. It offers a no-code environment on blockchain for launching DAOs, tokens, and fundraises; AI-powered automation for decision-making; on/off-chain in a seamless space; account abstraction acting as a DAO, multi-sig or single party with numerous features for managing assets and payouts, and(or) communities.
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 = "0xde4ee8057785a7e8e800db58f9784845a5c2cbd6";
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],
},
};