OWB Studio builds Clash of Coins - a live MMORPG and top 1 game on Base.
Base
eip155:8453
#14141b
OWB
18
OWB Studio builds Clash of Coins - a live MMORPG and top 1 game on Base. $OWB is the studio’s value-capture token from everything OWB builds. Powered by GameAI infrastructure driving top 1% retention (~200-day lifetime), that same system will be productized beyond the game - from MMORPG traction to AI that boosts retention and revenue for any consumer app.
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 = "0xef5997c2cf2f6c138196f8a6203afc335206b3c1";
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],
},
};