The One basis platform, established by the Yfione team, is the first stablecoin algorithm and I.W.O (first fundraising) in the Binance Smart Chain ecosystem, which can realize Satoshi Nakamoto's visi…
Binance Smart Chain
eip155:56
#399fd4
OBS
18
The One basis platform, established by the Yfione team, is the first stablecoin algorithm and I.W.O (first fundraising) in the Binance Smart Chain ecosystem, which can realize Satoshi Nakamoto's vision of cryptocurrency. One basis Cash combines liquid mining and flexible stablecoins, using a relatively complete cryptocurrency market adjustment mechanism.
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 = "0x095956b142431eb9cf88b99f392540b91acbf4ad";
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],
},
};