SafeSex Finance is token deployed on binance smart chain network.
Binance Smart Chain
eip155:56
#efc084
SEX
9
SafeSex Finance is token deployed on binance smart chain network. It is deflationary token with feature of rewarding holders in every transaction done by other buyers and sellers. SafeSex finance is working with aim of charity to sex victims, human trafficking victims, kids with poo economic condition for schools, autism community. It has aim to create awareness about safe sex education to the community with the help of defi.
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 = "0x6ea05f63daf6b0dc6b8bea94342330cc602c5536";
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],
},
};