Altranium coin comes fully equipped with the cogitating & imperative ecosystem with the emerging and integrated technologies which can build DeFi, SocialFi, GameFi and metaverses.
Arbitrum One
eip155:42161
#b05e0b
ALTR
18
Altranium coin comes fully equipped with the cogitating & imperative ecosystem with the emerging and integrated technologies which can build DeFi, SocialFi, GameFi and metaverses. ALTR hones the ability to process tokens deploying full decentralize systems such as DeFi on Ethereum, by using the native Blockchain to create the interactive visual experiences, enhancing the experience further with VR (Virtual Reality) Media Codec within Metaverse(s) as well as CRE (Corporate Real Estate)
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "42161";
const address = "0xb9600c807f069d27f92a2a65b48f12eeef7e2007";
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],
},
};