Ethereum
eip155:1
#802bf5
buidl
18
is the Voting Token of DFOhub, the first programmable equity. DFOhub is an On-Chain Github to deploy and manage Decentralised Flexible Organizations. DFOs are Microservices-Driven On-Chain organisations to build Independent Decentralised Applications, in where Token Holders are the real owners and nobody hold the pk.
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 = "0x7b123f53421b1bf8533339bfbdc7c98aa94163db";
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],
},
};