Olecoin is a BEP 20 token leading the launching of the first Brazilian platform to tokenize soccer players future receives.
Binance Smart Chain
eip155:56
#fbeb2b
OLE
9
Olecoin is a BEP 20 token leading the launching of the first Brazilian platform to tokenize soccer players future receives. New talents could create their profiles, we use real scouts to validate their informations and once it is approved we create their tokens promoting to our community and with investors. Tokens could be NFT, DeFi or ERC-20. We use the right technology according to the commercial contract signed with the new talent.
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 = "0xfb4b7ee058828b5fbf2e475da88f1903f453334e";
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],
},
};