Ethereum
eip155:1
#29abe2
FMP
18
The Famacoin sidechain Famapay, referred to as FMP. The issuance of the sidechain is the project's exploration of the Fama mainnet model. Build fast, easy-to-use, low-cost and secure blockchain applications on the Internet scale through off-chain expansion technology and incentive encryption economics. It is reported that there are 10 million FMPs in total, of which 50% are used for free airdrops and event rewards. 50% of FMP is used for FamaPay application development incentives.
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 = "0x9032c02ac84a347ecf0b31e1ce5eed5462294a99";
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],
},
};