ATBANK DIGITAL under AT GROUP is the world's first bank to use digital banking service.
Ethereum
eip155:1
#5cc4d4
ATB
18
ATBANK DIGITAL under AT GROUP is the world's first bank to use digital banking service. With the motto: “In just a few minutes, with no need for branches or paperwork”, you absolutely do not need to go to the bank, or use any paper for your banking activities. Just open the ATBANK DIGITAL app and use it to complete transactions in just a few seconds. Anytime... Anywhere...
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x2c66164f7a8564dcaaadca8319b9f917ac418e4e";
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],
},
};