diff --git a/app/network/xtdh/page.client.tsx b/app/network/xtdh/page.client.tsx new file mode 100644 index 0000000000..401cdb2da4 --- /dev/null +++ b/app/network/xtdh/page.client.tsx @@ -0,0 +1,108 @@ +"use client"; + +import { useSetTitle } from "@/contexts/TitleContext"; +import Link from "next/link"; +import { Col, Container, Row } from "react-bootstrap"; +export default function XTDHMainPage() { + useSetTitle("xTDH | Network"); + + return ( + + + +

xTDH

+

+ xTDH is an extension of TDH which helps to include other NFT holders to 6529 ecosystem and offer them all the benefits of TDH. +

+

+ I tracks: +

    +
  1. How much your memes produce
  2. +
  3. How much xTDH you receive from grants on tokens you own
  4. +
  5. How much xTDH you’ve given away via grants
  6. +
+

+

+ Your total xTDH balance increases every day at midnight based on these rules. +

+ + +
+

Produced xTDH (from your Memes)

+

+ Every meme you hold that produces TDH also produces xTDH. So every midnight you produce TDH you also produce xTDH following this formula: +

+

produced_xTDH_today = (TDH gained today) × xTDH_coefficient

+

xTDH_coefficient is currently set to 0.1, but is subject to change in the future.

+
+ +
+

Received xTDH (from grants on tokens you own)

+

+ A grant lets someone “give away” a portion of their xTDH produced in the future to *all or some* tokens in an ERC721 collection. + If you own a token that has active grants, you receive a portion of those grants every day. +

+

How much do you receive?

+

+ Each grant has: +

    +
  1. rate
  2. +
  3. denominator
  4. +
+

+

+ Denominator can be configured as: +

    +
  1. Full - grant every token in the collection (in which case denominator is total supply)
  2. +
  3. Partial - grant a specific set of tokens in a collection (in which case denominator is number of those tokens)
  4. +
+

+

+ Each token receives: +

+

grant_amount_per_token = rate / denominator

+

You receive this amount **only for the time you actually owned the token**, and only while the grant was active.

+

First increment will be given out when on midnight when at least 24 hours have passed since start of the grant and at least 24 hours has passed since you acquired the token.

+

Ownership boundaries matter

+

Just like with TDH, "transfers" inside the same consolidation group do not reset the ownership window. Sales or transfers across groups do.

+

If you sell your token then the xTDH does not transfer with it. It goes back to the grantor.

+
+
+

Granted out xTDH (what you give away)

+

You can't give away xTDH which is already pinned to your identity, but you can give away future xTDH earnings via grants. You can give away it all or some part of it. The total amount you are giving away is calculated like this:

+

+

    +
  1. + sum up all grant rates which have been active for at least 24h +
  2. +
  3. + sum up all portions of grantees who have been holding the token less than 24h +
  4. +
  5. subtract the latter from former
  6. +
+

+
+
+

Your daily xTDH rate

+

xtdh_rate = produced_today - granted_out_today + received_today

+

... and ...

+

xtdh_total = xtdh_total_previous + xtdh_rate

+

Example:

+

If today you:

+
    +
  1. produce 20 xTDH
  2. +
  3. have grants giving away 5 xTDH
  4. +
  5. receive 3 xTDH from grants on tokens you own
  6. +
+

Then:

+

xtdh_rate = 20 - 5 + 3 = 18 xTDH

+
+
+

Can xTDH ever get lost?

+

No. All the produced xTDH always goes to someone. It never vanishes. If a grantee sells their token then the xTDH they had gained goes back to the grantor.

+
+ +
+
+ ); +} diff --git a/app/network/xtdh/page.tsx b/app/network/xtdh/page.tsx new file mode 100644 index 0000000000..5e67353064 --- /dev/null +++ b/app/network/xtdh/page.tsx @@ -0,0 +1,13 @@ +import { getAppMetadata } from "@/components/providers/metadata"; +import XTDHMainPage from "./page.client"; + +export default function XTDH() { + return ; +} + +export const generateMetadata = async () => { + return getAppMetadata({ + title: "xTDH", + description: "Network", + }); +}; diff --git a/hooks/useSidebarSections.ts b/hooks/useSidebarSections.ts index bca1e48e16..2df2e385af 100644 --- a/hooks/useSidebarSections.ts +++ b/hooks/useSidebarSections.ts @@ -22,6 +22,7 @@ export function useSidebarSections( { name: "NFT Activity", href: "/nft-activity" }, { name: "Memes Calendar", href: "/meme-calendar" }, { name: "TDH", href: "/network/tdh" }, + { name: "xTDH", href: `/network/xtdh` }, ], subsections: [ {