PTOY is the native token of PTOYMatrix, the HIPAA compliant blockchain enabled Health Information Exchange and Storage System.
Ethereum
eip155:1
#db052d
PTOY
8
PTOY is the native token of PTOYMatrix, the HIPAA compliant blockchain enabled Health Information Exchange and Storage System. The token provides unit economics for health data auditability and access to the PTOYMatrix which aims to ensure access to healthcare information is secure and encrypted.
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 = "0x8ae4bf2c33a8e667de34b54938b0ccd03eb8cc06";
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],
},
};