Dibs USD Token Logo

USDibs [Dibs USD] Token

About USDibs

Listings

Token 3 years
CoinGecko 3 years

Website

[CoinGecko] alert: The smart-contract owner can mint new tokens, please proceed with caution.
white paper

Dibs USD is an algorithmic coin pegged to BUSD.

Social

Laser Scorebeta Last Audit: 28 June 2022

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

USDibs.governanceRecoverUnsupported(IERC20,uint256,address) (contracts/USDibs.sol#288-294) ignores return value by _token.transfer(_to,_amount) (contracts/USDibs.sol#293)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

USDibs.setTaxTiersTwap(uint8,uint256) (contracts/USDibs.sol#97-108) contains a tautology or contradiction:
- require(bool,string)(_index >= 0,Index has to be higher than 0) (contracts/USDibs.sol#98)
USDibs.setTaxTiersRate(uint8,uint256) (contracts/USDibs.sol#110-115) contains a tautology or contradiction:
- require(bool,string)(_index >= 0,Index has to be higher than 0) (contracts/USDibs.sol#111)
USDibs._updateTaxRate(uint256) (contracts/USDibs.sol#129-139) contains a tautology or contradiction:
- tierId >= 0 (contracts/USDibs.sol#131)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)

USDibs._getPrice()._price (contracts/USDibs.sol#122) 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

USDibs._getPrice() (contracts/USDibs.sol#121-127) ignores return value by IOracle(oracle).consult(address(this),1e18) (contracts/USDibs.sol#122-126)
Ensure that all the return values of the function calls are used.

Additional information: link

USDibs.setBurnThreshold(uint256) (contracts/USDibs.sol#117-119) should emit an event for:
- burnThreshold = _burnThreshold (contracts/USDibs.sol#118)
USDibs.setTaxRate(uint256) (contracts/USDibs.sol#165-169) should emit an event for:
- taxRate = _taxRate (contracts/USDibs.sol#168)
Emit an event for critical parameter changes.

Additional information: link

Variable 'USDibs._getPrice()._price (contracts/USDibs.sol#122)' in USDibs._getPrice() (contracts/USDibs.sol#121-127) potentially used before declaration: uint256(_price) (contracts/USDibs.sol#123)
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

Different versions of Solidity is used:
- Version used: ['0.6.12', '>=0.6.0<0.8.0']
- >=0.6.0<0.8.0 (@openzeppelin/contracts/GSN/Context.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/math/Math.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/math/SafeMath.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3)
- >=0.6.0<0.8.0 (@openzeppelin/contracts/utils/Context.sol#3)
- 0.6.12 (contracts/USDibs.sol#3)
- 0.6.12 (contracts/interfaces/IOracle.sol#3)
- 0.6.12 (contracts/lib/SafeMath8.sol#3)
- 0.6.12 (contracts/owner/Operator.sol#3)
Use one Solidity version.

Additional information: link

ERC20._mint(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#228-236) has costly operations inside a loop:
- _totalSupply = _totalSupply.add(amount) (@openzeppelin/contracts/token/ERC20/ERC20.sol#233)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (@openzeppelin/contracts/utils/Context.sol#20-23) is never used and should be removed
ERC20._setupDecimals(uint8) (@openzeppelin/contracts/token/ERC20/ERC20.sol#287-289) is never used and should be removed
Math.average(uint256,uint256) (@openzeppelin/contracts/math/Math.sol#27-30) is never used and should be removed
Math.max(uint256,uint256) (@openzeppelin/contracts/math/Math.sol#12-14) is never used and should be removed
Math.min(uint256,uint256) (@openzeppelin/contracts/math/Math.sol#19-21) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/math/SafeMath.sol#190-193) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#152-155) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/math/SafeMath.sol#210-213) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#24-28) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#60-63) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#70-73) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#45-53) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/math/SafeMath.sol#35-38) is never used and should be removed
SafeMath8.add(uint8,uint8) (contracts/lib/SafeMath8.sol#29-34) is never used and should be removed
SafeMath8.div(uint8,uint8) (contracts/lib/SafeMath8.sol#103-105) is never used and should be removed
SafeMath8.div(uint8,uint8,string) (contracts/lib/SafeMath8.sol#119-125) is never used and should be removed
SafeMath8.mod(uint8,uint8) (contracts/lib/SafeMath8.sol#139-141) is never used and should be removed
SafeMath8.mod(uint8,uint8,string) (contracts/lib/SafeMath8.sol#155-158) is never used and should be removed
SafeMath8.mul(uint8,uint8) (contracts/lib/SafeMath8.sol#77-89) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/GSN/Context.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/access/Ownable.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/math/Math.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/math/SafeMath.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3) is too complex
Pragma version>=0.6.0<0.8.0 (@openzeppelin/contracts/utils/Context.sol#3) is too complex
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 USDibs.isAddressExcluded(address)._address (contracts/USDibs.sol#93) is not in mixedCase
Parameter USDibs.setTaxTiersTwap(uint8,uint256)._index (contracts/USDibs.sol#97) is not in mixedCase
Parameter USDibs.setTaxTiersTwap(uint8,uint256)._value (contracts/USDibs.sol#97) is not in mixedCase
Parameter USDibs.setTaxTiersRate(uint8,uint256)._index (contracts/USDibs.sol#110) is not in mixedCase
Parameter USDibs.setTaxTiersRate(uint8,uint256)._value (contracts/USDibs.sol#110) is not in mixedCase
Parameter USDibs.setBurnThreshold(uint256)._burnThreshold (contracts/USDibs.sol#117) is not in mixedCase
Parameter USDibs.setOracle(address)._oracle (contracts/USDibs.sol#149) is not in mixedCase
Parameter USDibs.setTaxOffice(address)._taxOffice (contracts/USDibs.sol#154) is not in mixedCase
Parameter USDibs.setTaxCollectorAddress(address)._taxCollectorAddress (contracts/USDibs.sol#160) is not in mixedCase
Parameter USDibs.setTaxRate(uint256)._taxRate (contracts/USDibs.sol#165) is not in mixedCase
Parameter USDibs.excludeAddress(address)._address (contracts/USDibs.sol#171) is not in mixedCase
Parameter USDibs.includeAddress(address)._address (contracts/USDibs.sol#177) is not in mixedCase
Parameter USDibs.distributeReward(address[],uint256[])._genesisPools (contracts/USDibs.sol#258) is not in mixedCase
Parameter USDibs.distributeReward(address[],uint256[])._poolsStakes (contracts/USDibs.sol#259) is not in mixedCase
Parameter USDibs.governanceRecoverUnsupported(IERC20,uint256,address)._token (contracts/USDibs.sol#289) is not in mixedCase
Parameter USDibs.governanceRecoverUnsupported(IERC20,uint256,address)._amount (contracts/USDibs.sol#290) is not in mixedCase
Parameter USDibs.governanceRecoverUnsupported(IERC20,uint256,address)._to (contracts/USDibs.sol#291) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (@openzeppelin/contracts/utils/Context.sol#21)" inContext (@openzeppelin/contracts/utils/Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#63-67)
name() should be declared external:
- ERC20.name() (@openzeppelin/contracts/token/ERC20/ERC20.sol#64-66)
symbol() should be declared external:
- ERC20.symbol() (@openzeppelin/contracts/token/ERC20/ERC20.sol#72-74)
decimals() should be declared external:
- ERC20.decimals() (@openzeppelin/contracts/token/ERC20/ERC20.sol#89-91)
totalSupply() should be declared external:
- ERC20.totalSupply() (@openzeppelin/contracts/token/ERC20/ERC20.sol#96-98)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#115-118)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#134-137)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#152-156)
- USDibs.transferFrom(address,address,uint256) (contracts/USDibs.sol#205-229)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#170-173)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#189-192)
isAddressExcluded(address) should be declared external:
- USDibs.isAddressExcluded(address) (contracts/USDibs.sol#93-95)
setTaxTiersTwap(uint8,uint256) should be declared external:
- USDibs.setTaxTiersTwap(uint8,uint256) (contracts/USDibs.sol#97-108)
setTaxTiersRate(uint8,uint256) should be declared external:
- USDibs.setTaxTiersRate(uint8,uint256) (contracts/USDibs.sol#110-115)
setBurnThreshold(uint256) should be declared external:
- USDibs.setBurnThreshold(uint256) (contracts/USDibs.sol#117-119)
enableAutoCalculateTax() should be declared external:
- USDibs.enableAutoCalculateTax() (contracts/USDibs.sol#141-143)
disableAutoCalculateTax() should be declared external:
- USDibs.disableAutoCalculateTax() (contracts/USDibs.sol#145-147)
setOracle(address) should be declared external:
- USDibs.setOracle(address) (contracts/USDibs.sol#149-152)
setTaxOffice(address) should be declared external:
- USDibs.setTaxOffice(address) (contracts/USDibs.sol#154-158)
setTaxCollectorAddress(address) should be declared external:
- USDibs.setTaxCollectorAddress(address) (contracts/USDibs.sol#160-163)
setTaxRate(uint256) should be declared external:
- USDibs.setTaxRate(uint256) (contracts/USDibs.sol#165-169)
includeAddress(address) should be declared external:
- USDibs.includeAddress(address) (contracts/USDibs.sol#177-181)
mint(address,uint256) should be declared external:
- USDibs.mint(address,uint256) (contracts/USDibs.sol#189-195)
operator() should be declared external:
- Operator.operator() (contracts/owner/Operator.sol#18-20)
transferOperator(address) should be declared external:
- Operator.transferOperator(address) (contracts/owner/Operator.sol#31-33)
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 PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find KYC or doxxing proof


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


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


Token has no active CoinGecko listing / rank


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

Price for USDibs

News for USDibs