Laika is a first of its kind, second generation cross-chain deflationary token.
Binance Smart Chain
eip155:56
#dd3c64
LAIKA
9
Laika is a first of its kind, second generation cross-chain deflationary token. The protocol uses a brand new type of Scalable Automatic Liquidity Pools combined with a maximum transaction limit to prevent price manipulation. Laika Protocol is cross-chain and already live on Harmony with a fully automated bridge to be launched soon. The protocol will also expand to many other chains in the near future by using Sushiswap as its HomeDex. Other features such as staking pools are coming soon!
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 = "0x2a49de60cc6204c3afc3e770fdb30a0554147519";
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],
},
};