Impact.Fun is a ground-up, community-focused platform built on BSC where anyone can create a token to fund and support impactful causes, events, or people.
Binance Smart Chain
eip155:56
#0b0c0b
IMPACT
18
Impact.Fun is a ground-up, community-focused platform built on BSC where anyone can create a token to fund and support impactful causes, events, or people. By leveraging a fair launch mechanism, we level the playing field so everyone can pay just $1 for a chance to win big and be part of the next major impact token — creating lasting change beyond the hype.
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 = "0x1ec5da0f1e43ef6802de631a1323a37e7b530b2b";
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],
},
};