Aurum Token Logo

AUR [Aurum] Token

About AUR

Listings

Token 2 years
CoinMarketCap 3 years
[CoinMarketCap] alert: Aurum has migrated from old contract to new contract. For more details, kindly check the official announcement here.
[CoinGecko] alert: Aurum (AUR) has recently migrated from their old contract to a new one. For more information, please visit this announcement on Twitter.
white paper

Aurum is the gold standard of rewards tokens and BSC security.

Our powerful tokenomics allows holders to freely choose ANY BSC token to be automatically redistributed as a reward straight to their wallet such as BNB, BUSD, CAKE, SAFEMOON or Binance peg tokens like ETH, XRP and ADA.

Utility of the token will come in the form of our secure BSC token wallet, with Aurum as the native currency. Holding Aurum will also unlock functions of a cryptocentric security browser that prevents users from being hacked, rugged or scammed whilst browsing and investing within the crypto space.

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links

AURUMFinance.addLiquidity(uint256,uint256) (#1848-1863) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1854-1861)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in AURUMFinance.buyBackTokensWithNoFees() (#1664-1692):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(0,path,address(msg.sender),block.timestamp + 360) (#1682-1687)
State variables written after the call(s):
- _isExcludedFromFees[msg.sender] = prevExclusion (#1689)
Apply the check-effects-interactions pattern.

Additional information: link


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

AURUMFinance.swapBack(uint256).success (#1812) is written in both
(success,None) = address(operationsWallet).call{value: amountBNBOperations}() (#1818)
(success,None) = address(teamWallet).call{value: amountBNBTeam}() (#1820)
Fix or remove the writes.

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.

AURUMFinance._transfer(address,address,uint256) (#1717-1788) performs a multiplication on the result of a division:
-fees = amount.mul(totalFees).div(100) (#1761)
-fees = fees.mul(sellFeeIncreaseFactor).div(100) (#1765)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in AURUMFinance.updateDividendTracker(address) (#1401-1417):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1408)
- newDividendTracker.excludeFromDividends(address(this)) (#1409)
- newDividendTracker.excludeFromDividends(owner()) (#1410)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1411)
- newDividendTracker.excludeFromDividends(address(0xdead)) (#1412)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1416)
Apply the check-effects-interactions pattern.

Additional information: link

AURUMFinance._transfer(address,address,uint256).lastProcessedIndex (#1782) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

AURUMFinance.addLiquidity(uint256,uint256) (#1848-1863) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityWallet,block.timestamp) (#1854-1861)
Ensure that all the return values of the function calls are used.

Additional information: link

AURUMFinance.constructor().totalSupply (#1344) shadows:
- ERC20.totalSupply() (#525-527) (function)
- IERC20.totalSupply() (#92) (function)
Rename the local variables that shadow another component.

Additional information: link

AURUMFinance.updateSellPenalty(uint256) (#1529-1532) should emit an event for:
- sellFeeIncreaseFactor = sellFactor (#1531)
Emit an event for critical parameter changes.

Additional information: link

AURUMFinance.updateTeamWallet(address).newWallet (#1495) lacks a zero-check on :
- teamWallet = newWallet (#1496)
Check that the address is not zero.

Additional information: link

AURUMFinance.airdropToWallets(address[],uint256[]) (#1469-1477) has external calls inside a loop: dividendTracker.setBalance(address(wallet),balanceOf(wallet)) (#1475)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'AURUMFinance._transfer(address,address,uint256).lastProcessedIndex (#1782)' in AURUMFinance._transfer(address,address,uint256) (#1717-1788) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1783)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in DividendPayingToken.swapETHForTokens(address,uint256) (#806-847):
External calls:
- swapRouter.swapExactETHForTokensSupportingFeeOnTransferTokens{value: ethAmount}(1,path,address(recipient),block.timestamp + 360) (#825-835)
- (success) = recipient.call{gas: 3000,value: ethAmount}() (#839)
State variables written after the call(s):
- withdrawnDividends[recipient] = withdrawnDividends[recipient].sub(ethAmount) (#842)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AURUMFinance.updateDividendTracker(address) (#1401-1417):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1408)
- newDividendTracker.excludeFromDividends(address(this)) (#1409)
- newDividendTracker.excludeFromDividends(owner()) (#1410)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1411)
- newDividendTracker.excludeFromDividends(address(0xdead)) (#1412)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1414)
Apply the check-effects-interactions pattern.

Additional information: link

DividendTracker.canAutoClaim(uint256) (#2073-2079) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#2074)
- block.timestamp.sub(lastClaimTime) >= claimWait (#2078)
Avoid relying on block.timestamp.

Additional information: link

AURUMFinance.isContract(address) (#1542-1551) uses assembly
- INLINE ASM (#1549)
Do not use evm assembly.

Additional information: link

AURUMFinance.setRewardTokenWithCustomAMM(address,address) (#1647-1655) compares to a boolean constant:
-require(bool,string)(isAMMWhitelisted(ammContractAddress) == true,Aurum: setRewardToken:: AMM is not whitelisted!) (#1652)
Remove the equality to the boolean constant.

Additional information: link

SafeMathInt.mul(int256,int256) (#254-261) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.8.6 is not recommended for deployment
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

Low level call in AURUMFinance.swapBack(uint256) (#1790-1825):
- (success) = address(dividendTracker).call{value: amountBNBReflection}() (#1812)
- (success,None) = address(operationsWallet).call{value: amountBNBOperations}() (#1818)
- (success,None) = address(teamWallet).call{value: amountBNBTeam}() (#1820)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter DividendTracker.getAccount(address)._account (#2009) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#27)" inContext (#21-30)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#934) is too similar to DividendTracker.getAccount(address).withdrawableDividends (#2014)
Prevent variables from having similar names.

Additional information: link

DividendTracker.getAccountAtIndex(uint256) (#2054-2071) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#2065)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#249) is never used in SafeMathInt (#247-305)
Remove unused state variables.

Additional information: link

size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1908-1910)
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 PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


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 Telegram link on the website


Unable to find Twitter 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 price dump / death


Token has relatively low CoinMarketCap rank

Price for AUR