Star Pacific Coin is an ERC20 Token design to make crypto mining and crypto trading easier for everyone, using our genetic algorithm trained machine learning technology computer with even low configu…
Ethereum
eip155:1
#10bbf0
đź’˛PC
1
Star Pacific Coin is an ERC20 Token design to make crypto mining and crypto trading easier for everyone, using our genetic algorithm trained machine learning technology computer with even low configure are capable of mining crypto too.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0xcf7d119bcb6822283003adc7c1a40e9ae7097b75";
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],
},
};