The FLy token was designed to provide customers with an opportunity of getting discounts and additional benefits from VRM and its eco-system.
Ethereum
eip155:1
#cacaca
FLy
4
The FLy token was designed to provide customers with an opportunity of getting discounts and additional benefits from VRM and its eco-system. The token should support company development by involving people in long-term relationships and building a strong society of institutional and retail partners around the company. FLy is an ERC20 token, but the company will reserve the right to move a part of the token supply to different blockchain networks in the future.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x85f6eb2bd5a062f5f8560be93fb7147e16c81472";
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],
},
};