Multiplier is a suite of DeFi protocols that leverages a native governance token - MXX - that can only be minted.
Ethereum
eip155:1
#04fa33
MXX
8
Multiplier is a suite of DeFi protocols that leverages a native governance token - MXX - that can only be minted. The first protocol, Simplified Stable Bonds (SSB) enables holders to earn stable yield on their collateral. The second protocol, TakoSwap is a set of computer programs that run on the Ethereum blockchain and allows for decentralized token swaps. In the near future, more DeFi protocols will be built that focuses on creating value and utility for the community.
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 = "0x8a6f3bf52a26a21531514e23016eeae8ba7e7018";
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],
},
};