stkABPT is AAVE/ETH Balancer Liquidity that is staked in the Aave Protocol Safety Module.
Ethereum
eip155:1
#6d89b3
stkABPT
18
stkABPT is AAVE/ETH Balancer Liquidity that is staked in the Aave Protocol Safety Module. In case of a shortfall event, up to 30% of the stkABPT can be slashed to cover the deficit. stkABPT holders earn Safety Incentives, BAL rewards and trading fees as a reward for protecting the protocol and liquidity provided to Balancer.
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 = "0xa1116930326d21fb917d5a27f1e9943a9595fb47";
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],
},
};