Metya - The largest and most influential dating platform #SocialFi Metya leverages AI technology to introduce the innovative concept of DatingFi, providing users with a decentralized, secure, and pri…
Binance Smart Chain
eip155:56
#d6e61f
MET
18
Metya - The largest and most influential dating platform #SocialFi Metya leverages AI technology to introduce the innovative concept of DatingFi, providing users with a decentralized, secure, and private social dating experience. With our groundbreaking smart hardware, #MeAi, we support real-time translation in 138 languages globally. Through social interactions, users contribute computing power and network resources, creating a truly empowering social environment that fosters innovation in the Web3 ecosystem.
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 = "0xa5b000d453143b357dba63f4ee83f2f6fda832b8";
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],
},
};