SafeYield is a reflect token on the Binance Smart Chain A reflect fee is applied to all $SafeYield transactions and redistributes tokens directly to wallets of holders.
Binance Smart Chain
eip155:56
#7c5542
SAFEYIELD
8
SafeYield is a reflect token on the Binance Smart Chain A reflect fee is applied to all $SafeYield transactions and redistributes tokens directly to wallets of holders.
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 = "0x2ae7bf2937f47fedbdce48db8aca4c5e0b814632";
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],
},
};