Puli (PULI) delivers simple yet very addicting P2E games supported by a novel NFT system.
Binance Smart Chain
eip155:56
#744f9a
PULI
9
Puli (PULI) delivers simple yet very addicting P2E games supported by a novel NFT system. The first game, Puli Runner, was successfully launched on 31 January 2022. The team has also acquired a gaming studio for the development of Play-to-Earn games, which includes support for Android and IOS. The purpose and key features of the token include a 10% Buy and 10% Sell tax that are used to fund aggressive marketing, development and stable liquidity. In addition, the asset can be staked for added earnings with instructions available at their website.
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 = "0xaef0a177c8c329cbc8508292bb7e06c00786bbfc";
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],
},
};