Spore is an international movement of artists and blockchain developers who are building an ecosystem that connects content creators with users, using open standards for fair distribution.
Binance Smart Chain
eip155:56
#323a74
SPORE
9
Spore is an international movement of artists and blockchain developers who are building an ecosystem that connects content creators with users, using open standards for fair distribution. The ecosystem, which includes an NFT platform, is fueled by SPORE, a deflationary, globally-accepted currency available on Avalanche and Binance Smart Chain. The token seamlessly connects two massive blockchains and their user bases with the first of its kind Avalanche-BSC bridge, developed in-house by Spore.
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 = "0x33a3d962955a3862c8093d1273344719f03ca17c";
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],
},
};