PowerPool is a solution for accumulating governance power in Ethereum-based protocols by pooling tokens (COMP, BAL, LEND, YFI, BZRX, AKRO, etc.).
Ethereum
eip155:1
#ececec
CVP
18
PowerPool is a solution for accumulating governance power in Ethereum-based protocols by pooling tokens (COMP, BAL, LEND, YFI, BZRX, AKRO, etc.). The CVP token name refers to Concentrated Voting Power: CVP holders decide how pooled GTs will vote when the vote occurs in their root protocol. Also, CVP holders govern the entire protocol (key ecosystem variables, collateral types, adding new pools).
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 = "0x38e4adb44ef08f22f5b5b76a8f0c2d0dcbe7dca1";
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],
},
};