wA7A5 is a wrapped A7A5 (0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9), wA7A5 is used for DeFi platforms as A7A5 is a rebasing token.
Ethereum
eip155:1
#f8e3cf
wA7A5
6
wA7A5 is a wrapped A7A5 (0x6fA0BE17e4beA2fCfA22ef89BF8ac9aab0AB0fc9), wA7A5 is used for DeFi platforms as A7A5 is a rebasing token. A7A5 is an RWA token backed by fiat deposits in top-tier banks with high overnight rates. A7A5 automatically distributes 50% of its daily income to all token holders at a random time each day, requiring no action on their part.
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 = "0x0d57436f2d39c0664c6f0f2e349229483f87ea38";
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],
},
};