Aegis As a DeFi 2.0 protocol, Aegis features more diversified lending services besides over-collateralized lending, such as micro-lending and Unsecured Borrowing.
Ethereum
eip155:1
#1b74bb
AGS
8
Aegis As a DeFi 2.0 protocol, Aegis features more diversified lending services besides over-collateralized lending, such as micro-lending and Unsecured Borrowing. Aegis uses a proprietary AI-powered credit scoring algorithm to assess users’ creditworthiness based on the data provided, and assign an “Aegis Score” to each user, which is similar to traditional risk profile assessments.
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 = "0xdb2f2bcce3efa95eda95a233af45f3e0d4f00e2a";
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],
},
};