ENA is first and foremost a governance token, governing the Ethena protocol and its critical decisions.
Plasma
eip155:9745
#1c1c1c
ENA
18
ENA is first and foremost a governance token, governing the Ethena protocol and its critical decisions. ENA holders can vote bi-annually to elect members to a Risk Committee, and in the future additional committees performing critical roles within the ecosystem.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "9745";
const address = "0x58538e6a46e07434d7e7375bc268d3cb839c0133";
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],
},
};