MUSO Finance is a BEP20 token built on the Binance Smart Chain, meaning low fees, fast transaction times, and smart contract compatibility Idea to innovation - MUSO Finance was founded in 2021 by lik…
Binance Smart Chain
eip155:56
#f38f08
MUSO
9
MUSO Finance is a BEP20 token built on the Binance Smart Chain, meaning low fees, fast transaction times, and smart contract compatibility Idea to innovation - MUSO Finance was founded in 2021 by likeminded people whom all have a keen interest in music and crypto. With MUSO Finance being the driving force of various projects the team have every intention to be at the forefront of the music industry, offering fair payment to all artists and zestful community events.
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 = "0x20512ee0052236b009772af0ed22bc58b40c27b9";
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],
},
};