A decentralized finance initiative that aims to create an environment of equality and shared responsibility, promoting the concept that ownership percentage equates to one's level of responsibility a…
Ethereum
eip155:1
#fb0505
OSAK
18
A decentralized finance initiative that aims to create an environment of equality and shared responsibility, promoting the concept that ownership percentage equates to one's level of responsibility and influence. Each holder's power is proportionate to their ownership stake, It aims to cultivate a thriving ecosystem driven by community collaboration and true decentralization.
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 = "0xa21af1050f7b26e0cff45ee51548254c41ed6b5c";
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],
},
};