Dali has three projects.
Binance Smart Chain
eip155:56
#ec3c4c
DALI
9
Dali has three projects. DaliNFT, DaliSwap and DaliGames. First one is DaliNFT. DaliNFT is the next generation NFT Marketplace to facilitate working with NFTs. It helps change the artworks to on-chain artworks, injecting new value to classical artworks. DaliNFT also connects celebrities and their fans in a special project, where celebrities present their NFTs to millions of fans in a user-friendly environment, and fans can have mementos of their favorite celebrities.
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 = "0x5a119762b09ed0bcb3b16075159ae43a62651383";
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],
},
};