Next Token Token Logo

NXT [Next] Token

ALERT: dead

About NXT

Listings

Token 4 years
CoinGecko 4 years
CoinMarketCap 4 years
white paper

What Is Next Token [NXT]?

The Next Token is above all the token of a platform (market place) in the course of development of putting in relation between professionals and influencers.

Its function at the heart of the platform's ecosystem is to allow token holders to benefit from advantages up to free under the condition of stacking NXT on it.
It will facilitate the search for relevant influencers for all companies through an intelligent algorithm based on a rating system, engagement rate and many other metrics.

How Many Next Token Are There in Circulation?

100% of the circulation so 100 000 000 000 NXT were issued at the fairlaunch on September 18, 2021.
The goal is to make regular burns with the process of Buy Back to Burn which consists in buying back supply with the BNB that we take on taxes, to reinject them and burn definitively the Next Token.

The first burn of the Next Token was done in Buy back and burn of a value of 100 BNB equivalent to 500 000 000 of NXT on the wallet 0x00000000000000000000000000000000000000000000dead.

Circulation supply: 99,500,000,000 NXT
Total supply: 99,500,000,000 NXT
Max supply: 100,000,000,000 NXT

These fees are distributed as follows. 15% at purchase:

* 10% for the liquidity pool
* 5% for marketing, development.

On the sale side, 17% of which 2% is added as follows

* 2% for the liquidity pool

Who is the Founder of Next Token?

The founder has done a KYC at interfi.finance.
Here is the link to the certificate: https://github.com/interfinetwork/kyc-verification-certificates/blob/main/Next_KYCReport_InterFi.png

Where Can I Buy Next Token (NXT)?

At the moment, NXT is available as BNB/NXT on the Dex Pancakeswap.

Here is the link: https://pancakeswap.finance/swap?outputCurrency=0x8e428aa75b271ebf905db7e3f2970453e976481e

Social

Laser Scorebeta Last Audit: 30 April 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

NextToken.recoverWrongTransaction(uint256) (#605-607) ignores return value by this.transfer(_ecosystemAddress,_tokenAmount) (#606)
NextToken.recoverWrongTokens(address,uint256) (#615-617) ignores return value by IBEP20(_tokenAddress).transfer(_ecosystemAddress,_tokenAmount) (#616)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

NextToken.editEcosystemFee(uint256) (#661-665) contains a tautology or contradiction:
- require(bool,string)(newFee >= 0 && newFee <= 100,BEP20: only between 0% -> 100%) (#662)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

NextToken.constructor(address,uint256) (#431-442) uses literals with too many digits:
- _totalSupply = 100000000000000000000000000000 (#435)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

NextToken.isBlacklisted(address) (#503-505) uses a Boolean constant improperly:
-_blacklists[addr] && true (#504)
NextToken.isWithoutFees(address) (#510-512) uses a Boolean constant improperly:
-_addressWithoutFees[addr] && true (#511)
Verify and simplify the condition.

Additional information: link

NextToken.allowance(address,address).owner (#530) shadows:
- Ownable.owner() (#55-57) (function)
NextToken._approve(address,address,uint256).owner (#747) shadows:
- Ownable.owner() (#55-57) (function)
Rename the local variables that shadow another component.

Additional information: link

NextToken.editEcosystemFee(uint256) (#661-665) should emit an event for:
- _ecosystemFee = newFee (#664)
Emit an event for critical parameter changes.

Additional information: link

NextToken.constructor(address,uint256).ecosystemAddress (#431) lacks a zero-check on :
- _ecosystemAddress = address(ecosystemAddress) (#438)
Check that the address is not zero.

Additional information: link

Context._msgData() (#21-23) is never used and should be removed
NextToken._burn(address,uint256) (#726-732) is never used and should be removed
NextToken._burnFrom(address,uint256) (#761-764) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#284-293) is never used and should be removed
SafeMath.mod(uint256,uint256) (#244-246) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#310-319) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#115-121) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#157-162) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#169-174) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#140-150) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#128-133) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#1) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Parameter NextToken.recoverWrongTransaction(uint256)._tokenAmount (#605) is not in mixedCase
Parameter NextToken.recoverWrongTokens(address,uint256)._tokenAddress (#615) is not in mixedCase
Parameter NextToken.recoverWrongTokens(address,uint256)._tokenAmount (#615) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#74-76)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#82-85)
increaseAllowance(address,uint256) should be declared external:
- NextToken.increaseAllowance(address,uint256) (#576-579)
decreaseAllowance(address,uint256) should be declared external:
- NextToken.decreaseAllowance(address,uint256) (#595-598)
recoverWrongTransaction(uint256) should be declared external:
- NextToken.recoverWrongTransaction(uint256) (#605-607)
addBlacklistAddress(address) should be declared external:
- NextToken.addBlacklistAddress(address) (#622-624)
removeBlacklistAddress(address) should be declared external:
- NextToken.removeBlacklistAddress(address) (#629-631)
addAddressWithoutFees(address) should be declared external:
- NextToken.addAddressWithoutFees(address) (#636-638)
removeAddressWithoutFees(address) should be declared external:
- NextToken.removeAddressWithoutFees(address) (#643-645)
editEcosystemAddress(address) should be declared external:
- NextToken.editEcosystemAddress(address) (#650-656)
editEcosystemFee(uint256) should be declared external:
- NextToken.editEcosystemFee(uint256) (#661-665)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 10% buy tax and 0% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d number of PancakeSwap swaps is low.


Telegram account has relatively few subscribers


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find whitepaper link on the website


Alexa traffic rank is relatively low

Additional information: link


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for NXT

News for NXT