Ethereum
eip155:1
#fcbb04
stkAAVE
18
stkAAVE is AAVE that is staked in the Aave Protocol Safety Module. In case of a shortfall event, up to 30% of the stkAAVE can be slashed to cover the deficit. stkAAVE holders earn Safety Incentives as a reward for protecting the protocol. stkAAVE holders can also vote on governance proposals for protocol updates.
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 = "0x4da27a545c0c5b758a6ba100e3a049001de870f5";
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],
},
};