UANG Token Logo

UANG Token

ALERT: dead

About UANG

Listings

Token 2 years
CoinMarketCap 2 years
white paper

UangMarket is the world's first one-stop chain game aggregation platformwith UANG as the core. It connects games, players and unions and establishes a rich GameFi ecosystem. UangMarket proposes the Steam concept of on-chain GameFi field and strive to build a GameFi aggregation service platform integrating games, information, skills and community.

It aims to establish a rich GameFi ecosystem which can better promote the development of GameFi industry and realize the scenes and large-scale commercialization of games and NFT in the blockchain field.

Social

Laser Scorebeta Last Audit: 21 February 2022

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

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

UANG.addLiquidity(uint256,uint256) (#1317-1331) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in UANG._transfer(address,address,uint256) (#1141-1209):
External calls:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
External calls sending eth:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
State variables written after the call(s):
- super._transfer(address(this),deadWallet,contractTokenBalance.mul(burnFee).div(totalFees)) (#1182)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#834)
- _balances[recipient] = _balances[recipient].add(amount) (#835)
- super._transfer(address(this),_marketingWalletAddress,marketing2Tokens) (#1184)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#834)
- _balances[recipient] = _balances[recipient].add(amount) (#835)
Reentrancy in UANG._transfer(address,address,uint256) (#1141-1209):
External calls:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- swapAndLiquify(swapTokens) (#1186)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
External calls sending eth:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- swapAndLiquify(swapTokens) (#1186)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1204)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#834)
- _balances[recipient] = _balances[recipient].add(amount) (#835)
- super._transfer(from,to,amount) (#1207)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#834)
- _balances[recipient] = _balances[recipient].add(amount) (#835)
- swapping = false (#1189)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Pragma version^0.6.2 (#26) allows old versions
Pragma version^0.6.2 (#41) allows old versions
Pragma version^0.6.2 (#107) allows old versions
Pragma version^0.6.2 (#252) allows old versions
Pragma version^0.6.2 (#306) allows old versions
Pragma version^0.6.2 (#445) allows old versions
Pragma version^0.6.2 (#498) allows old versions
Pragma version^0.6.2 (#516) allows old versions
Pragma version^0.6.2 (#598) allows old versions
Pragma version^0.6.2 (#622) allows old versions
Pragma version^0.6.2 (#925) 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

UANG.addLiquidity(uint256,uint256) (#1317-1331) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
Ensure that all the return values of the function calls are used.

Additional information: link

UANG.antiWhale(address,address,uint256) (#1129-1139) compares to a boolean constant:
-_isExcludedFromAntiWhale[sender] == false && _isExcludedFromAntiWhale[recipient] == false (#1132-1133)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#21-24) is never used and should be removed
ERC20._burn(address,uint256) (#869-877) is never used and should be removed
SafeMath.mod(uint256,uint256) (#230-232) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#246-249) is never used and should be removed
SafeMathInt.abs(int256) (#95-98) is never used and should be removed
SafeMathInt.add(int256,int256) (#86-90) is never used and should be removed
SafeMathInt.div(int256,int256) (#66-72) is never used and should be removed
SafeMathInt.mul(int256,int256) (#54-61) is never used and should be removed
SafeMathInt.sub(int256,int256) (#77-81) is never used and should be removed
SafeMathInt.toUint256Safe(int256) (#101-104) is never used and should be removed
SafeMathUint.toInt256Safe(uint256) (#34-38) is never used and should be removed
Remove unused functions.

Additional information: link

UANG.totalFees (#952) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(charityFee).add(marketing1Fee).add(marketing2Fee).add(burnFee)
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in UANG.sendToFee(uint256) (#1250-1260):
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
Low level call in UANG.sendToCharity(uint256) (#1263-1273):
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

UANG.setSwapTokensAtAmount(uint256) (#1072-1074) should emit an event for:
- swapTokensAtAmount = amount (#1073)
UANG.setLiquiditFee(uint256) (#1084-1088) should emit an event for:
- liquidityFee = value (#1085)
- totalFees = liquidityFee.add(marketing1Fee).add(marketing2Fee).add(charityFee).add(burnFee) (#1086)
UANG.setMarketing1Fee(uint256) (#1090-1094) should emit an event for:
- marketing1Fee = value (#1091)
- totalFees = liquidityFee.add(marketing1Fee).add(marketing2Fee).add(charityFee).add(burnFee) (#1092)
UANG.setMarketing2Fee(uint256) (#1096-1100) should emit an event for:
- marketing2Fee = value (#1097)
- totalFees = liquidityFee.add(marketing1Fee).add(marketing2Fee).add(charityFee).add(burnFee) (#1098)
UANG.setBurnFee(uint256) (#1101-1105) should emit an event for:
- burnFee = value (#1102)
- totalFees = liquidityFee.add(marketing1Fee).add(marketing2Fee).add(charityFee).add(burnFee) (#1103)
UANG.setMaxTransferAmountRate(uint256) (#1227-1230) should emit an event for:
- maxTransferAmountRate = _val (#1229)
UANG.setMaxWalletRate(uint256) (#1232-1235) should emit an event for:
- maxWalletAmountRate = _val (#1234)
Emit an event for critical parameter changes.

Additional information: link

UANG.updateUniswapV2Router(address)._uniswapV2Pair (#1052-1053) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1054)
UANG.setMarketingWallet(address).wallet (#1076) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1077)
UANG.setCharityWallet(address).wallet (#1080) lacks a zero-check on :
- _charityWallet = wallet (#1081)
Check that the address is not zero.

Additional information: link

Reentrancy in UANG._transfer(address,address,uint256) (#1141-1209):
External calls:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
External calls sending eth:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
State variables written after the call(s):
- sendToFee(marketing1Tokens) (#1180)
- _allowances[owner][spender] = amount (#900)
Reentrancy in UANG._transfer(address,address,uint256) (#1141-1209):
External calls:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- swapAndLiquify(swapTokens) (#1186)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
External calls sending eth:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- swapAndLiquify(swapTokens) (#1186)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
State variables written after the call(s):
- swapAndLiquify(swapTokens) (#1186)
- _allowances[owner][spender] = amount (#900)
Reentrancy in UANG.constructor() (#993-1027):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#999-1000)
State variables written after the call(s):
- _mint(owner(),100000000000000000 * (10 ** 9)) (#1026)
- _balances[account] = _balances[account].add(amount) (#854)
- _isExcludedFromAntiWhale[msg.sender] = true (#1007)
- _isExcludedFromAntiWhale[address(0)] = true (#1008)
- _isExcludedFromAntiWhale[address(this)] = true (#1009)
- _isExcludedFromAntiWhale[deadWallet] = true (#1010)
- excludeFromFees(owner(),true) (#1012)
- _isExcludedFromFees[account] = excluded (#1059)
- excludeFromFees(_marketingWalletAddress,true) (#1013)
- _isExcludedFromFees[account] = excluded (#1059)
- excludeFromFees(_charityWallet,true) (#1014)
- _isExcludedFromFees[account] = excluded (#1059)
- excludeFromFees(0xB8f9774a08C68E57Ea14Ca5E8C53Cc2c3DeABd6d,true) (#1015)
- _isExcludedFromFees[account] = excluded (#1059)
- excludeFromFees(address(this),true) (#1016)
- _isExcludedFromFees[account] = excluded (#1059)
- _isExcludedFromMaxWallet[uniswapV2Pair] = true (#1018)
- _isExcludedFromMaxWallet[deadWallet] = true (#1019)
- _isExcludedFromMaxWallet[address(this)] = true (#1020)
- _isExcludedFromMaxWallet[msg.sender] = true (#1021)
- _mint(owner(),100000000000000000 * (10 ** 9)) (#1026)
- _totalSupply = _totalSupply.add(amount) (#853)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1006)
- automatedMarketMakerPairs[pair] = value (#1119)
- uniswapV2Pair = _uniswapV2Pair (#1003)
- uniswapV2Router = _uniswapV2Router (#1002)
Reentrancy in UANG.swapAndLiquify(uint256) (#1275-1296):
External calls:
- swapTokensForEth(half) (#1287)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- addLiquidity(otherHalf,newBalance) (#1293)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1293)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1293)
- _allowances[owner][spender] = amount (#900)
Reentrancy in UANG.updateUniswapV2Router(address) (#1048-1055):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1052-1053)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1054)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in UANG._transfer(address,address,uint256) (#1141-1209):
External calls:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
External calls sending eth:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#901)
- sendToFee(marketing1Tokens) (#1180)
- Transfer(sender,recipient,amount) (#836)
- super._transfer(address(this),deadWallet,contractTokenBalance.mul(burnFee).div(totalFees)) (#1182)
- Transfer(sender,recipient,amount) (#836)
- super._transfer(address(this),_marketingWalletAddress,marketing2Tokens) (#1184)
Reentrancy in UANG._transfer(address,address,uint256) (#1141-1209):
External calls:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- swapAndLiquify(swapTokens) (#1186)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
External calls sending eth:
- sendToCharity(charityTokens) (#1179)
- (success) = address(_charityWallet).call{value: newBalance}() (#1269)
- sendToFee(marketing1Tokens) (#1180)
- (success) = address(_marketingWalletAddress).call{value: newBalance}() (#1256)
- swapAndLiquify(swapTokens) (#1186)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#901)
- swapAndLiquify(swapTokens) (#1186)
- SwapAndLiquify(half,newBalance,otherHalf) (#1295)
- swapAndLiquify(swapTokens) (#1186)
- Transfer(sender,recipient,amount) (#836)
- super._transfer(from,to,amount) (#1207)
- Transfer(sender,recipient,amount) (#836)
- super._transfer(from,address(this),fees) (#1204)
Reentrancy in UANG.constructor() (#993-1027):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#999-1000)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1061)
- excludeFromFees(_charityWallet,true) (#1014)
- ExcludeFromFees(account,excluded) (#1061)
- excludeFromFees(0xB8f9774a08C68E57Ea14Ca5E8C53Cc2c3DeABd6d,true) (#1015)
- ExcludeFromFees(account,excluded) (#1061)
- excludeFromFees(owner(),true) (#1012)
- ExcludeFromFees(account,excluded) (#1061)
- excludeFromFees(address(this),true) (#1016)
- ExcludeFromFees(account,excluded) (#1061)
- excludeFromFees(_marketingWalletAddress,true) (#1013)
- SetAutomatedMarketMakerPair(pair,value) (#1122)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1006)
- Transfer(address(0),account,amount) (#855)
- _mint(owner(),100000000000000000 * (10 ** 9)) (#1026)
Reentrancy in UANG.swapAndLiquify(uint256) (#1275-1296):
External calls:
- swapTokensForEth(half) (#1287)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1307-1313)
- addLiquidity(otherHalf,newBalance) (#1293)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1293)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadWallet,block.timestamp) (#1323-1330)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#901)
- addLiquidity(otherHalf,newBalance) (#1293)
- SwapAndLiquify(half,newBalance,otherHalf) (#1295)
Apply the check-effects-interactions pattern.

Additional information: link

Different versions of Solidity is used:
- Version used: ['^0.6.12', '^0.6.2']
- ^0.6.12 (#3)
- ^0.6.2 (#26)
- ^0.6.2 (#41)
- ^0.6.2 (#107)
- ^0.6.2 (#252)
- ^0.6.2 (#306)
- ^0.6.2 (#445)
- ^0.6.2 (#498)
- ^0.6.2 (#516)
- ^0.6.2 (#598)
- ^0.6.2 (#622)
- ^0.6.2 (#925)
Use one Solidity version.

Additional information: link

Function IUniswapV2Router01.WETH() (#310) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#462) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#463) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#480) is not in mixedCase
Parameter UANG.setEnableAntiwhale(bool)._val (#1211) is not in mixedCase
Parameter UANG.setMaxTransferAmountRate(uint256)._val (#1227) is not in mixedCase
Parameter UANG.setMaxWalletRate(uint256)._val (#1232) is not in mixedCase
Variable UANG._isBlacklisted (#944) is not in mixedCase
Variable UANG._marketingWalletAddress (#955) is not in mixedCase
Variable UANG._charityWallet (#956) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#22)" inContext (#16-25)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#315) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#316)
Variable UANG.marketing1Fee (#949) is too similar to UANG.marketing2Fee (#950)
Variable UANG._transfer(address,address,uint256).marketing1Tokens (#1176) is too similar to UANG._transfer(address,address,uint256).marketing2Tokens (#1177)
Prevent variables from having similar names.

Additional information: link

UANG.constructor() (#993-1027) uses literals with too many digits:
- _mint(owner(),100000000000000000 * (10 ** 9)) (#1026)
UANG.maxTransferAmount() (#1218-1225) uses literals with too many digits:
- totalSupply().mul(maxTransferAmountRate).div(1000000) (#1221)
UANG.maxTransferAmount() (#1218-1225) uses literals with too many digits:
- totalSupply().mul(1000000).div(1000000) (#1224)
UANG.setMaxTransferAmountRate(uint256) (#1227-1230) uses literals with too many digits:
- require(bool,string)(_val <= 1000000,max 100%) (#1228)
UANG.setMaxWalletRate(uint256) (#1232-1235) uses literals with too many digits:
- require(bool,string)(_val <= 1000000,max 100%) (#1233)
UANG.maxWalletAmount() (#1240-1247) uses literals with too many digits:
- totalSupply().mul(maxWalletAmountRate).div(1000000) (#1243)
UANG.maxWalletAmount() (#1240-1247) uses literals with too many digits:
- totalSupply().mul(1000000).div(1000000) (#1246)
UANG.slitherConstructorVariables() (#927-1335) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#939)
UANG.slitherConstructorVariables() (#927-1335) uses literals with too many digits:
- maxWalletAmountRate = 1000000 (#940)
UANG.slitherConstructorVariables() (#927-1335) uses literals with too many digits:
- swapTokensAtAmount = 100000000000000 * (10 ** 9) (#942)
UANG.slitherConstructorVariables() (#927-1335) uses literals with too many digits:
- maxTransferAmountRate = 1000000 (#958)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#49) is never used in SafeMathInt (#47-105)
Remove unused state variables.

Additional information: link

UANG.charityFee (#947) should be constant
UANG.deadWallet (#939) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#290-293)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#299-303)
name() should be declared external:
- ERC20.name() (#676-678)
symbol() should be declared external:
- ERC20.symbol() (#684-686)
decimals() should be declared external:
- ERC20.decimals() (#701-703)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#727-730)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#735-737)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#746-749)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#764-772)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#786-789)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#805-808)
setExcludedFromAntiWhale(address,bool) should be declared external:
- UANG.setExcludedFromAntiWhale(address,bool) (#1033-1035)
isExcludedFromAntiWhale(address) should be declared external:
- UANG.isExcludedFromAntiWhale(address) (#1037-1039)
setExcludedFromMaxWallet(address,bool) should be declared external:
- UANG.setExcludedFromMaxWallet(address,bool) (#1041-1043)
isExcludedFromMaxWallet(address) should be declared external:
- UANG.isExcludedFromMaxWallet(address) (#1045-1047)
updateUniswapV2Router(address) should be declared external:
- UANG.updateUniswapV2Router(address) (#1048-1055)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- UANG.excludeMultipleAccountsFromFees(address[],bool) (#1064-1070)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- UANG.setAutomatedMarketMakerPair(address,bool) (#1107-1111)
setEnableAntiwhale(bool) should be declared external:
- UANG.setEnableAntiwhale(bool) (#1211-1213)
setMaxTransferAmountRate(uint256) should be declared external:
- UANG.setMaxTransferAmountRate(uint256) (#1227-1230)
setMaxWalletRate(uint256) should be declared external:
- UANG.setMaxWalletRate(uint256) (#1232-1235)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 9% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to find token contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for UANG

News for UANG