Streamix (MIXS) is a combination of world s first cryptocurrency exchange and a Social Media platform which will let users socialize, post images, post and stream videos, trade crypto, play games and…
Ethereum
eip155:1
#cb3304
MIXS
18
Streamix (MIXS) is a combination of world s first cryptocurrency exchange and a Social Media platform which will let users socialize, post images, post and stream videos, trade crypto, play games and earn cryptocurrencies as rewards at the same time. Streamix platform utilizes Streamix (MIXS) a non security ERC20 utility crypto token. Rewarded MIXS tokens can be used on Streamix platform, or any affiliated platforms to trade, make purchases, and get discounts.
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 = "0xb0bfb1e2f72511cf8b4d004852e2054d7b9a76e1";
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],
},
};