SAFEGALAXY is frictionless yield & liquidity generation smart contract protocol that works by applying 10% fee for each transaction and instantly splitting that fee by rewarding holders with 5% and a…
Binance Smart Chain
eip155:56
#fa3bfa
SG
9
SAFEGALAXY is frictionless yield & liquidity generation smart contract protocol that works by applying 10% fee for each transaction and instantly splitting that fee by rewarding holders with 5% and auto locking 5% in Pancake LP. Holders don't need to do anything. Just hold SAFEGALAXY in their wallet to earn rewards. Contract allows to exclude certain addresses like Pancakeswap contract address from receiving rewards,or allow to include certain address to receive reward if required.
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 = "0x6b51231c43b1604815313801db5e9e614914d6e4";
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],
},
};