Wrapped FLOW (WFLOW) is an ERC-20 token backed 1:1 with FLOW, the native token of the Flow blockchain.
Ethereum
eip155:1
#040806
WFLOW
18
Wrapped FLOW (WFLOW) is an ERC-20 token backed 1:1 with FLOW, the native token of the Flow blockchain. All minted WFLOW will be backed 1:1 by FLOW held in Anchorage custody, an institutional-grade storage system.
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 = "0x5c147e74d63b1d31aa3fd78eb229b65161983b2b";
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],
},
};