Sologenic is disrupting the asset trading industry: Tokenized Securities, Crypto Assets & NFTs.
Binance Smart Chain
eip155:56
#141516
SOLO
15
Sologenic is disrupting the asset trading industry: Tokenized Securities, Crypto Assets & NFTs. Sologenic.com and sologenic.org are two separate teams. Sologenic.org aka SOLO Core team’s focus is purely on the expansion of the Sologenic as a decentralized ecosystem while the sologenic.com team are working on the launch of an important use-case of the Sologenic ecosystem: Securities Tokenization
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 = "0xc2c28b58db223da89b567a0a98197fc17c115148";
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],
},
};