Multiverse Capital is a multichain farming deflation token.
Binance Smart Chain
eip155:56
#320a46
MVC
18
Multiverse Capital is a multichain farming deflation token. 10% of each buy goes to existing holders. 10% of each sell goes into treasury fund to be used for multi-chain farming & big marketing. Investors buy $MVC on BSC, MVC farm on multiple chains and return the profits to $MVC holders. $MVC is deflationary & has price floor supported by Buyback & Burn to Liquidity Fund.
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 = "0x80d04e44955aa9c3f24041b2a824a20a88e735a8";
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],
},
};