From 97061f5523410827aa02ef037df2efe06db5766f Mon Sep 17 00:00:00 2001 From: NiftyAndy Date: Wed, 25 Sep 2024 02:12:10 -0400 Subject: [PATCH] Update websites copy to include Immutable zkEVM migration details --- .../degens/_dialogs/RenameStepper.tsx | 2 +- .../dashboard/overview/MyDegens.tsx | 19 +++++----- .../dashboard/overview/page.tsx | 4 +-- .../raffle/_TicketDialog/TicketStepper.tsx | 2 +- apps/app/src/constants/url.ts | 14 ++++---- apps/docs/docs/archive/rentals/overview.md | 2 +- apps/docs/docs/faq/comics.md | 2 +- apps/docs/docs/faq/nftl.md | 12 +++---- apps/docs/docs/guides/buying-nftl.md | 10 +++--- .../docs/overview/nfts/contract-addresses.md | 9 +++++ .../nfts/nifty-marketplace/_category_.json | 5 +++ .../nfts/{ => nifty-marketplace}/comics.md | 4 +-- .../nfts/{ => nifty-marketplace}/items.md | 14 ++++---- .../overview/nifty-dao/nftl/distribution.md | 2 +- .../docs/overview/nifty-dao/nftl/supply.md | 2 +- .../docs/overview/nifty-dao/nftl/trading.md | 16 +++++---- apps/docs/docusaurus.config.ts | 36 +++++++++---------- apps/web/src/app/(main)/page.tsx | 6 ++-- .../components/RoadmapTimeline/constants.tsx | 15 +++----- apps/web/src/constants/faq.tsx | 8 ++--- apps/web/src/constants/niftyverse.ts | 2 +- 21 files changed, 99 insertions(+), 87 deletions(-) create mode 100644 apps/docs/docs/overview/nfts/contract-addresses.md create mode 100644 apps/docs/docs/overview/nfts/nifty-marketplace/_category_.json rename apps/docs/docs/overview/nfts/{ => nifty-marketplace}/comics.md (96%) rename apps/docs/docs/overview/nfts/{ => nifty-marketplace}/items.md (55%) diff --git a/apps/app/src/app/(private-routes)/dashboard/degens/_dialogs/RenameStepper.tsx b/apps/app/src/app/(private-routes)/dashboard/degens/_dialogs/RenameStepper.tsx index f007a571..00a83c1c 100644 --- a/apps/app/src/app/(private-routes)/dashboard/degens/_dialogs/RenameStepper.tsx +++ b/apps/app/src/app/(private-routes)/dashboard/degens/_dialogs/RenameStepper.tsx @@ -101,7 +101,7 @@ function getSteps() { function getStepContent(step: number) { switch (step) { case 0: { - return '1000 NFTL required to rename. Please either claim NFTL from your degen or use Sushiswap to purchase.'; + return '1000 NFTL required to rename. Please either claim NFTL from your degen or use Uniswap to purchase.'; } case 1: return 'Note: renaming requires two transactions since the Nifty Degen contract is not already an approved spender.'; diff --git a/apps/app/src/app/(private-routes)/dashboard/overview/MyDegens.tsx b/apps/app/src/app/(private-routes)/dashboard/overview/MyDegens.tsx index 43eeceda..ea20fc52 100644 --- a/apps/app/src/app/(private-routes)/dashboard/overview/MyDegens.tsx +++ b/apps/app/src/app/(private-routes)/dashboard/overview/MyDegens.tsx @@ -70,31 +70,31 @@ const MyDegens = (): JSX.Element => { }, [characters, degensData]) as Degen[]; const settings = { - slidesToShow: 2, + slidesToShow: 3, adaptiveHeight: true, responsive: [ { breakpoint: 1350, settings: { - slidesToShow: 4, + slidesToShow: 3, }, }, { - breakpoint: 1200, + breakpoint: 1019, settings: { - slidesToShow: 3, + slidesToShow: 4, }, }, { - breakpoint: 900, + breakpoint: 800, settings: { - slidesToShow: 2, + slidesToShow: 3, }, }, { breakpoint: 600, settings: { - slidesToShow: 1, + slidesToShow: 2, }, }, ], @@ -173,11 +173,12 @@ const MyDegens = (): JSX.Element => { degen={degen} favs={favDegens} isDashboardDegen + onClickClaim={() => handleClaimDegen(degen)} onClickDetail={() => handleViewTraits(degen)} onClickEditName={() => handleClickEditName(degen)} - onClickClaim={() => handleClaimDegen(degen)} - onClickRent={() => handleRentDegen(degen)} onClickFavorite={() => handleClickFavorite(degen)} + onClickRent={() => handleRentDegen(degen)} + size="small" /> )) diff --git a/apps/app/src/app/(private-routes)/dashboard/overview/page.tsx b/apps/app/src/app/(private-routes)/dashboard/overview/page.tsx index e231ac93..8d8f497a 100644 --- a/apps/app/src/app/(private-routes)/dashboard/overview/page.tsx +++ b/apps/app/src/app/(private-routes)/dashboard/overview/page.tsx @@ -38,7 +38,7 @@ const DashboardOverview = (): JSX.Element => { return ( - + @@ -52,7 +52,7 @@ const DashboardOverview = (): JSX.Element => { */} - + diff --git a/apps/app/src/app/(public-routes)/raffle/_TicketDialog/TicketStepper.tsx b/apps/app/src/app/(public-routes)/raffle/_TicketDialog/TicketStepper.tsx index 3a886aa8..a49317f2 100644 --- a/apps/app/src/app/(public-routes)/raffle/_TicketDialog/TicketStepper.tsx +++ b/apps/app/src/app/(public-routes)/raffle/_TicketDialog/TicketStepper.tsx @@ -100,7 +100,7 @@ function getSteps() { function getStepContent(step: number) { switch (step) { case 0: { - return '1000 NFTL minimum required for raffle tickets. Please either claim NFTL from your degen(s) or use Sushiswap to purchase.'; + return '1000 NFTL minimum required for raffle tickets. Please either claim NFTL from your degen(s) or use Uniswap to purchase.'; } case 1: return 'Note: renaming requires two transactions since the NFTL Raffle contract is not already an approved spender.'; diff --git a/apps/app/src/constants/url.ts b/apps/app/src/constants/url.ts index 5748a62f..911a06f5 100644 --- a/apps/app/src/constants/url.ts +++ b/apps/app/src/constants/url.ts @@ -1,5 +1,5 @@ -import { mainnet } from 'viem/chains'; -import { getContractAddress, NFTL_CONTRACT } from './contracts'; +import { mainnet, immutableZkEvm } from 'viem/chains'; +import { getContractAddress, DEGEN_CONTRACT, NFTL_IMX_CONTRACT } from './contracts'; export const BASE_API_URL = 'https://odgwhiwhzb.execute-api.us-east-1.amazonaws.com/prod'; @@ -64,16 +64,16 @@ export const GET_RANK_BY_USER_ID_API = `${BASE_API_URL}/GetRank`; export const LEADERBOARD_USERNAMES_API_URL = `${BASE_API_URL}/profiles/public/profiles`; export const LEADERBOARD_SCORE_API_URL = `${BASE_API_URL}/scores`; -// SUSHISWAP URL FOR NFTL PURCHASE -export const NFTL_PURCHASE_URL = `https://app.sushi.com/swap?inputCurrency=ETH&outputCurrency=${getContractAddress( - mainnet.id, - NFTL_CONTRACT, +// QUICKSWAP URL FOR NFTL PURCHASE +export const NFTL_PURCHASE_URL = `https://quickswap.exchange/#/analytics/v3/token/${getContractAddress( + immutableZkEvm.id, + NFTL_IMX_CONTRACT, )}`; // DEGEN URLs export const DEGEN_COLLECTION_URL = 'https://opensea.io/collection/niftydegen'; export const DEGEN_PURCHASE_URL = (id: string | number) => - `https://opensea.io/assets/0x986aea67c7d6a15036e18678065eb663fc5be883/${id}`; + `https://opensea.io/assets/${getContractAddress(mainnet.id, DEGEN_CONTRACT)}/${id}`; // Marketplace URLs export const COMICS_PURCHASE_URL = 'https://tokentrove.com/collection/NiftyLeague'; diff --git a/apps/docs/docs/archive/rentals/overview.md b/apps/docs/docs/archive/rentals/overview.md index d4e02995..ed915820 100644 --- a/apps/docs/docs/archive/rentals/overview.md +++ b/apps/docs/docs/archive/rentals/overview.md @@ -4,7 +4,7 @@ title: Overview sidebar_position: 1 --- -In order to rent a DEGEN, you'll need NFTL in your crypto wallet (NFTL can easily be swapped on [SushiSwap](https://sushi.com/)). +In order to rent a DEGEN, you'll need NFTL in your crypto wallet (NFTL can easily be swapped on [Uniswap](https://app.uniswap.org/explore/tokens/ethereum/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638)). There will be a small, up-front rental fee, which is determined based on the number of people renting a DEGEN. Rental fees increase as demand increases. diff --git a/apps/docs/docs/faq/comics.md b/apps/docs/docs/faq/comics.md index 5eaf33e9..2f94e635 100644 --- a/apps/docs/docs/faq/comics.md +++ b/apps/docs/docs/faq/comics.md @@ -18,7 +18,7 @@ Read more about [Nifty League Comics](/docs/overview/nfts/comics).
Can I still claim comics? -No, all claims are now closed. Comics are available on secondary marketplaces such as [OpenSea](https://opensea.io/collection/nifty-league-comics) +No, all claims are now closed. Comics are available on Immutable zkEVM secondary marketplaces such as [TokenTrove](https://tokentrove.com/collection/NiftyLeague) The snapshot for Comics 5 and 6 was taken at [Ethereum Block 14115835](https://etherscan.io/block/14115835). Each DEGEN held at the snapshot received a comic 5 claim. Each tribe set, and meta background, received a comic 6 claim. Legendary DEGENs held at the snapshot received a claim for two comic 6s. diff --git a/apps/docs/docs/faq/nftl.md b/apps/docs/docs/faq/nftl.md index e3c71bb0..b09eff71 100644 --- a/apps/docs/docs/faq/nftl.md +++ b/apps/docs/docs/faq/nftl.md @@ -14,7 +14,7 @@ Click the NL icon on the [Profile](https://app.niftyleague.com/profile) section
What blockchain is NFTL on? -NFTL is currently only available on Ethereum mainnet. A bridge will be available to move your tokens to Immutable zkEVM in the near future! +NFTL is available on both Ethereum and Immutable zkEVM. While we started on Ethereum, Immutable zkEVM is now our main blockchain.
@@ -28,14 +28,14 @@ NFTL acts as a way to decentralize our ecosystem by ensuring important decisions
Where can I purchase NFTL? -Currently you can purchase NFTL by swapping ETH (or WETH) for NFTL on a decentralized trading platform like [Uniswap](https://uniswap.com/) or [SushiSwap](https://sushi.com/). The majority of our liquidity is on Uniswap so used start there for the lowest possible slippage. +You can purchase NFTL by swapping ETH (or WETH) for NFTL on decentralized trading platforms. For Immutable zkEVM use [QuickSwap](https://quickswap.exchange/#/analytics/v3/token/0xb0d7e9ff5fb8e739c4990f7920d8047acfae4884) and for Ethereum use [Uniswap](https://app.uniswap.org/explore/tokens/ethereum/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638). The majority of our liquidity is on Quickswap so start there for the lowest possible slippage & gas.
How much NFTL does a [DEGEN NFT](/docs/overview/nfts/degens/about) earn per day passively (regardless of gameplay)? -Each DEGEN accumulates 68.5 NFTL per day for 3 years post-launch (specifically, September 14, 2024). +DEGEN yield ended on September 14th, 2024. Previously they accumulated 68.5 NFTL per day for 3 years post-launch.
@@ -56,19 +56,19 @@ Navigate to your [Profile](https://app.niftyleague.com/profile) on the Nifty Lea
Are there plans to build a Nifty league DAO? -Yes! And the NFTL token will be used to govern the DAO. +Yes! Actually, it's already available on [Tally.xyz](https://www.tally.xyz/)! NFTL is used to govern the DAO.
Is there a max supply of NFTL? -While no hard number is set in the contract, the current max supply of Roughly 1.225 billion tokens will be available after Sept 14, 2024. The supply will only be increased if the DAO votes to do so. Read more about [supply](/docs/overview/nifty-dao/nftl/supply). +While no hard number is set in the contract, the current max supply is 1.25 billion tokens. The supply will only be increased if the DAO votes to do so. Read more about [supply](/docs/overview/nifty-dao/nftl/supply).
-When purchasing a DEGEN on OpenSea, how do I view the amount of NFTL a DEGEN has accumulated? +When purchasing a DEGEN on OpenSea, how do I verify the amount of NFTL a DEGEN has accumulated? - Navigate to the [Nifty League NFTL Token Contract](https://etherscan.io/address/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638#readContract) - Scroll to 5. accumulated diff --git a/apps/docs/docs/guides/buying-nftl.md b/apps/docs/docs/guides/buying-nftl.md index cded885c..866643d9 100644 --- a/apps/docs/docs/guides/buying-nftl.md +++ b/apps/docs/docs/guides/buying-nftl.md @@ -19,19 +19,19 @@ Tutorial video demonstrating buying Ethereum via [Coinbase](https://www.coinbase ### Step 3: -#### Option A: Swapping ETH for NFTL via Uniswap +#### Option A: Swapping ETH for NFTL via QuickSwap on Immutable zkEVM (preferred) -- https://info.uniswap.org/#/pools/0x1bcf855445335f72841cdecaed71f5901a807a7f +- https://quickswap.exchange/#/analytics/v3/token/0xb0d7e9ff5fb8e739c4990f7920d8047acfae4884 -#### Option B: Swapping ETH for NFTL via Sushiswap +#### Option B: Swapping ETH for NFTL via Uniswap on Ethereum Mainnet -- https://www.youtube.com/watch?v=20GnN_4XASw +- https://app.uniswap.org/explore/tokens/ethereum/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638 #### Option C: Swapping ETH for NFTL in MetaMask - https://www.youtube.com/watch?v=ruR6X9qRhNg -#### Option D: Swapping ETH for NFTL via CowSwap (preferred) +#### Option D: Swapping ETH for NFTL via CowSwap - https://swap.cow.fi/#/1/swap/ETH/NFTL diff --git a/apps/docs/docs/overview/nfts/contract-addresses.md b/apps/docs/docs/overview/nfts/contract-addresses.md new file mode 100644 index 00000000..503f367c --- /dev/null +++ b/apps/docs/docs/overview/nfts/contract-addresses.md @@ -0,0 +1,9 @@ +--- +id: contract-addresses +title: NFT Contract Addresses +sidebar_position: 3 +--- + +**DEGENs (Ethereum)**: 0x986aea67c7d6a15036e18678065eb663fc5be883 + +**Nifty Marketplace (Immutable zkEVM)**: 0x7c2118cc07e5bbc4c368ea29374b1f98d819e475 diff --git a/apps/docs/docs/overview/nfts/nifty-marketplace/_category_.json b/apps/docs/docs/overview/nfts/nifty-marketplace/_category_.json new file mode 100644 index 00000000..f988808b --- /dev/null +++ b/apps/docs/docs/overview/nfts/nifty-marketplace/_category_.json @@ -0,0 +1,5 @@ +{ + "label": "Nifty Marketplace", + "position": 2, + "collapsed": false +} diff --git a/apps/docs/docs/overview/nfts/comics.md b/apps/docs/docs/overview/nfts/nifty-marketplace/comics.md similarity index 96% rename from apps/docs/docs/overview/nfts/comics.md rename to apps/docs/docs/overview/nfts/nifty-marketplace/comics.md index 792fb847..3d36f93a 100644 --- a/apps/docs/docs/overview/nfts/comics.md +++ b/apps/docs/docs/overview/nfts/nifty-marketplace/comics.md @@ -1,7 +1,7 @@ --- id: comics title: Comics -sidebar_position: 2 +sidebar_position: 1 --- import ReactPlayer from 'react-player'; @@ -30,7 +30,7 @@ In addition, all [Meta background](/docs/overview/nfts/degens/backgrounds) DEGEN :::tip[Note] -Our collection of **Comics 1-6** are available for purchase on [OpenSea](https://opensea.io/collection/nifty-league-comics). +Our collection of **Comics 1-6** are available for purchase on [TokenTrove](https://tokentrove.com/collection/NiftyLeague). ::: diff --git a/apps/docs/docs/overview/nfts/items.md b/apps/docs/docs/overview/nfts/nifty-marketplace/items.md similarity index 55% rename from apps/docs/docs/overview/nfts/items.md rename to apps/docs/docs/overview/nfts/nifty-marketplace/items.md index cac21275..3e4ccfd7 100644 --- a/apps/docs/docs/overview/nfts/items.md +++ b/apps/docs/docs/overview/nfts/nifty-marketplace/items.md @@ -1,7 +1,7 @@ --- id: items -title: IMX Items -sidebar_position: 3 +title: Items +sidebar_position: 2 --- import ReactPlayer from 'react-player'; @@ -12,7 +12,9 @@ import VideoURL2 from '/video/citadel_key.mp4'; | -------------------------- | -------------------------- | -------------------------- | | ![](/img/items/full/4.gif) | ![](/img/items/full/5.gif) | ![](/img/items/full/3.gif) | -The initial 6 in-game items are earned via burning [comic pages](./comics). These 6 items have some of the highest power-scores in game, granting holders a strong early advantage in games. +The initial 6 in-game items are earned via burning [comic pages](./comics). These 6 items are the most exclusive in-game items in Nifty League games. + +Other rare items can be found in lootboxes or won in events in our games like [Nifty Smashers](/docs/overview/games/mobile-games/nifty-smashers). ### Wearables @@ -34,10 +36,10 @@ Earned from burning a full-set of all 6 pages -### Immutable (IMX) Items Marketplace +### Immutable zkEVM Items Marketplace -Items were originally minted on Immutable blockchain but will soon be migrated to Immutable zkEVM on Polygon. Stay Tuned for future details! +Immutable enables seamless blockchain integration for our games. Onboarding new users is crucial - with Immutable Passport it takes 5 seconds to create an account and immediately have a crypto wallet available. -After the migration we will set up an official marketplace for our items so users can easily interact and purchase additional items for use in our games. +Items and skins are an important part of our games. They help you stand-out, show-off, and just be yourself. With our migration to Immutable now complete, our next step is expanding our items marketplace so users can easily earn or purchase additional items for use in our games. ![alt text](/img/niftyverse/billboard_01.webp) diff --git a/apps/docs/docs/overview/nifty-dao/nftl/distribution.md b/apps/docs/docs/overview/nifty-dao/nftl/distribution.md index 6b61e6cc..35d2b6e9 100644 --- a/apps/docs/docs/overview/nifty-dao/nftl/distribution.md +++ b/apps/docs/docs/overview/nifty-dao/nftl/distribution.md @@ -20,7 +20,7 @@ Our team bootstrapped the [Nifty League DAO Treasury](https://etherscan.io/addre The initial planned distribution was 125M NFTL, however 142M leftovers from unclaimed AXS airdrop & DEGEN NFT Holders (below) were returned to the DAO as well. The DAO burned 35M NFTL on [April 15th, 2022](https://etherscan.io/tx/0x4e3f1177bd5288240039176a948c632e8027acc31f475d78a30bad47e5f9470b) and a large majority of remaining NFTL was re-allocated to our P2E system, and for SushiSwap liquidity incentives (more on [emissions](./emissions)). -In total the DAO retained 95.9M NFTL, most of which has been used to provide NFTL/ETH liquidity on [SushiSwap](https://sushi.com/) & [Uniswap](https://uniswap.org/). +In total the DAO retained 95.9M NFTL, most of which was used to provide NFTL/ETH liquidity on [SushiSwap](https://sushi.com/) & [Uniswap](https://uniswap.org/), and has since migrated to [QuickSwap](https://quickswap.exchange/#/analytics/v3/token/0xb0d7e9ff5fb8e739c4990f7920d8047acfae4884). ### Marketing - _8M NFTL_ diff --git a/apps/docs/docs/overview/nifty-dao/nftl/supply.md b/apps/docs/docs/overview/nifty-dao/nftl/supply.md index ed90ba98..6f61034e 100644 --- a/apps/docs/docs/overview/nifty-dao/nftl/supply.md +++ b/apps/docs/docs/overview/nifty-dao/nftl/supply.md @@ -10,7 +10,7 @@ Our launch in September 2021 kicked off the [initial distribution](./distributio In total, [NFTL emissions](./emissions) for the first 3 years added up to **850M NFTL**. DEGEN NFT daily emissions end on Sept 14, 2024 - at which point no further emissions are planned unless by order of the Nifty DAO. -After several burn events including 7th tribe claim, raffles and mini-games, the max supply amounts to **1.225B NFTL**. Please check [CoinGecko](https://www.coingecko.com/en/coins/nifty-league) for accurate up-to-date information regarding circulating & total supply. +After several burn events including 7th tribe claim, raffles and mini-games, the max supply amounts to **1.25B NFTL**. Please check [CoinGecko](https://www.coingecko.com/en/coins/nifty-league) for accurate up-to-date information regarding circulating & total supply.
![](/img/events/big_burn.webp)

diff --git a/apps/docs/docs/overview/nifty-dao/nftl/trading.md b/apps/docs/docs/overview/nifty-dao/nftl/trading.md index 63dc2075..035a81e7 100644 --- a/apps/docs/docs/overview/nifty-dao/nftl/trading.md +++ b/apps/docs/docs/overview/nifty-dao/nftl/trading.md @@ -8,25 +8,23 @@ sidebar_position: 2 **Ethereum**: 0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638 -**Immutable (IMX)**: TBA +**Immutable zkEVM**: 0xebffb58f0286cd49b2c0687f06edf612bc803198 ### Trading on Third-Party Exchanges :::tip[Nifty League does not offer any option to buy or sell NFTL] -Instead you can use third-party exchanges including [Uniswap](https://uniswap.org/) & [SushiSwap](https://sushi.com/) on Ethereum mainnet, or [QuickSwap](https://quickswap.exchange) on IMX / Polygon zkEVM. +Instead you can use third-party exchanges including [Uniswap](https://uniswap.org/) on Ethereum mainnet, or [QuickSwap](https://quickswap.exchange) on Immutable zkEVM. ::: ### Helpful Links -**Uniswap - NFTL** https://app.uniswap.org/#/tokens/ethereum/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638 +**QuickSwap - Immutable zkEVM** https://quickswap.exchange/#/analytics/v3/token/0xb0d7e9ff5fb8e739c4990f7920d8047acfae4884 -**Uniswap - NFTL/ETH LP** https://info.uniswap.org/#/pools/0x1bcf855445335f72841cdecaed71f5901a807a7f +**Uniswap - Ethereum** https://app.uniswap.org/explore/tokens/ethereum/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638 -**CowSwap - NFTL/ETH**: https://swap.cow.fi/#/1/swap/ETH/NFTL - -**SushiSwap - NFTL/ETH LP**: https://app.sushi.com/analytics/pools/0xf79321e80acd5fa590936f09acb90ec6471fcbc4?chainId=1 +**CowSwap - Ethereum**: https://swap.cow.fi/#/1/swap/ETH/NFTL **CoinGecko**: https://www.coingecko.com/en/coins/nifty-league @@ -34,4 +32,8 @@ Instead you can use third-party exchanges including [Uniswap](https://uniswap.or **Dextools**: https://www.dextools.io/app/en/ether/pair-explorer/0x1bcf855445335f72841cdecaed71f5901a807a7f +**NFTL Ethereum Token Contract**: https://etherscan.io/token/0x3c8D2FCE49906e11e71cB16Fa0fFeB2B16C29638 + +**NFTL Immutable zkEVM Token Contract**: https://explorer.immutable.com/address/0x6b66d473907a715aa573e44031355b34e77bb6de +
![](/img/space/satoshi_move.gif)
diff --git a/apps/docs/docusaurus.config.ts b/apps/docs/docusaurus.config.ts index 436e0c0c..14bddbbd 100644 --- a/apps/docs/docusaurus.config.ts +++ b/apps/docs/docusaurus.config.ts @@ -197,8 +197,12 @@ const config: Config = { title: 'NFTL', items: [ { - label: 'Uniswap NFTL/ETH LP', - href: 'https://info.uniswap.org/#/pools/0x1bcf855445335f72841cdecaed71f5901a807a7f', + label: 'QuickSwap NFTL/ETH LP (Immutable zkEVM)', + href: 'https://quickswap.exchange/#/analytics/v3/token/0xb0d7e9ff5fb8e739c4990f7920d8047acfae4884', + }, + { + label: 'Uniswap NFTL/ETH LP (Ethereum)', + href: 'https://app.uniswap.org/explore/tokens/ethereum/0x3c8d2fce49906e11e71cb16fa0ffeb2b16c29638', }, { label: 'CoinGecko', @@ -208,14 +212,14 @@ const config: Config = { label: 'CoinMarketCap', href: 'https://coinmarketcap.com/currencies/nifty-league', }, - { - label: 'Etherscan Token Contract', - href: 'https://etherscan.io/token/0x3c8D2FCE49906e11e71cB16Fa0fFeB2B16C29638', - }, - { - label: 'Dextools', - href: 'https://www.dextools.io/app/ether/pair-explorer/0xf79321e80acd5fa590936f09acb90ec6471fcbc4', - }, + // { + // label: 'Etherscan Token Contract', + // href: 'https://etherscan.io/token/0x3c8D2FCE49906e11e71cB16Fa0fFeB2B16C29638', + // }, + // { + // label: 'Dextools', + // href: 'https://www.dextools.io/app/ether/pair-explorer/0xf79321e80acd5fa590936f09acb90ec6471fcbc4', + // }, ], }, { @@ -226,20 +230,16 @@ const config: Config = { href: 'https://opensea.io/collection/niftydegen', }, { - label: 'OpenSea - COMICS', - href: 'https://opensea.io/collection/nifty-league-comics', - }, - { - label: 'Immutable - ITEMS', - href: 'https://market.immutable.com/collections/0xc21909b7E596000C01318668293A7DFB4B37A578', + label: 'TokenTrove - COMICS & ITEMS', + href: 'https://tokentrove.com/collection/NiftyLeague', }, { label: 'NiftyDegen NFT Contract', href: 'https://etherscan.io/token/0x986aea67C7d6A15036e18678065eb663Fc5BE883', }, { - label: 'Nifty Launch Comics Contract', - href: 'https://etherscan.io/address/0xBc8542e65ab801f7c9e3edd23238d37a2e3972d6', + label: 'NiftyMarketplace (Comics & Items) NFT Contract', + href: 'https://explorer.immutable.com/address/0x6b66d473907a715aa573e44031355b34e77bb6de', }, ], }, diff --git a/apps/web/src/app/(main)/page.tsx b/apps/web/src/app/(main)/page.tsx index be767f3d..54922524 100644 --- a/apps/web/src/app/(main)/page.tsx +++ b/apps/web/src/app/(main)/page.tsx @@ -645,8 +645,8 @@ const Home: NextPage = () => {

- NFTL IS OUR GOVERNANCE & UTILITY TOKEN. DEGENS EARN NFTL DAILY FOR THE FIRST 3 YEARS - POST-MINT. GOVERN THE FUTURE OF NIFTY LEAGUE & ACCESS EXCLUSIVE ASSET DROPS WITH NFTL. + NFTL IS OUR GOVERNANCE & UTILITY TOKEN. GOVERN THE FUTURE OF NIFTY LEAGUE & ACCESS + EXCLUSIVE GAME ASSETS.

{ > diff --git a/apps/web/src/components/RoadmapTimeline/constants.tsx b/apps/web/src/components/RoadmapTimeline/constants.tsx index 8be9b3ca..5829e189 100644 --- a/apps/web/src/components/RoadmapTimeline/constants.tsx +++ b/apps/web/src/components/RoadmapTimeline/constants.tsx @@ -120,18 +120,11 @@ export const ROADMAP_CARDS = [ title: 'Merch', body: ( <> -

+

We know our community couldn't wait to showcase their cool DEGENS on the streets! We are excited to unveil our{' '} - - Nifty League merch - {' '} - provided by Maddies. -

-

- Looking for our old Shopify merch? Links{' '} - here + merch !

@@ -319,7 +312,7 @@ export const ROADMAP_CARDS = [ <>

- + Comic pages {' '} @@ -572,7 +565,7 @@ export const ROADMAP_CARDS = [ }, { completed: true, - completionDate: 'Sept 24th, 2024 - Present', + completionDate: 'Sept 26th, 2024 - Present', image: { src: '/img/roadmap/dao_v02.webp', style: { top: '-80px' }, diff --git a/apps/web/src/constants/faq.tsx b/apps/web/src/constants/faq.tsx index ff15d565..03612c6c 100644 --- a/apps/web/src/constants/faq.tsx +++ b/apps/web/src/constants/faq.tsx @@ -34,14 +34,14 @@ export const FAQS = [ question: 'What is NFTL and what is it used for?', answer: ( <> - NFTL is our platform-wide governance token and utility token. The token is distributed freely to DEGEN NFT - holders and Nifty Smashers players through special events. The team has never, nor will ever, sell NFTL to the - public. It is available for trading on decentralized exchanges such as Uniswap and SushiSwap. + NFTL is our platform-wide governance and utility token. The token was distributed freely to DEGEN NFT holders + and Nifty Smashers players through special events. The team has never, nor will ever, sell NFTL to the public. + It is available for trading on decentralized exchanges such as QuickSwap (Immutable zkEVM) & Uniswap (Ethereum).

Utility includes, but is not limited to:

    -
  1. Governance: DAO formation planned Q4 2024
  2. +
  3. Governance: on-chain DAO governance available on Tally.xyz
  4. NFT drops: Raffles, NiftyVerse Land, special weapons/wearables, others TBA
  5. Ecosystem currency: Redemption of in-game currencies, compete-2-earn wagering (deprecated)
  6. Platform fees: Renaming DEGENs, DEGEN rentals (deprecated), Mini-Games (deprecated), etc
  7. diff --git a/apps/web/src/constants/niftyverse.ts b/apps/web/src/constants/niftyverse.ts index a63a1d23..8c0102c0 100644 --- a/apps/web/src/constants/niftyverse.ts +++ b/apps/web/src/constants/niftyverse.ts @@ -39,7 +39,7 @@ export const NIFTYVERSE_PROPERTIES = [ image: '/img/niftyverse/downtown_skyline.webp', }, { - name: 'SUSHI TOWN', + name: 'SUSHI VILLAGE', description: `If your idea of fun is shopping for hours on end or sitting down under a cherry blossom with a good book, you'll love the laid back, lush and peaceful Sushi Town.`, image: '/img/niftyverse/littletokyo_01.webp', },