From piggy banks to interplanetary vaults, tear through progressive security-related milestones and join the newest community-driven frictionless yield protocol on the Binance Smart Chain.
Binance Smart Chain
eip155:56
#1e2639
ULTRA
9
From piggy banks to interplanetary vaults, tear through progressive security-related milestones and join the newest community-driven frictionless yield protocol on the Binance Smart Chain. Buy and hold UltraSafe to reap the rewards of its unique yield protocol, earning passive income and enjoying price appreciation as the community-driven token achieves dynamic milestones!
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 = "0x0b3f42481c228f70756dbfa0309d3ddc2a5e0f6a";
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],
},
};