MUE is a multi-chain (SHA-256 and BEP-20) cryptocurrency that aims to break away from the mould that cryptocurrency is only for tech-savvy people.
Binance Smart Chain
eip155:56
#322c3b
WMUE
18
MUE is a multi-chain (SHA-256 and BEP-20) cryptocurrency that aims to break away from the mould that cryptocurrency is only for tech-savvy people. Users can earn rewards with staking or masternodes, benefiting the entire network.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0x00abaa93faf8fdc4f382135a7a56f9cf7c3edd21";
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],
},
};