The ASI Alliance represents a significant shift toward a decentralized AI ecosystem, offering an alternative to AI development dominated by big tech.
Base
eip155:8453
#050505
FET
18
The ASI Alliance represents a significant shift toward a decentralized AI ecosystem, offering an alternative to AI development dominated by big tech. By pooling their resources and expertise, Fetch.ai, SingularityNET, and Ocean Protocol aim to foster innovation, transparency, and inclusivity in the development of advanced AI technologies.
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 = "0x74f804b4140ee70830b3eef4e690325841575f89";
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],
},
};