Magpie XYZ is a platform built on BNB Chain to boost yields for liquidity providers and governance token holders of veTokenomics protocols.
Binance Smart Chain
eip155:56
#92c2fa
MGP
18
Magpie XYZ is a platform built on BNB Chain to boost yields for liquidity providers and governance token holders of veTokenomics protocols. Essentially the platform incentivizes governance token holders and liquidity providers to pool their assets together so that the platform can acquire governance tokens, convert into veTokens, boost yield for liquidity providers, and in return share part of protocol revenues derived from liquidity providers’ boosted profits back to governance token holders.
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 = "0xd06716e1ff2e492cc5034c2e81805562dd3b45fa";
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],
},
};