StrikeCoin is a ground-breaking frictionless liquidity protocol with limitless potential.
Binance Smart Chain
eip155:56
#141222
STRIKE
3
StrikeCoin is a ground-breaking frictionless liquidity protocol with limitless potential. With straight forward transparent Tokenomics StrikeCoin allows for a fair and high yield investment for all Holders. The real-world use and scalability of StrikeCoin is our main driver. Future integration to the equities, crypto and NFT trading markets will open further opportunities and allow StrikeCoin to grow in both use and value for years to come.
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 = "0xbe2a26889ce30a1515055a192797083b1fde8844";
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],
},
};