iMe is an all-in-one app with the Telegram-based messenger, non-custodial Crypto Wallet (Polygon, BNB Chain, Ethereum, more to come), DeFi tools, its own native utility token $LIME.
Polygon
eip155:137
#efba14
LIME
18
iMe is an all-in-one app with the Telegram-based messenger, non-custodial Crypto Wallet (Polygon, BNB Chain, Ethereum, more to come), DeFi tools, its own native utility token $LIME. The app allows sending crypto in a few clicks right on Telegram, using Binance functionality, tipping Telegram resources with crypto, having access to NFT / Web 3.0, and more. iMe is available on Google Play and App Store. iMe is on a mission to make DeFi more accessible to a wider population.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0x7f67639ffc8c93dd558d452b8920b28815638c44";
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],
},
};