Robust Token Token Logo

RBT [Robust] Token

About RBT

Listings

Token 3 years
white paper

Robust Token (RBT) is an original concept token on the Binance Smart Chain with a limited supply of 100 000 RBT and a 1% burn per transaction that gets converted into Robust Reward (RBW).

The Binance Smart Chain (BSC) ecosystem is flooded with thousands of tokens with quadrillions in total supply and numerous zeros.

In contrast, the RBT tokenomics is designed with an extremely limited supply, rigid deflationary mechanism, a loyalty reward system, and a solid roadmap of future developments.

RBT is audited by Techrate and added to Trustwallet.

Social

Laser Scorebeta Last Audit: 22 December 2021

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.


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

Redundant expression "this (#53)" inContext (#47-56)
Remove redundant statements if they congest code but offer no value.

Additional information: link

ERC20.constructor(string,string).name (#473) shadows:
- ERC20.name() (#482-484) (function)
ERC20.constructor(string,string).symbol (#473) shadows:
- ERC20.symbol() (#490-492) (function)
Rename the local variables that shadow another component.

Additional information: link

robustToken.setrbtRate(uint256) (#847-851) should emit an event for:
- rbtRate = newrbtRate (#850)
robustToken.setrbwRate(uint256) (#853-857) should emit an event for:
- rbwRate = newrbwRate (#856)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in robustToken.transfer(address,uint256) (#829-836):
External calls:
- rbw.mint(recipient,rbwAmount) (#833)
State variables written after the call(s):
- _burn(msg.sender,rbtFee) (#834)
- _balances[account] = _balances[account].sub(amount,ERC20: burn amount exceeds balance) (#671)
- super.transfer(recipient,amount.sub(rbtFee)) (#835)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#631)
- _balances[recipient] = _balances[recipient].add(amount) (#632)
- _burn(msg.sender,rbtFee) (#834)
- _totalSupply = _totalSupply.sub(amount) (#672)
Reentrancy in robustToken.transferFrom(address,address,uint256) (#838-845):
External calls:
- rbw.mint(recipient,rbwAmount) (#842)
State variables written after the call(s):
- super.transferFrom(sender,recipient,amount.sub(rbtFee)) (#844)
- _allowances[owner][spender] = amount (#693)
- _burn(sender,rbtFee) (#843)
- _balances[account] = _balances[account].sub(amount,ERC20: burn amount exceeds balance) (#671)
- super.transferFrom(sender,recipient,amount.sub(rbtFee)) (#844)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#631)
- _balances[recipient] = _balances[recipient].add(amount) (#632)
- _burn(sender,rbtFee) (#843)
- _totalSupply = _totalSupply.sub(amount) (#672)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in robustToken.transfer(address,uint256) (#829-836):
External calls:
- rbw.mint(recipient,rbwAmount) (#833)
Event emitted after the call(s):
- Transfer(account,address(0),amount) (#673)
- _burn(msg.sender,rbtFee) (#834)
- Transfer(sender,recipient,amount) (#633)
- super.transfer(recipient,amount.sub(rbtFee)) (#835)
Reentrancy in robustToken.transferFrom(address,address,uint256) (#838-845):
External calls:
- rbw.mint(recipient,rbwAmount) (#842)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#694)
- super.transferFrom(sender,recipient,amount.sub(rbtFee)) (#844)
- Transfer(account,address(0),amount) (#673)
- _burn(sender,rbtFee) (#843)
- Transfer(sender,recipient,amount) (#633)
- super.transferFrom(sender,recipient,amount.sub(rbtFee)) (#844)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#309-318) uses assembly
- INLINE ASM (#316)
Address._functionCallWithValue(address,bytes,uint256,string) (#402-423) uses assembly
- INLINE ASM (#415-418)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#402-423) is never used and should be removed
Address.functionCall(address,bytes) (#362-364) is never used and should be removed
Address.functionCall(address,bytes,string) (#372-374) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#387-389) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#397-400) is never used and should be removed
Address.isContract(address) (#309-318) is never used and should be removed
Address.sendValue(address,uint256) (#336-342) is never used and should be removed
Context._msgData() (#52-55) is never used and should be removed
ERC20._setupDecimals(uint8) (#704-706) is never used and should be removed
SafeMath.mod(uint256,uint256) (#266-268) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#282-285) is never used and should be removed
SafeMath.mul(uint256,uint256) (#204-216) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#336-342):
- (success) = recipient.call{value: amount}() (#340)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#402-423):
- (success,returndata) = target.call{value: weiValue}(data) (#406)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Contract rbtReward (#793-802) is not in CapWords
Parameter rbtReward.mint(address,uint256)._to (#797) is not in mixedCase
Parameter rbtReward.mint(address,uint256)._amount (#797) is not in mixedCase
Contract robustToken (#804-866) is not in CapWords
Follow the Solidity naming convention.

Additional information: link

name() should be declared external:
- ERC20.name() (#482-484)
symbol() should be declared external:
- ERC20.symbol() (#490-492)
decimals() should be declared external:
- ERC20.decimals() (#507-509)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#521-523)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#541-543)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#552-555)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#587-590)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#606-609)
owner() should be declared external:
- Ownable.owner() (#754-756)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#773-776)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#782-786)
mint(address,uint256) should be declared external:
- rbtReward.mint(address,uint256) (#797-800)
setrbtRate(uint256) should be declared external:
- robustToken.setrbtRate(uint256) (#847-851)
setrbwRate(uint256) should be declared external:
- robustToken.setrbwRate(uint256) (#853-857)
rbtBurned() should be declared external:
- robustToken.rbtBurned() (#859-863)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


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


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account

No disclosed threats


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

Price for RBT

News for RBT