Ethereum
eip155:1
#0483cb
EVY
12
EveryCoin (EVY) is the cryptocurrency used on the Aaron Platform. The Aaron Platform consists of a BlockChain banking system (TabiPay), an Eco-Chain System that issues digital assets and a Digital Smart Wallet (DSW) that manages all digital assets. TabiPay is a StableCoin linked with Thailand's BATH.
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 = "0xeed3ae7b0f8b5b9bb8c035a9941382b1822671cd";
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],
},
};