tokenomics update

This commit is contained in:
shialoth 2025-05-11 15:52:06 +05:30
parent 42f64e12ad
commit 09c20df53e
3 changed files with 40 additions and 35 deletions

View File

@ -87,10 +87,6 @@ export default function ArchitectureSection() {
question: "EdgeNode Client - GPU Resource Sharing",
answer: "Idle GPUs are integrated into the network via the EdgeNode client. This lightweight software runs minimal background processes and uses a predictive algorithm called QuantumMesh to anticipate demand, ensuring optimal resource utilization. GPUs report their availability, specifications, and thermal status in real-time.",
},
{
question: "The Adaptive Smart Contracts",
answer: "The system employs Adaptive Smart Contracts (ASC), an enhanced blockchain-based framework that supports dynamic contract updates based on real-time computational metrics. ASCs handle pricing, performance verification, and dispute resolution without human intervention.",
},
{
question: "HiveMind Engine For Computing Resource Orchestration",
answer: "Orchestration is powered by the HiveMind engine, a distributed AI-powered scheduler. HiveMind uses neural topology mapping to allocate workloads intelligently, balancing computational loads while minimizing latency. It also supports cross-node task migration, enabling seamless scaling for complex jobs.",

View File

@ -10,12 +10,13 @@ export default function TokenomicsSection() {
useEffect(() => {
const interval = setInterval(() => {
setActiveState((prev) => (prev === 1 ? 0 : prev + 1));
setActiveState((prev) => (prev === 3 ? 0 : prev + 1));
}, 5000);
return () => clearInterval(interval);
}, []);
return (
<section id="tokenomics" className="border-b border-white/10">
<div className="mx-auto container max-w-[1435px] px-8">
@ -85,25 +86,19 @@ export default function TokenomicsSection() {
{activeState === 0 && (
<>
<h3 className="mb-2.5 text-lg font-medium text-white">
Circulating Supply <span className="text-[#0CE77E]">(95%)</span>
Circulating Supply <span className="text-[#0CE77E]">(90%)</span>
</h3>
<p className="mb-1.5 text-white/75">
The majority of tokens are allocated for general circulation, enabling wide
accessibility and active ecosystem participation.
The majority of tokens are allocated for general circulation, enabling wide accessibility and active ecosystem participation.
</p>
<ul className="mb-1.5 pl-4 flex flex-col items-center gap-1.5">
<li className="list-disc text-white/75">
Transactions: Facilitating payments between GPU renters and providers.
</li>
<li className="list-disc text-white/75">
Liquidity: Supporting smooth trading on decentralized exchanges and
maintaining token stability.
Liquidity: Supporting smooth trading on decentralized exchanges and maintaining token stability.
</li>
</ul>
<p className="text-white/75">
Empowers community & the platform&apos;s core functionality.
</p>
@ -113,38 +108,52 @@ export default function TokenomicsSection() {
{activeState === 1 && (
<>
<h3 className="mb-2.5 text-lg font-medium text-white">
Team Allocations <span className="text-[#0CE77E]">(2%)</span>
Core Team & Dev Fund <span className="text-[#0CE77E]">(4%)</span>
</h3>
<p className="mb-3.5 text-white/75">
A small portion of tokens is reserved for the project team, vested over a
multi-year period to align incentives with long-term platform success. These
funds support ongoing development, attract top talent, and ensure continuous
innovation.
A small portion of tokens is reserved for the project team, vested over a multi-year period to align incentives with long-term platform success. These funds support ongoing development, attract top talent, and ensure continuous innovation.
</p>
<h3 className="mb-2.5 text-lg font-medium text-white">
Marketing Operations <span className="text-[#0CE77E]">(1%)</span>
Ecosystem Expansion <span className="text-[#0CE77E]">(2%)</span>
</h3>
<p className="mb-3.5 text-white/75">
Dedicated to promoting the platform and driving adoption through campaigns,
community programs, and partnerships.
</p>
<h3 className="mb-2.5 text-lg font-medium text-white">
Treasury & Ecosystem Development{" "}
<span className="text-[#0CE77E]">(2%)</span>
</h3>
<p className="text-white/75">
Reserved for research, grants, and maintaining operational resilience to
ensure long-term platform sustainability.
Allocated for fostering ecosystem growth through strategic partnerships and supporting GPU contributors. These grants aim to accelerate adoption and expand the network of value-aligned participants.
</p>
</>
)}
{activeState === 2 && (
<>
<h3 className="mb-2.5 text-lg font-medium text-white">
Liquidity Support <span className="text-[#0CE77E]">(2%)</span>
</h3>
<p className="mb-3.5 text-white/75">
Reserved for ensuring adequate decentralized exchange liquidity. This allocation provides the means to maintain healthy trading volumes, reduce slippage, and improve token accessibility.
</p>
<h3 className="mb-2.5 text-lg font-medium text-white">
Community & Contributors <span className="text-[#0CE77E]">(1%)</span>
</h3>
<p className="text-white/75">
Dedicated to rewarding community members, testers, and early supporters through bounties, hackathons, and feedback initiatives. This strengthens grassroots involvement and decentralized collaboration.
</p>
</>
)}
{activeState === 3 && (
<>
<h3 className="mb-2.5 text-lg font-medium text-white">
Infra & Emergency Reserve <span className="text-[#0CE77E]">(1%)</span>
</h3>
<p className="text-white/75">
Maintained as a contingency fund to support validators, decentralized storage systems, and infrastructure scalability. This reserve ensures the platform remains resilient and adaptable in dynamic environments.
</p>
</>
)}
</motion.div>
<motion.div
initial={{ opacity: 0 }}
whileInView={{ opacity: 1 }}
@ -152,7 +161,7 @@ export default function TokenomicsSection() {
viewport={{ once: true }}
className="mt-4 flex justify-center gap-2.5"
>
{[1, 2].map((_, index) => (
{[0, 1, 2, 3].map((_, index) => (
<button
key={index}
onClick={() => setActiveState(index)}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 40 KiB