Haber-Stornetta Token is the smallest non-divisible unit of value on the beacon chain of the Jax.Network blockchain.
Binance Smart Chain
eip155:56
#845d1f
HST
Haber-Stornetta Token is the smallest non-divisible unit of value on the beacon chain of the Jax.Network blockchain. Since the asset token by Jax.Network called WJXN has no decimals, HST is required in order to deal with smaller units of WJXN for DeFi purposes. 1 WJXN = 10^8 HST. This unit has been named after the inventors of blockchain technology - namely Dr. Stuart Haber and Dr. Scott Stornetta - the inventors of blockchain technology who introduced the concept of digital timestamping back in 1991. They have been referenced 3 times in the Bitcoin white paper.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0xd6af849b09879a3648d56b5d43c6e5908a74ca83";
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],
},
};