Whirl Finance is a multi-coin cryptocurrency wallet that securely stores your crypto assets in the most simple and easy way.
Binance Smart Chain
eip155:56
#07f4bb
WHIRL
18
Whirl Finance is a multi-coin cryptocurrency wallet that securely stores your crypto assets in the most simple and easy way. Truly mobile-friendly, supporting major cryptocurrencies like Bitcoin, BNB, Ethereum, Ripple, and more. WHIRL is a utility token powered by Binance Smart Chain. It works by applying 2% fee to each transaction is automatically sent to burn address that continuously reduces the total supply.
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 = "0x7f479d78380ad00341fdd7322fe8aef766e29e5a";
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],
},
};