We are a cryptocurrency app with the goal of creating an environment where the worlds of traditional finance and cryptocurrencies converge within a single application.
Ethereum
eip155:1
#e8c144
WEXO
18
We are a cryptocurrency app with the goal of creating an environment where the worlds of traditional finance and cryptocurrencies converge within a single application.
WEXO is the easiest way into the crypto world. Our domain is simplicity and user-friendly services that have already been loved by users from all over the world. Our rich ecosystem includes utilities such as crypto wallets, an integrated exchange, and an NFT marketplace. We offer services such as the Bitcoin Lightning Network, Euro wallet, card payments, standing orders in cryptocurrencies, business accounts, wPOS terminals for entrepreneurs accepting payments in BTC, sending cryptocurrencies to a phone number, the WEXO loyalty program, and many others that we are preparing. We are already expanding our ecosystem with services for entrepreneurs, aiming to connect with cryptocurrency users.
Our goal is clear: be a part of this financial revolution and thus help the mass adoption of cryptocurrencies around the world.
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 = "0xf31698ddad0d11160fe85c500397a470cd3d492e";
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],
},
};