Gintoki Doge Token Logo

GIND [Gintoki Doge] Token

ALERT: potential scam

About GIND

Listings

Not Found
Token 2 years
white paper

Community meme token, low tax, low cap with KYC & Audit

Social

Laser Scorebeta Last Audit: 6 May 2022

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

Anti-Scam

Links


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

Gintoki_Doge.sendETHToFee(uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#290-293) sends eth to arbitrary user
Dangerous calls:
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in Gintoki_Doge._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#237-274):
External calls:
- swapTokensForEth(contractTokenBalance) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#249)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#281-287)
External calls sending eth:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#331)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#321)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#322)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
- _rTotal = _rTotal.sub(rFee) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#335)
Apply the check-effects-interactions pattern.

Additional information: link

Gintoki_Doge.rescueForeignTokens(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#300-303) ignores return value by Token(_tokenAddr).transfer(_to,_amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#302)
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.

Gintoki_Doge.allowance(address,address).owner (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#209) shadows:
- Ownable.owner() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#101-103) (function)
Gintoki_Doge._approve(address,address,uint256).owner (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#230) shadows:
- Ownable.owner() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#101-103) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.transferOwnership(address).newOwner (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#116) lacks a zero-check on :
- _owner = newOwner (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#118)
Gintoki_Doge.setNewDevAddress(address).dev (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#306) lacks a zero-check on :
- _developmentAddress = dev (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#308)
Gintoki_Doge.setNewMarketingAddress(address).markt (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#313) lacks a zero-check on :
- _marketingAddress = markt (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#315)
Check that the address is not zero.

Additional information: link

Reentrancy in Gintoki_Doge._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#237-274):
External calls:
- swapTokensForEth(contractTokenBalance) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#249)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#281-287)
External calls sending eth:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
State variables written after the call(s):
- _redisFee = _redisFeeOnBuy (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#257)
- _redisFee = _redisFeeOnSell (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#262)
- _redisFee = 0 (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#267)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
- _tFeeTotal = _tFeeTotal.add(tFee) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#336)
- _taxFee = _taxFeeOnBuy (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#258)
- _taxFee = _taxFeeOnSell (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#263)
- _taxFee = 0 (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#268)
Reentrancy in Gintoki_Doge.constructor() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#163-177):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#168-169)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#171)
- _isExcludedFromFee[address(this)] = true (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#172)
- _isExcludedFromFee[_developmentAddress] = true (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#173)
- _isExcludedFromFee[_marketingAddress] = true (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#174)
Reentrancy in Gintoki_Doge.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#218-222):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#219)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#281-287)
External calls sending eth:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#219)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#220)
- _allowances[owner][spender] = amount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#233)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Gintoki_Doge._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#237-274):
External calls:
- swapTokensForEth(contractTokenBalance) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#249)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#281-287)
External calls sending eth:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#325)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
Reentrancy in Gintoki_Doge.constructor() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#163-177):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#168-169)
Event emitted after the call(s):
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#176)
Reentrancy in Gintoki_Doge.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#218-222):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#219)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#281-287)
External calls sending eth:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#219)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
Event emitted after the call(s):
- Approval(owner,spender,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#234)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#220)
Apply the check-effects-interactions pattern.

Additional information: link

Function IUniswapV2Router02.WETH() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#34) is not in mixedCase
Contract Gintoki_Doge (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#123-408) is not in CapWords
Event Gintoki_DogetokensRescued(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#299) is not in CapWords
Event Gintoki_DogedevAddressUpdated(address,address) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#305) is not in CapWords
Event Gintoki_DogemarketingAddressUpdated(address,address) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#312) is not in CapWords
Parameter Gintoki_Doge.rescueForeignTokens(address,address,uint256)._tokenAddr (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#300) is not in mixedCase
Parameter Gintoki_Doge.rescueForeignTokens(address,address,uint256)._to (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#300) is not in mixedCase
Parameter Gintoki_Doge.rescueForeignTokens(address,address,uint256)._amount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#300) is not in mixedCase
Parameter Gintoki_Doge.toggleSwap(bool)._swapEnabled (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#398) is not in mixedCase
Constant Gintoki_Doge._tTotal (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#132) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Gintoki_Doge._name (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#145) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Gintoki_Doge._symbol (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#146) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Gintoki_Doge._decimals (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#147) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in Gintoki_Doge._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#237-274):
External calls:
- sendETHToFee(address(this).balance) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#252)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#331)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#321)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#322)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
- _rTotal = _rTotal.sub(rFee) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#335)
- _redisFee = _redisFeeOnBuy (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#257)
- _redisFee = _redisFeeOnSell (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#262)
- _redisFee = 0 (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#267)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
- _tFeeTotal = _tFeeTotal.add(tFee) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#336)
- _taxFee = _taxFeeOnBuy (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#258)
- _taxFee = _taxFeeOnSell (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#263)
- _taxFee = 0 (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#268)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#325)
- _tokenTransfer(from,to,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#273)
Reentrancy in Gintoki_Doge.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#218-222):
External calls:
- _transfer(sender,recipient,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#219)
- _developmentAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#291)
- _marketingAddress.transfer(amount.div(2)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#292)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#220)
- _allowances[owner][spender] = amount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#233)
Event emitted after the call(s):
- Approval(owner,spender,amount) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#234)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#220)
Apply the check-effects-interactions pattern.

Additional information: link

Variable Gintoki_Doge._getValues(uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#344) is too similar to Gintoki_Doge._transferStandard(address,address,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#320)
Variable Gintoki_Doge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#359) is too similar to Gintoki_Doge._transferStandard(address,address,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#320)
Variable Gintoki_Doge._transferStandard(address,address,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#320) is too similar to Gintoki_Doge._transferStandard(address,address,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#320)
Variable Gintoki_Doge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#359) is too similar to Gintoki_Doge._getValues(uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#342)
Variable Gintoki_Doge._transferStandard(address,address,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#320) is too similar to Gintoki_Doge._getTValues(uint256,uint256,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#351)
Variable Gintoki_Doge._transferStandard(address,address,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#320) is too similar to Gintoki_Doge._getValues(uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#342)
Variable Gintoki_Doge._getValues(uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#344) is too similar to Gintoki_Doge._getTValues(uint256,uint256,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#351)
Variable Gintoki_Doge._getValues(uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#344) is too similar to Gintoki_Doge._getValues(uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#342)
Variable Gintoki_Doge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#359) is too similar to Gintoki_Doge._getTValues(uint256,uint256,uint256).tTransferAmount (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#351)
Prevent variables from having similar names.

Additional information: link

Gintoki_Doge.constructor() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#163-177) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#176)
Gintoki_Doge.slitherConstructorConstantVariables() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#123-408) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 6 * 10 ** 9 (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#132)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#93) is never used in Gintoki_Doge (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#123-408)
Gintoki_Doge._tOwned (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#127) is never used in Gintoki_Doge (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#123-408)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#93) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#110-113)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#116-119)
name() should be declared external:
- Gintoki_Doge.name() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#184-186)
symbol() should be declared external:
- Gintoki_Doge.symbol() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#188-190)
decimals() should be declared external:
- Gintoki_Doge.decimals() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#192-194)
totalSupply() should be declared external:
- Gintoki_Doge.totalSupply() (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#196-198)
transfer(address,uint256) should be declared external:
- Gintoki_Doge.transfer(address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#204-207)
allowance(address,address) should be declared external:
- Gintoki_Doge.allowance(address,address) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#209-211)
approve(address,uint256) should be declared external:
- Gintoki_Doge.approve(address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#213-216)
transferFrom(address,address,uint256) should be declared external:
- Gintoki_Doge.transferFrom(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#218-222)
rescueForeignTokens(address,address,uint256) should be declared external:
- Gintoki_Doge.rescueForeignTokens(address,address,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#300-303)
setNewDevAddress(address) should be declared external:
- Gintoki_Doge.setNewDevAddress(address) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#306-310)
setNewMarketingAddress(address) should be declared external:
- Gintoki_Doge.setNewMarketingAddress(address) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#313-317)
setFee(uint256,uint256,uint256,uint256) should be declared external:
- Gintoki_Doge.setFee(uint256,uint256,uint256,uint256) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#387-396)
toggleSwap(bool) should be declared external:
- Gintoki_Doge.toggleSwap(bool) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#398-400)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- Gintoki_Doge.excludeMultipleAccountsFromFees(address[],bool) (crytic-export/etherscan-contracts/0x0955c7f853a63567765218981307181003d4468d.bscscan.com-Gintoki_Doge.sol#402-406)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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 contract audit


Unable to find audit link on the website


Unable to find Twitter link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


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

Additional information: link


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of scam / price dump / death

Price for GIND

News for GIND