Ethereum
eip155:1
#f5990b
HPAY
18
HPC targets Thai and foreign retail communities. The development team has decided to convert HAPPYCOIN (HPC) from the X11 algorithm (Proof of Work and Proof of Stake) to an ERC20 token running on Ethereum blockchain. The second iteration of the coin is named HappyPay (HPAY). It focuses on the 'Network Marketing' industry in Thailand and has plans for international expansion.
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 = "0xeee690aaa67d1ee33365c02c3bf477a93867052f";
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],
},
};