A new cryptocurrency called Pup Doge Coin was launched in July 2021, making it one of the fastest-growing cryptocurrencies on the market.
Binance Smart Chain
eip155:56
#f19f51
PupDoge
9
A new cryptocurrency called Pup Doge Coin was launched in July 2021, making it one of the fastest-growing cryptocurrencies on the market. Besides helping save dogs as well as bringing crypto to the average person, Pup Doge is decentralized. The Binance Smart Chain (BSC) technology made Pup Doge a faster Coin with 10x faster block speeds and a cheaper gas fee.
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 = "0x3220ccbbc29d727bde85b7333d31b21e0d6bc6f4";
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],
},
};