Film.io is a decentralized filmmaking ecosystem, placing Hollywood decision-making into the hands of creators and fans.
Polygon
eip155:137
#040404
FAN
8
Film.io is a decentralized filmmaking ecosystem, placing Hollywood decision-making into the hands of creators and fans. Film.io leverages blockchain technology and fan collaboration to provide filmmakers with an end-to-end solution for creating, funding and distributing their projects.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "137";
const address = "0x3b9e9100db1389c518d47c635d80a90ad4c4f41b";
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],
},
};