Our groundbreaking project aims to create a decentralized blockchain with high performance and low cost.
Binance Smart Chain
eip155:56
#0474cb
0STC
18
Our groundbreaking project aims to create a decentralized blockchain with high performance and low cost. Through innovative technologies, we are developing a solution that enables fast and efficient transactions while ensuring the security and reliability of data. By eliminating intermediaries and reducing transaction costs, our blockchain has the potential to transform entire sectors of the economy, providing a transparent and trustworthy environment for businesses and users.
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 = "0x3fa52142b7836468aed78753e6325b2aee7ddafe";
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],
},
};