SincereDoge Token Logo

SDoge [SincereDoge] Token

About SDoge

Listings

Token 2 years
CoinMarketCap 2 years

A token with automatic distribution of rewards.$Sdoge provides a unique,new and exciting way to safely invest your finances.Simply love,pet,and watch your $Sdoge grow.We will combine the memecoin trend with actual tokenomics that make you richer than you ever dreamed of.

SincereDoge is very giving and is designed to reward long term holders.Community is first and foremost.SincereDoge is proud to provide transparency and fairness to the community.The project built on Binance Smart Chain.SincereDoge brings the most revolutionary mechanism to the BSC ecosystem

TOTAL:8%

REFLECTIONS:2%

MARKETING:3%

NFT DEVELOPMENT:3%

Social

Laser Scorebeta Last Audit: 22 February 2022

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

Anti-Scam

Links


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

Sinceredoge.sendETHToFee(uint256) (#304-307) sends eth to arbitrary user
Dangerous calls:
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Sinceredoge._transfer(address,address,uint256) (#251-288):
External calls:
- swapTokensForEth(contractTokenBalance) (#263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#295-301)
External calls sending eth:
- sendETHToFee(address(this).balance) (#266)
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#287)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#345)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#335)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#336)
- _tokenTransfer(from,to,amount) (#287)
- _rTotal = _rTotal.sub(rFee) (#349)
Apply the check-effects-interactions pattern.

Additional information: link

Sinceredoge.rescueForeignTokens(address,address,uint256) (#314-317) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (#316)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Sinceredoge.allowance(address,address).owner (#223) shadows:
- Ownable.owner() (#115-117) (function)
Sinceredoge._approve(address,address,uint256).owner (#244) shadows:
- Ownable.owner() (#115-117) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.transferOwnership(address).newOwner (#130) lacks a zero-check on :
- _owner = newOwner (#132)
Sinceredoge.setNewDevAddress(address).dev (#320) lacks a zero-check on :
- _developmentAddress = dev (#322)
Sinceredoge.setNewMarketingAddress(address).markt (#327) lacks a zero-check on :
- _marketingAddress = markt (#329)
Check that the address is not zero.

Additional information: link

Sinceredoge.constructor() (#177-191) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#190)
Sinceredoge.slitherConstructorConstantVariables() (#137-422) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 * 10 ** 9 (#146)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#107) is never used in Sinceredoge (#137-422)
Sinceredoge._tOwned (#141) is never used in Sinceredoge (#137-422)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#107) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#124-127)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#130-133)
name() should be declared external:
- Sinceredoge.name() (#198-200)
symbol() should be declared external:
- Sinceredoge.symbol() (#202-204)
decimals() should be declared external:
- Sinceredoge.decimals() (#206-208)
totalSupply() should be declared external:
- Sinceredoge.totalSupply() (#210-212)
transfer(address,uint256) should be declared external:
- Sinceredoge.transfer(address,uint256) (#218-221)
allowance(address,address) should be declared external:
- Sinceredoge.allowance(address,address) (#223-225)
approve(address,uint256) should be declared external:
- Sinceredoge.approve(address,uint256) (#227-230)
transferFrom(address,address,uint256) should be declared external:
- Sinceredoge.transferFrom(address,address,uint256) (#232-236)
rescueForeignTokens(address,address,uint256) should be declared external:
- Sinceredoge.rescueForeignTokens(address,address,uint256) (#314-317)
setNewDevAddress(address) should be declared external:
- Sinceredoge.setNewDevAddress(address) (#320-324)
setNewMarketingAddress(address) should be declared external:
- Sinceredoge.setNewMarketingAddress(address) (#327-331)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- Sinceredoge.setFee(uint256,uint256,uint256,uint256) (#401-410)
toggleSwap(bool) should be declared external:
- Sinceredoge.toggleSwap(bool) (#412-414)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- Sinceredoge.excludeMultipleAccountsFromFees(address[],bool) (#416-420)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in Sinceredoge._transfer(address,address,uint256) (#251-288):
External calls:
- swapTokensForEth(contractTokenBalance) (#263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#295-301)
External calls sending eth:
- sendETHToFee(address(this).balance) (#266)
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
State variables written after the call(s):
- _redisFee = _redisFeeOnBuy (#271)
- _redisFee = _redisFeeOnSell (#276)
- _redisFee = 0 (#281)
- _tokenTransfer(from,to,amount) (#287)
- _tFeeTotal = _tFeeTotal.add(tFee) (#350)
- _taxFee = _taxFeeOnBuy (#272)
- _taxFee = _taxFeeOnSell (#277)
- _taxFee = 0 (#282)
Reentrancy in Sinceredoge.constructor() (#177-191):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#182-183)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#185)
- _isExcludedFromFee[address(this)] = true (#186)
- _isExcludedFromFee[_developmentAddress] = true (#187)
- _isExcludedFromFee[_marketingAddress] = true (#188)
Reentrancy in Sinceredoge.transferFrom(address,address,uint256) (#232-236):
External calls:
- _transfer(sender,recipient,amount) (#233)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#295-301)
External calls sending eth:
- _transfer(sender,recipient,amount) (#233)
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#234)
- _allowances[owner][spender] = amount (#247)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Sinceredoge._transfer(address,address,uint256) (#251-288):
External calls:
- swapTokensForEth(contractTokenBalance) (#263)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#295-301)
External calls sending eth:
- sendETHToFee(address(this).balance) (#266)
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#339)
- _tokenTransfer(from,to,amount) (#287)
Reentrancy in Sinceredoge.constructor() (#177-191):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#182-183)
Event emitted after the call(s):
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#190)
Reentrancy in Sinceredoge.transferFrom(address,address,uint256) (#232-236):
External calls:
- _transfer(sender,recipient,amount) (#233)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#295-301)
External calls sending eth:
- _transfer(sender,recipient,amount) (#233)
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#248)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#234)
Apply the check-effects-interactions pattern.

Additional information: link

Function IUniswapV2Router02.WETH() (#48) is not in mixedCase
Event SinceredogetokensRescued(address,address,uint256) (#313) is not in CapWords
Event SinceredogedevAddressUpdated(address,address) (#319) is not in CapWords
Event SinceredogemarketingAddressUpdated(address,address) (#326) is not in CapWords
Parameter Sinceredoge.rescueForeignTokens(address,address,uint256)._tokenAddr (#314) is not in mixedCase
Parameter Sinceredoge.rescueForeignTokens(address,address,uint256)._to (#314) is not in mixedCase
Parameter Sinceredoge.rescueForeignTokens(address,address,uint256)._amount (#314) is not in mixedCase
Parameter Sinceredoge.toggleSwap(bool)._swapEnabled (#412) is not in mixedCase
Constant Sinceredoge._tTotal (#146) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sinceredoge._name (#159) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sinceredoge._symbol (#160) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sinceredoge._decimals (#161) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in Sinceredoge._transfer(address,address,uint256) (#251-288):
External calls:
- sendETHToFee(address(this).balance) (#266)
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#287)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#345)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#335)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#336)
- _tokenTransfer(from,to,amount) (#287)
- _rTotal = _rTotal.sub(rFee) (#349)
- _redisFee = _redisFeeOnBuy (#271)
- _redisFee = _redisFeeOnSell (#276)
- _redisFee = 0 (#281)
- _tokenTransfer(from,to,amount) (#287)
- _tFeeTotal = _tFeeTotal.add(tFee) (#350)
- _taxFee = _taxFeeOnBuy (#272)
- _taxFee = _taxFeeOnSell (#277)
- _taxFee = 0 (#282)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#339)
- _tokenTransfer(from,to,amount) (#287)
Reentrancy in Sinceredoge.transferFrom(address,address,uint256) (#232-236):
External calls:
- _transfer(sender,recipient,amount) (#233)
- _developmentAddress.transfer(amount.div(2)) (#305)
- _marketingAddress.transfer(amount.div(2)) (#306)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#234)
- _allowances[owner][spender] = amount (#247)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#248)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#234)
Apply the check-effects-interactions pattern.

Additional information: link

Variable Sinceredoge._transferStandard(address,address,uint256).rTransferAmount (#334) is too similar to Sinceredoge._transferStandard(address,address,uint256).tTransferAmount (#334)
Variable Sinceredoge._transferStandard(address,address,uint256).rTransferAmount (#334) is too similar to Sinceredoge._getTValues(uint256,uint256,uint256).tTransferAmount (#365)
Variable Sinceredoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#373) is too similar to Sinceredoge._getValues(uint256).tTransferAmount (#356)
Variable Sinceredoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#373) is too similar to Sinceredoge._getTValues(uint256,uint256,uint256).tTransferAmount (#365)
Variable Sinceredoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#373) is too similar to Sinceredoge._transferStandard(address,address,uint256).tTransferAmount (#334)
Variable Sinceredoge._getValues(uint256).rTransferAmount (#358) is too similar to Sinceredoge._getValues(uint256).tTransferAmount (#356)
Variable Sinceredoge._getValues(uint256).rTransferAmount (#358) is too similar to Sinceredoge._getTValues(uint256,uint256,uint256).tTransferAmount (#365)
Variable Sinceredoge._transferStandard(address,address,uint256).rTransferAmount (#334) is too similar to Sinceredoge._getValues(uint256).tTransferAmount (#356)
Variable Sinceredoge._getValues(uint256).rTransferAmount (#358) is too similar to Sinceredoge._transferStandard(address,address,uint256).tTransferAmount (#334)
Prevent variables from having similar names.

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

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


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


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


Unable to find code repository for the project


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


Token has relatively low CoinGecko rank

Price for SDoge