At Liza Coin is a unique social earning platform that allows users to earn money simply by sharing our posts.
Binance Smart Chain
eip155:56
#110d09
LIZA
18
At Liza Coin is a unique social earning platform that allows users to earn money simply by sharing our posts. With Liza Coin, you can monetize your social media presence effortlessly. For every post you share, you receive payments in USDT and INR, directly credited to your wallet. Join our vibrant community and start transforming your social sharing into real earnings!
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 = "0x84a238aa527181f2354a40e9a1c4c3eb4a01bb8a";
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],
},
};