The Real Estate Crypto Token (REAL ESTATE) aims to revolutionize the real estate market by combining blockchain technology with gamification, decentralized finance (DeFi), and accessibility.
Binance Smart Chain
eip155:56
#086064
REALESTATE
18
The Real Estate Crypto Token (REAL ESTATE) aims to revolutionize the real estate market by combining blockchain technology with gamification, decentralized finance (DeFi), and accessibility. This token opens doors for small investors, gamifies real estate market participation, and provides unique opportunities to earn, trade, and stake. With REAL ESTATE, investors can access the profits of real property without the high entry costs traditionally associated with real estate
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 = "0x32477cf0e324f9a9cb49e8803fa4de9f80f8d0d4";
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],
},
};