LordToken’s ambition is to fill this gap, by granting access to anyone, regardless of his level of expertise, to a comprehensive set of tools while relying on premium customer service.
Binance Smart Chain
eip155:56
#22356d
LTT
9
LordToken’s ambition is to fill this gap, by granting access to anyone, regardless of his level of expertise, to a comprehensive set of tools while relying on premium customer service. The same goes for crypto: blockchain technology is quite complex, but if users are offered simple ways of interacting with it along with proper customer care, they will be able to take full advantage of it.
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 = "0x71e72dde4152d274afd1f2db43531ed9e44a78fa";
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],
},
};