SWFT Blockchain is a cross-chain wallet, exchange, and payments platform powered by Swftcoin (SWFTC) that allows users to swap, trade, pay with and share hundreds of cryptocurrencies.
Ethereum
eip155:1
#f2e7d5
SWFTC
8
SWFT Blockchain is a cross-chain wallet, exchange, and payments platform powered by Swftcoin (SWFTC) that allows users to swap, trade, pay with and share hundreds of cryptocurrencies. SWFTC provides SWFT Blockchain with the sources of liquidity needed to offer faster cross-chain swaps at the best rates, and with low fees.
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 = "0x0bb217e40f8a5cb79adf04e1aab60e5abd0dfc1e";
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],
},
};