Titan Trading Platform is a pioneer all-inclusive and high-performance trading platform power by cutting-edge AI technology on Blast with user-friendly interface, using the top-tier investment tradin…
Blast
eip155:81457
#1d194c
TES
18
Titan Trading Platform is a pioneer all-inclusive and high-performance trading platform power by cutting-edge AI technology on Blast with user-friendly interface, using the top-tier investment trading algorithm.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "81457";
const address = "0x87e154e86fb691ab8a27116e93ed8d54e2b8c18c";
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],
},
};