Small Dogecoin is a revolutionary experiment initiated by the decentralised community in an attempt to connect the centralised and decentralised worlds so that they are no longer isolated from each o…
Ethereum
eip155:1
#eba57a
SDOG
18
Small Dogecoin is a revolutionary experiment initiated by the decentralised community in an attempt to connect the centralised and decentralised worlds so that they are no longer isolated from each other. through its token SDOG, the Small Dogecoin community hopes to achieve harmony between CEX and DEX. the Small Dogecoin community is at the heart of the project and all decisions are made by The community decides, we are like a doghole tunnel in the universe connecting two suspended planets
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 = "0x537edd52ebcb9f48ff2f8a28c51fcdb9d6a6e0d4";
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],
},
};