Odos leads DeFi with the most sophisticated order optimization algorithm to deliver the best rates, and the most value to users across DeFi.
Base
eip155:8453
#f05323
ODOS
18
Odos leads DeFi with the most sophisticated order optimization algorithm to deliver the best rates, and the most value to users across DeFi. Supporting 14 chains, 900+ liquidity sources, and 55,000+ tokens, Odos unlocks hidden value for every user. Build with Odos as well via our API to bring the most efficient trades in DeFi to your users as well.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "8453";
const address = "0xca73ed1815e5915489570014e024b7ebe65de679";
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],
},
};