VICTORIA VR is a Massive Multiplayer Online Open World With Realistic Textures in Virtual Reality built on the blockchain.
Ethereum
eip155:1
#fcc30d
VR
18
VICTORIA VR is a Massive Multiplayer Online Open World With Realistic Textures in Virtual Reality built on the blockchain. Users can buy and trade land, get and create unique assets, explore the world full of user content, complete quests for rewards, and play games.
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 = "0x7d5121505149065b562c789a0145ed750e6e8cdd";
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],
},
};