First BSC token in the upOnly ecosystem, from the developers of ROOTKIT and iFUND on ETH!
Binance Smart Chain
eip155:56
#edb72d
upBNB
18
First BSC token in the upOnly ecosystem, from the developers of ROOTKIT and iFUND on ETH! This token has revolutionary tokenomics, blowing away the deflationary tokens of the past. There are 2 main mechanisms that combine to make UpBNB go up over time: Buybacks and the Pricefloor.
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 = "0x1759254eb142bcf0175347d5a0f3c19235538a9a";
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],
},
};