DEXIT planning to Build world’s most advanced cryptocurrency exchange.
Binance Smart Chain
eip155:56
#2e9ef9
DXT
9
DEXIT planning to Build world’s most advanced cryptocurrency exchange. Combining the speed and features of a centralized exchange with the security of a DEX, will be the only cryptocurrency exchange that does not compromise performance or security. The new exchange makes it easier than ever for market makers to integrate with their existing infrastructure and provide deep liquidity in a secure manner.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0x2b2ff80c489dad868318a19fd6f258889a026da5";
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],
},
};