The core of IvendPay's innovation lies in integrating cryptocurrency payments into various commercial and retail environments through multiple channels including bank terminals, e-commerce plugins, A…
Binance Smart Chain
eip155:56
#0404fc
IVPAY
18
The core of IvendPay's innovation lies in integrating cryptocurrency payments into various commercial and retail environments through multiple channels including bank terminals, e-commerce plugins, APIs, iOs\Android app, and vending machines. ivendPay's solution bridges the gap between traditional financial systems and the emerging digital economy, making it easier for consumers to use their cryptocurrencies for everyday purchases. This integration represents a significant step forward in the adoption and normalization of digital currencies
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xde5bdcbd4d7dfa86e527fef9971bd6ca6a76eefb";
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],
},
};