Telos is known for its high-performance and low-fee execution environments, particularly TelosEVM.
Binance Smart Chain
eip155:56
#fbfbfc
TLOS
18
Telos is known for its high-performance and low-fee execution environments, particularly TelosEVM. The project is advancing zero-knowledge (ZK) technology with the upcoming SNARKtor protocol and hardware-accelerated zkEVM, enhancing scalability and confidentiality for wider adoption.
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 = "0x193f4a4a6ea24102f49b931deeeb931f6e32405d";
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],
},
};