A deflationary Charity Token allows for users frictionless rewards while taxing and generating fees per transaction.
Binance Smart Chain
eip155:56
#198993
Save
9
A deflationary Charity Token allows for users frictionless rewards while taxing and generating fees per transaction. Given the dynamism of the project and the fact that there are endless worthy charitable causes, Save will consistently draw in new investors, both philanthropic and speculative alike. Unlike many supposed “charity” tokens, we will provide proof of donations and ensure all funds reach their worthy causes. With all charity-based projects, transparency is of the utmost importance.
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 = "0x159802fbe16aa6a0863a56a18dd41afce546c93e";
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],
},
};