Sheep Token is a deflationary token that allows for passive income generation for investors.
Binance Smart Chain
eip155:56
#c4a539
SHEEP
9
Sheep Token is a deflationary token that allows for passive income generation for investors. Here’s how it works. 6% on each transaction is split instantly among token holders and the burn wallet, reducing supply and rewarding holders. The Sheep Token protocol will burn 3% of every transaction forever and redistribute the remaining 3% to token holders as reward. This arrangement eradicates 3rd party risk from having to keep assets in a separate contract while yield farming while reducing supply.
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 = "0x0025b42bfc22cbba6c02d23d4ec2abfcf6e014d4";
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],
},
};