Ultra describes itself as a blockchain-based, PC game distribution platform designed to provide both gamers and game developers with new opportunities.
Ethereum
eip155:1
#7b53d3
UOS
4
Ultra describes itself as a blockchain-based, PC game distribution platform designed to provide both gamers and game developers with new opportunities. It consists of an ecosystem where gamers can, on top of buying and playing games, resell their used games and items, and earn money through their participation in Ultra.
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 = "0xd13c7342e1ef687c5ad21b27c2b65d772cab5c8c";
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],
},
};