URANIUM Digital Token Logo

URAN [URANIUM Digital] Token

ALERT: rug pull scam

About URAN

Listings

Not Found
Token 4 years
white paper

Create decentralized tokens with airdrop and token burn functionality. Through their digital platform, without programming knowledge, paying a small commission for the service.

Laser Scorebeta Last Audit: 14 October 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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


Token is flagged by TokenSniffer due to presence of exploit in contract code


Contract ownership is not renounced (belongs to a wallet)

UraniumDigital.startSale(uint256,uint256,uint256,uint256,uint256) (#201-208) should emit an event for:
- sSBlock = _sSBlock (#202)
- sEBlock = _sEBlock (#203)
- sChunk = _sChunk (#204)
- sPrice = _sPrice (#205)
- sCap = _sCap (#206)
UraniumDigital.startAirdrop(uint256,uint256,uint256,uint256) (#194-200) should emit an event for:
- aSBlock = _aSBlock (#195)
- aEBlock = _aEBlock (#196)
- aAmt = _aAmt (#197)
- aCap = _aCap (#198)
Emit an event for critical parameter changes.

Additional information: link

Owned.transferOwnership(address)._newOwner (#53) lacks a zero-check on :
- newOwner = _newOwner (#54)
UraniumDigital.clearETH()._owner (#211) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#212)
Check that the address is not zero.

Additional information: link

UraniumDigital.getAirdrop(address) (#150-166) compares to a boolean constant:
-require(bool,string)(_hasClaimed[msg.sender] != true,You have already claimed!) (#153)
Remove the equality to the boolean constant.

Additional information: link

SafeMath.mul(uint256,uint256) (#12-15) is never used and should be removed
SafeMath.div(uint256,uint256) (#16-19) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.5.10 is not recommended for deployment
Pragma version>=0.5.10 (#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

Variable TokenBEP20._totalSupply (#70) is not in mixedCase
Parameter UraniumDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sSBlock (#201) is not in mixedCase
Parameter UraniumDigital.startAirdrop(uint256,uint256,uint256,uint256)._aCap (#194) is not in mixedCase
Parameter UraniumDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sPrice (#201) is not in mixedCase
Parameter UraniumDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sChunk (#201) is not in mixedCase
Parameter UraniumDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sCap (#201) is not in mixedCase
Parameter Owned.transferOwnership(address)._newOwner (#53) is not in mixedCase
Parameter UraniumDigital.startAirdrop(uint256,uint256,uint256,uint256)._aEBlock (#194) is not in mixedCase
Parameter UraniumDigital.startAirdrop(uint256,uint256,uint256,uint256)._aAmt (#194) is not in mixedCase
Parameter UraniumDigital.getAirdrop(address)._refer (#150) is not in mixedCase
Parameter UraniumDigital.startSale(uint256,uint256,uint256,uint256,uint256)._sEBlock (#201) is not in mixedCase
Variable TokenBEP20._hasClaimed (#72) is not in mixedCase
Parameter UraniumDigital.startAirdrop(uint256,uint256,uint256,uint256)._aSBlock (#194) is not in mixedCase
Parameter UraniumDigital.tokenSale(address)._refer (#168) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- Transfer(address(0),owner,598000000 * 10 ** uint256(decimals)) (#84)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- balances[address(this)] = 402000000 * 10 ** uint256(decimals) (#83)
UraniumDigital.constructor() (#142-147) uses literals with too many digits:
- startSale(block.number,99999999,0,200000 * 10 ** uint256(decimals),400000000) (#146)
UraniumDigital.getAirdrop(address) (#150-166) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#155)
UraniumDigital.constructor() (#142-147) uses literals with too many digits:
- startAirdrop(block.number,99999999,210 * 10 ** uint256(decimals),2000000) (#145)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- _totalSupply = 1000000000 * 10 ** uint256(decimals) (#81)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- Transfer(address(0),address(this),402000000 * 10 ** uint256(decimals)) (#85)
UraniumDigital.tokenSale(address) (#168-185) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#175)
TokenBEP20.constructor() (#77-86) uses literals with too many digits:
- balances[owner] = 598000000 * 10 ** uint256(decimals) (#82)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

receiveApproval(address,uint256,address,bytes) should be declared external:
- ApproveAndCallFallBack.receiveApproval(address,uint256,address,bytes) (#35)
totalSupply() should be declared external:
- BEP20Interface.totalSupply() (#23)
- TokenBEP20.totalSupply() (#88-90)
tokenSale(address) should be declared external:
- UraniumDigital.tokenSale(address) (#168-185)
acceptOwnership() should be declared external:
- Owned.acceptOwnership() (#56-61)
approveAndCall(address,uint256,bytes) should be declared external:
- TokenBEP20.approveAndCall(address,uint256,bytes) (#115-120)
clearETH() should be declared external:
- UraniumDigital.clearETH() (#210-213)
viewSale() should be declared external:
- UraniumDigital.viewSale() (#190-192)
allowance(address,address) should be declared external:
- BEP20Interface.allowance(address,address) (#25)
- TokenBEP20.allowance(address,address) (#112-114)
transferOwnership(address) should be declared external:
- Owned.transferOwnership(address) (#53-55)
getAirdrop(address) should be declared external:
- UraniumDigital.getAirdrop(address) (#150-166)
viewAirdrop() should be declared external:
- UraniumDigital.viewAirdrop() (#187-189)
transferFrom(address,address,uint256) should be declared external:
- BEP20Interface.transferFrom(address,address,uint256) (#28)
- TokenBEP20.transferFrom(address,address,uint256) (#105-111)
approve(address,uint256) should be declared external:
- BEP20Interface.approve(address,uint256) (#27)
- TokenBEP20.approve(address,uint256) (#100-104)
transfer(address,uint256) should be declared external:
- BEP20Interface.transfer(address,uint256) (#26)
- TokenBEP20.transfer(address,uint256) (#94-99)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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.


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Last post in Twitter was more than 30 days ago


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but average PancakeSwap 30d trading volume is low

Price for URAN

News for URAN