Ethereum
eip155:1
#375780
LIF3
18
LIF3 is the token of the LIF3 ecosystem. Lif3 is an emerging powerhouse protocol in the decentralized finance (DeFi) sector that provides a comprehensive suite of features to manage digital assets across multiple blockchains. Encompassing the various products Lif3 has to offer, users are able to safely and securely invest in a multitude of options that best fit their financial goals, preferred strategies, and risk profiles. The available features include but are not limited to swapping between different cryptocurrencies, yield farming, providing liquidity to earn incentives, and engaging in a decentralized lending market that offers yield on single assets and liquidity paired assets, as well as leveraging. We also offer avenues for users to acquire crypto with credit cards and to trade derivatives on our decentralized spot and perpetual exchange that sup- ports low swap fees and zero price impact trades.
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 = "0x7138eb0d563f3f6722500936a11dcae99d738a2c";
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],
},
};