The Bulls Army is a meme coin with no utility or inherent value, built on Polygon's Matic Network.
Polygon
eip155:137
#2d1f66
TBA
18
The Bulls Army is a meme coin with no utility or inherent value, built on Polygon's Matic Network. Its purpose is to showcase the speed and affordability of the Matic blockchain to crypto users. Despite its lack of functionality, it serves as a playful representation of the bullish sentiment in the crypto market.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0x7e1ae068ac4e0ffd7a84750c2fb093a0eae9aea2";
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],
},
};