Decentralization is great for democratizing finance, but along with it comes massive fragmentation of the user experience.
Binance Smart Chain
eip155:56
#040404
LNR
9
Decentralization is great for democratizing finance, but along with it comes massive fragmentation of the user experience. Lunar believes it is time to re-centralize DeFi around the most important part of the network: The user. This begins with their DeFi application, Lunar, that aims to streamline the entire process of crypto and NFT trading into one intuitive interface". Lunar replaces the 10+ seperate tools needed to trade and research crypto with a single platform that gives users near-instant access to the functionality they need.
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 = "0x9d4451151a8de5b545a1bc6c8fdeb9d94a2868e1";
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],
},
};