SwissBorg is an all-encompassing crypto management app designed to offer services such as exchanging crypto and fiat, earning yield, and accessing launchpad investment opportunities.
Ethereum
eip155:1
#e8f8f6
BORG
18
SwissBorg is an all-encompassing crypto management app designed to offer services such as exchanging crypto and fiat, earning yield, and accessing launchpad investment opportunities. Established during the ICO era of 2017, it has amassed over 1 million registered users by 2024. The BORG is the token powering this revolutionary financial ecosystem.
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 = "0x64d0f55cd8c7133a9d7102b13987235f486f2224";
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],
},
};