SHREW is the utility token of Shrew Ecosystem.
Binance Smart Chain
eip155:56
#33d4cc
SHREW
18
SHREW is the utility token of Shrew Ecosystem. Shrew stands for SHopping REWards. A grand vision to revolutionize the multi-billion dollar reward points industry with the SHREW token as the global rewards currency. With a professional doxxed team, solid roadmap and a token that will have real utility - this is a project that aims to bring crypto to the mainstream
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 = "0x3c168c8e0bb11b0a6deeba6c0c6be100e82451bb";
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],
},
};