import React, { useRef, useState } from "react"; import { useTranslate } from "@portal/hooks"; import { NavList } from "shared/components/nav-list"; import { Link } from '@portal/Link'; const { translate } = useTranslate(); export const frontmatter = { seo: { title: "Tokenization", description: "Explore the possibilities of tokenization on the XRP Ledger, revolutionizing ownership, transactions, and value exchange with unparalleled efficiency and security.", }, }; const useCases = [ { description: "Stablecoin Issuer", link: "/docs/use-cases/tokenization/stablecoin-issuer/", }, { description: "NFT Marketplace", link: "/docs/use-cases/tokenization/nftoken-marketplace/", }, { description: "Authorized Minter", link: "/docs/use-cases/tokenization/authorized-minter/", }, { description: "Digital Artist", link: "/docs/use-cases/tokenization/digital-artist/", }, ]; const securityAdvantages = [ { id: "trustlines", title: "Trust Lines & Authorized Trust Lines", description: ( <>
{translate("Trust Lines:")}
{translate("No spamming of wallets without permission.")}
{translate("Authorized Trustlines:")}
{translate( "Control who can hold your tokens with allowlisting." )}
), }, { id: "freeze-clawbacks", title: "Freeze & Clawbacks", description: ( <>
{translate("Freeze:")}
{translate( "If you see signs of suspicious activity, you can suspend trading of your token while investigating the issue." )}
{translate("Clawback:")}
{translate( "Recover tokens distributed to accounts in error: for example, reclaim funds sent to an account sanctioned for illegal activity." )}
), }, { id: "ntf-tokens", title: "Non-transferable Tokens", description: ( <>
{translate("Transferable flag:")}
{translate( "Native support for nontransferable items such as identity tokens, airline credits, and consumer rewards, honored by all on-chain participants." )} ), }, { id: "royalties", title: "Royalties", subtitle: "Secures Creator Compensation:", description: ( <>
{translate("NFT Transfer Fees:")}
{translate( "Reliably collect your percentage of the sale price of your tokens." )} ), }, ]; const stats = [ { id: "nfts-minted", stat: "20K", description: "NFTs minted", }, { id: "nft-trading-vol", stat: "~1000", description: "NFT trading volume", }, { id: "network-speed", stat: "0.4", description: "Network speed (sec)", }, { id: "fee-per-tx", stat: "$0.001", description: "Avg fee per NFT tx", }, ]; const projects = [ { id: "xrpcafe", label: "XRP cafe", url: "https://xrp.cafe", }, { id: "onXRP", label: "onXRP", url: "https://nft.onxrp.com", }, { id: "xaman", label: "Xaman labs", url: "https://github.com/XRPL-Labs/Xaman-App", }, { id: "amy", label: "amy.network", url: "https://token.amy.network", }, { id: "sologenic", label: "Sologenic", url: "https://sologenic.org/trade", }, { id: "carbonland", label: "Carbonland trust", url: "https://www.carbonlandtrust.com", }, { id: "nautilus", label: "Nautilus wallet", url: "https://github.com/nautls/nautilus-wallet", }, { id: "evernode", label: "Evernode", url: "https://evernode.org", }, { id: "raised-in-space", label: "Raised in space", url: "https://raisedinspace.com", }, ]; const articles = [ { time: "JAN 2024", title: "XRP Price Prediction: Will Ripple Make Waves in 2024?", url: "https://www.forbes.com/advisor/au/investing/cryptocurrency/xrp-price-prediction", }, { time: "JAN 2024", title: "XRP Could Surge Massively in 2024", url: "https://u.today/xrp-could-surge-massively-at-beginning-of-2024-heres-why", }, { time: "NOV 2023", title: "NFTs and the XRPL: A Marriage of Art and Technology", url: "https://medium.com/@MariaSolorzano/title-nfts-and-the-xrpl-a-marriage-of-art-and-technology-cf76a0432693", }, ]; const FeaturedProjects = () => { const [currentIndex, setCurrentIndex] = useState(0); const handlePrev = () => { if (currentIndex > 0) { setCurrentIndex(currentIndex - 1); } }; const handleNext = () => { if (currentIndex < projects.length - 3) { setCurrentIndex(currentIndex + 1); } }; const ProjectCard = ({ project, index }) => (
{project.label}
{project.label}
); return (
); }; export default function Tokenization() { const modalRef = useRef(null); return (

{translate( "Work with a variety of tokens supported by the XRP Ledger." )}

{translate("Tokenization")}

{translate( "Explore the possibilities of tokenization on the XRP Ledger, revolutionizing ownership, transactions, and value exchange with unparalleled efficiency and security." )}

{translate( "Check out the security features you can tap into right from the chain without the hassle of piecing together smart contracts." )}

{translate("Security advantages")}

{securityAdvantages.map((advantage) => (

{translate(advantage.title)}

{advantage.description}
))}

{translate("Stats")}

{stats.map((statElement) => (
{statElement.stat}
{translate(statElement.description)}
))}

{translate("Featured real world projects")}

{translate("Related Articles")}

{articles.map((article, index) => (
))}

{translate("More related articles")}

{translate("November 2023")}
); }