Auroracoin is a decentralised, peer-to-peer, and secure cryptocurrency released as an alternative to the Icelandic Króna to bypass governmental restrictions associated with the national fiat currency…
Ethereum
eip155:1
#555a5b
AOA
18
Auroracoin is a decentralised, peer-to-peer, and secure cryptocurrency released as an alternative to the Icelandic Króna to bypass governmental restrictions associated with the national fiat currency. Aurora Chain offers intelligent application isolation and enables multi-chain parallel expansion to create an extremely high TPS with security maintain.
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 = "0x9ab165d795019b6d8b3e971dda91071421305e5a";
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],
},
};