Our CHF36 tokens are used to connect banking network with ethereum,to send (and receive) EUR and CHF directly with your Smart Contracts.
Ethereum
eip155:1
#7846c1
CHF36
18
Our CHF36 tokens are used to connect banking network with ethereum,to send (and receive) EUR and CHF directly with your Smart Contracts. End-users do not need a wallet, because wire-transfers trigger mint/burn at the moment the transfer happens.
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 = "0xf67c3000943c74186b64a1bc84cb5880e5198661";
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],
},
};