TechTrees Coin is a web 3.0 public welfare organization in response to Elon Musk‘s vision for low carbon emissions and sustainable development, with incorporated offices, experience of numerous field…
Binance Smart Chain
eip155:56
#040f33
TTC
18
TechTrees Coin is a web 3.0 public welfare organization in response to Elon Musk‘s vision for low carbon emissions and sustainable development, with incorporated offices, experience of numerous field research and public service activities from Asia to Europe to Latin America. Our mission is to work towards global carbon neutrality and create a respect, brighter world. As Elon Musk says ’Don't build moats, build tech trees.
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 = "0x6a684b3578f5b07c0aa02fafc33ed248ae0c2db2";
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],
},
};