Rise Up is a movement and the next growth token with an innovative buy back and burn system.
Binance Smart Chain
eip155:56
#0c436a
RiseUp
9
Rise Up is a movement and the next growth token with an innovative buy back and burn system. A hyper deflationary token decreasing supply and economically increasing the price over time. Rise Up is building utilities to help investors check smart contracts and for launching safe tokens
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 = "0x61c911b6d1b46dcadbb61bfa7100290a6faad53d";
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],
},
};