Netflix xStock (NFLXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens.
Ethereum
eip155:1
#e40c14
NFLXX
18
Netflix xStock (NFLXx) is a tracker certificate issued as Solana SPL and ERC-20 tokens. NFLXx tracks the price of Netflix, Inc. (the underlying). NFLXx is designed to give eligible cryptocurrency market participants regulatory-compliant access to the stock price of Netflix, Inc., whilst maintaining the benefits of blockchain technology. Key Benefits Netflix is a media company that provides entertainment services, including streaming movies, TV shows, and games, through a subscription-based model. It also produces its own original content and licenses content from other companies.
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 = "0xa6a65ac27e76cd53cb790473e4345c46e5ebf961";
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],
},
};