Common Wealth is an early stage investment system for everyone - creating an all-access pass for retail investors to take control of their financial future.
Base
eip155:8453
#04fbbb
WLTH
18
Common Wealth is an early stage investment system for everyone - creating an all-access pass for retail investors to take control of their financial future. Common Wealth is disrupting, scaling and optimising the traditional venture capital investment model using Web3 principles and technology.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0x99b2b1a2adb02b38222adcd057783d7e5d1fcc7d";
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],
},
};