-
Notifications
You must be signed in to change notification settings - Fork 4
SZN12 Boosts - TDH 1.4 #1522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
SZN12 Boosts - TDH 1.4 #1522
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
94565ea
TDH 1.4 - SZN12 Boosts
prxt6529 4959450
Merge branch 'main' into szn12-boosts-tdh1.4
prxt6529 e96f32c
WIP
prxt6529 e473aeb
WIP
prxt6529 6fb0286
WIP
prxt6529 80aef4e
WIP
prxt6529 5d8bfae
WIP
prxt6529 0f0bfca
WIP
prxt6529 c26f175
WIP
prxt6529 99aae31
Merge branch 'main' into szn12-boosts-tdh1.4
prxt6529 8ab057d
WIP
prxt6529 cf69dba
WIP
prxt6529 3fcba4b
WIP
prxt6529 41d50c2
WIP
prxt6529 ff3a508
WIP
prxt6529 6bdad81
WIP
prxt6529 972995d
Merge branch 'main' into szn12-boosts-tdh1.4
prxt6529 a8339be
WIP
prxt6529 52d784f
WIP
prxt6529 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,113 @@ | ||
| "use client"; | ||
|
|
||
| import { useSetTitle } from "@/contexts/TitleContext"; | ||
| import Link from "next/link"; | ||
| import { Col, Container, Row } from "react-bootstrap"; | ||
|
|
||
| const NAV_LINKS = [ | ||
| { href: "/network/tdh", label: "TDH" }, | ||
| { href: "/network/tdh/historic-boosts", label: "TDH Historic Boosts" }, | ||
| { href: "/network/stats", label: "Network Stats" }, | ||
| { href: "/network/levels", label: "Levels" }, | ||
| ] as const; | ||
|
|
||
| const BUTTON_LINK_CLASSES = | ||
| "tw-flex-1 tw-min-w-[150px] tw-text-center tw-inline-block tw-rounded-md tw-bg-[#eee] tw-text-black tw-font-medium hover:tw-bg-[#ddd] hover:tw-text-black tw-border-solid tw-border-[#222] tw-px-4 tw-py-2 tw-no-underline tw-w-full sm:tw-w-auto sm:tw-whitespace-nowrap"; | ||
|
|
||
| export default function DefinitionsClient() { | ||
| useSetTitle("Definitions | Network"); | ||
|
|
||
| return ( | ||
| <Container className="tw-min-h-screen tw-pt-12 tw-pb-12"> | ||
| <Row> | ||
| <Col> | ||
| <h1>Definitions</h1> | ||
|
|
||
| <div className="tw-mt-6 tw-space-y-3 tw-text-base lg:tw-text-lg"> | ||
| <p> | ||
| <b> | ||
| <u>Cards Collected:</u> | ||
| </b>{" "} | ||
| Total number of The Memes NFTs owned. | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>Unique Memes:</u> | ||
| </b>{" "} | ||
| Total number of unique Meme NFTs owned. | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>Meme Sets:</u> | ||
| </b>{" "} | ||
| Number of complete sets of The Memes (all SZNs or a specific SZN). | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>Meme Sets -1 / -2:</u> | ||
| </b>{" "} | ||
| Complete sets missing 1 or 2 cards respectively. | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>Genesis Sets:</u> | ||
| </b>{" "} | ||
| Complete set of the first three Meme NFTs. | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>Purchases / Sales:</u> | ||
| </b>{" "} | ||
| Count of bought/sold NFTs (Memes or Gradients). | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>Purchases (ETH) / Sales (ETH):</u> | ||
| </b>{" "} | ||
| ETH spent/received for those NFTs. | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>Transfers In / Out:</u> | ||
| </b>{" "} | ||
| NFTs moved into/out of an address. | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>TDH (unweighted):</u> | ||
| </b>{" "} | ||
| "Total Days Held" — each NFT contributes one unit per day held, | ||
| summed across NFTs, calculated daily at 00:00 UTC. | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>TDH (unboosted):</u> | ||
| </b>{" "} | ||
| TDH weighted by edition size (FirstGM 3,941 = 1.0 baseline). | ||
| </p> | ||
| <p> | ||
| <b> | ||
| <u>TDH:</u> | ||
| </b>{" "} | ||
| TDH (unboosted) × boosters. For the current rules, see{" "} | ||
| <Link | ||
| href="/network/tdh" | ||
| className="tw-inline-block tw-rounded-md tw-bg-[#eee] tw-text-black tw-border-solid tw-border-[#222] hover:tw-bg-[#ddd] hover:tw-text-black tw-px-1 tw-py-0.5 tw-no-underline tw-text-md tw-font-medium"> | ||
| TDH | ||
| </Link> | ||
|
prxt6529 marked this conversation as resolved.
|
||
| . | ||
| </p> | ||
| </div> | ||
|
|
||
| <div className="tw-mt-10 tw-flex tw-flex-col tw-gap-3 sm:tw-flex-row sm:tw-flex-wrap sm:tw-gap-3"> | ||
| {NAV_LINKS.map(({ href, label }) => ( | ||
| <Link key={href} href={href} className={BUTTON_LINK_CLASSES}> | ||
| {label} | ||
| </Link> | ||
| ))} | ||
| </div> | ||
| </Col> | ||
| </Row> | ||
| </Container> | ||
| ); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| import { getAppMetadata } from "@/components/providers/metadata"; | ||
| import DefinitionsClient from "./page.client"; | ||
|
|
||
| export default function Definitions() { | ||
| return <DefinitionsClient />; | ||
| } | ||
|
|
||
| export const generateMetadata = async () => { | ||
| return getAppMetadata({ | ||
| title: "Definitions", | ||
| description: "Network", | ||
| }); | ||
| }; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.