Chainflip is a cross-chain protocol which uses TSS, an independent blockchain, and a purpose-built AMM to facilitate native cross-chain swaps.
Ethereum
eip155:1
#131918
FLIP
18
Chainflip is a cross-chain protocol which uses TSS, an independent blockchain, and a purpose-built AMM to facilitate native cross-chain swaps. Chainflip aims to grant users access to native assets not usually found on the same dex, like ETH, DOT, and BTC, at price parity to centralised exchanges.
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 = "0x826180541412d574cf1336d22c0c0a287822678a";
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],
},
};