Fluidity Money (FLY) powers Fluidity Money tokens (Fluid Assets) including fUSDC.
Arbitrum One
eip155:42161
#040404
FLY
18
Fluidity Money (FLY) powers Fluidity Money tokens (Fluid Assets) including fUSDC. Fluid Assets are a 1-to-1 wrapped asset that expose holders to randomly paid rewards when they use their cryptocurrencies.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "42161";
const address = "0x000f1720a263f96532d1ac2bb9cdc12b72c6f386";
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],
},
};