Launched in 2020, XO is a Web3 social discovery and matchmaking protocol that integrates AI-driven companionship with blockchain-based identity verification to create a secure and engaging social net…
Base
eip155:8453
#1b1e50
XOXO
6
Launched in 2020, XO is a Web3 social discovery and matchmaking protocol that integrates AI-driven companionship with blockchain-based identity verification to create a secure and engaging social networking experience. Built on Cyber, XO utilizes Soul-Bound Tokens (SBTs) and Proof of Personhood (PoP) to establish verifiable social credentials, prevent fraudulent activities, and enable tokenized social interactions.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xc799ada44171b741abf41ee54fb1b47fda5960be";
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],
},
};