Oil Meta Game (OMG) is a revolutionary token that powers The Oil Story Game, a play-to-earn experience that brings the intricate world of the oil industry to life through immersive gameplay.
Binance Smart Chain
eip155:56
#ac2d31
OMG
8
Oil Meta Game (OMG) is a revolutionary token that powers The Oil Story Game, a play-to-earn experience that brings the intricate world of the oil industry to life through immersive gameplay. In The Oil Story Game, players can dive into the excitement and challenges of oil exploration, extraction, and trading, all while earning real rewards with OMG tokens. The game combines education and entertainment, offering insights into the oil industry’s operations and strategies, making it a perfect blend for both industry enthusiasts and gamers.
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 = "0xe94444ba62208431a27c764e2e28794e81f5b235";
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],
},
};