DACC – Decentralized Accessible Content – is the first public chain that revolutionize online content and media identity and access management (IAM) worldwide.
Ethereum
eip155:1
#231c1d
DACC
6
DACC – Decentralized Accessible Content – is the first public chain that revolutionize online content and media identity and access management (IAM) worldwide. As an interactive platform, DAC, through the innovative use of blockchain technology, allows creators to control and protect their content, while also giving them a secure and efficient way of selling it globally.
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 = "0x005b148048e06a250939f5b0fc32aae19c6c2c84";
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],
},
};