16200 Fullerton is a 15-unit apartment building that has undergone comprehensive renovations in 2019, and now is a stabilized, income-producing asset with vetted tenants.
Ethereum
eip155:1
#d6c5a1
REALTOKEN-16200-FULLERTON-AVE-DETROIT-MI
18
16200 Fullerton is a 15-unit apartment building that has undergone comprehensive renovations in 2019, and now is a stabilized, income-producing asset with vetted tenants.
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 = "0x22c8ecf727c23422f47093b562ec53c139805301";
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],
},
};