SEISMIC Token Logo

SCB [SEISMIC] Token

ALERT: honeypot scam

About SCB

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
[CoinMarketCap] alert: The smart contract for following token contains variable tax rate function - this open the opportunity for contract owners to modify contract behaviour (ie. change fees, or transfer tokens). Please exercise with extra caution if you are investing in this token.
[CoinGecko] alert: The following token has a variable tax function on the smart contract - which allows contract owners to change tax rates post deployment.
Do your own research and be careful if you are trading this token.
white paper

The Seismic Crypto Bank Ltd revenue in BSC is through the collection of fees on all buys and sells of our token.
Seismic is also planning to develop several additional utilities for BSC users. This is to constantly offer innovation, passive income, and true utility to our investors.
Seismic revenue in the real world is derived from commissions and transaction fees. Currently the target market consists of 19 million people and that is just within South Africa.
Every time someone deposits money into their Seismic account using a credit card in South Africa a 1% fee will be paid to Seismic.
For every swiped transaction using a Seismic Debit Card, Seismic Crypto Bank Ltd receives a minimum of 0.5% fee, which is charged to the merchant accepting the Seismic Debit Card.
When making Electronic Financial Transaction Payments, Seismic Crypto Bank Ltd receives a nominal fee of roughly $0.17. Seismic Crypto Bank Ltd also receives a 5% fee on all prepaid products purchased by the consumer i.e: Airtime, Data, SMS & Electricity Bundles.

The Seismic Crypto Bank Ltd Platform uses crypto currency as a means of exchange. Seismic is the first to market a concept like this, at least in South Africa and the greater global economy, to offer a service of this magnitude to the people of the world. Essentially making it an uncontested market. And therefore, the opportunities for Seismic to achieve extreme heights and global adoption without competition is almost certain.

Social

Laser Scorebeta Last Audit: 26 August 2022

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

Anti-Scam

Links

Reentrancy in SEISMICCB._transfer(address,address,uint256) (#451-494):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#485)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
- swapAndLiquify(swapTokensAtAmount,taxes) (#486)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#485)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- swapAndLiquify(swapTokensAtAmount,taxes) (#486)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#493)
- _rOwned[address(this)] += rtreasury (#386)
- _rOwned[address(this)] += rLiquidity (#376)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#512)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#513)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#493)
- _rTotal -= rRfi (#365)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#493)
- _tOwned[address(this)] += tLiquidity (#374)
- _tOwned[address(this)] += ttreasury (#384)
- _tOwned[sender] = _tOwned[sender] - tAmount (#506)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#509)
Apply the check-effects-interactions pattern.

Additional information: link


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

SEISMICCB.addLiquidity(uint256,uint256) (#550-563) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

SEISMICCB.rescueAnyBEP20Tokens(address,address,uint256) (#643-645) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#644)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.


Contract ownership is not renounced (belongs to a wallet)


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.

SEISMICCB.swapAndLiquify(uint256,SEISMICCB.Taxes) (#525-548) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#535)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#536)
SEISMICCB.swapAndLiquify(uint256,SEISMICCB.Taxes) (#525-548) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#535)
-treasuryAmt = unitBalance * 2 * temp.treasury (#543)
Consider ordering multiplication before division.

Additional information: link

SEISMICCB.addLiquidity(uint256,uint256) (#550-563) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
Ensure that all the return values of the function calls are used.

Additional information: link

SEISMICCB.allowance(address,address).owner (#244) shadows:
- Ownable.owner() (#53-55) (function)
SEISMICCB._approve(address,address,uint256).owner (#444) shadows:
- Ownable.owner() (#53-55) (function)
Rename the local variables that shadow another component.

Additional information: link

SEISMICCB.setTradingStatus(bool,uint256,uint256,uint256,uint256) (#297-309) should emit an event for:
- deadline = _deadline (#306)
SEISMICCB.updateCooldown(bool,uint256) (#594-597) should emit an event for:
- coolDownTime = time * 1 (#595)
SEISMICCB.updateSwapTokensAtAmount(uint256) (#599-601) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#600)
SEISMICCB.updateMaxTxLimit(uint256,uint256) (#622-625) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#623)
- maxSellLimit = maxSell * 10 ** decimals() (#624)
SEISMICCB.updateMaxWalletlimit(uint256) (#627-629) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#628)
Emit an event for critical parameter changes.

Additional information: link

SEISMICCB.constructor(address)._pair (#202-203) lacks a zero-check on :
- pair = _pair (#206)
SEISMICCB.updatetreasuryWallet(address).newWallet (#590) lacks a zero-check on :
- treasuryWallet = newWallet (#591)
SEISMICCB.updateRouterAndPair(address,address).newPair (#631) lacks a zero-check on :
- pair = newPair (#633)
Check that the address is not zero.

Additional information: link

Reentrancy in SEISMICCB._transfer(address,address,uint256) (#451-494):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#485)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
- swapAndLiquify(swapTokensAtAmount,taxes) (#486)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#485)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- swapAndLiquify(swapTokensAtAmount,taxes) (#486)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#493)
- totFeesPaid.liquidity += tLiquidity (#370)
- totFeesPaid.treasury += ttreasury (#380)
- totFeesPaid.rfi += tRfi (#366)
Reentrancy in SEISMICCB.constructor(address) (#200-221):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#202-203)
State variables written after the call(s):
- excludeFromReward(pair) (#208)
- _excluded.push(account) (#324)
- excludeFromReward(pair) (#208)
- _isExcluded[account] = true (#323)
- _isExcludedFromFee[address(this)] = true (#211)
- _isExcludedFromFee[owner()] = true (#212)
- _isExcludedFromFee[treasuryWallet] = true (#213)
- _rOwned[owner()] = _rTotal (#210)
- excludeFromReward(pair) (#208)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#321)
- allowedTransfer[address(this)] = true (#215)
- allowedTransfer[owner()] = true (#216)
- allowedTransfer[pair] = true (#217)
- allowedTransfer[treasuryWallet] = true (#218)
- pair = _pair (#206)
- router = _router (#205)
Reentrancy in SEISMICCB.swapAndLiquify(uint256,SEISMICCB.Taxes) (#525-548):
External calls:
- swapTokensForBNB(toSwap) (#532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#540)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#540)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#540)
- _allowances[owner][spender] = amount (#447)
Reentrancy in SEISMICCB.transferFrom(address,address,uint256) (#253-261):
External calls:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
External calls sending eth:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#258)
- _allowances[owner][spender] = amount (#447)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SEISMICCB._transfer(address,address,uint256) (#451-494):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#485)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
- swapAndLiquify(swapTokensAtAmount,taxes) (#486)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#485)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- swapAndLiquify(swapTokensAtAmount,taxes) (#486)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.ttreasury) (#518)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#493)
- Transfer(sender,recipient,s.tTransferAmount) (#521)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#493)
Reentrancy in SEISMICCB.constructor(address) (#200-221):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#202-203)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#220)
Reentrancy in SEISMICCB.swapAndLiquify(uint256,SEISMICCB.Taxes) (#525-548):
External calls:
- swapTokensForBNB(toSwap) (#532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#540)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#540)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#448)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#540)
Reentrancy in SEISMICCB.transferFrom(address,address,uint256) (#253-261):
External calls:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#574-580)
- address(treasuryWallet).sendValue(treasuryAmt) (#545)
External calls sending eth:
- _transfer(sender,recipient,amount) (#254)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#555-562)
- (success) = recipient.call{value: amount}() (#106)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#448)
- _approve(sender,_msgSender(),currentAllowance - amount) (#258)
Apply the check-effects-interactions pattern.

Additional information: link

SEISMICCB._transfer(address,address,uint256) (#451-494) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#474)
Avoid relying on block.timestamp.

Additional information: link

SEISMICCB.setTradingStatus(bool,uint256,uint256,uint256,uint256) (#297-309) compares to a boolean constant:
-state == true (#308)
Remove the equality to the boolean constant.

Additional information: link

SEISMICCB.includeInReward(address) (#327-338) has costly operations inside a loop:
- _excluded.pop() (#334)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#38-41) is never used and should be removed
Remove unused functions.

Additional information: link

SEISMICCB._rTotal (#147) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

solc-0.8.12 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 Address.sendValue(address,uint256) (#103-108):
- (success) = recipient.call{value: amount}() (#106)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IRouter.WETH() (#84) is not in mixedCase
Struct SEISMICCB.valuesFromGetValues (#179-189) is not in CapWords
Parameter SEISMICCB.setTradingStatus(bool,uint256,uint256,uint256,uint256)._deadline (#299) is not in mixedCase
Parameter SEISMICCB.setTaxes(uint256,uint256,uint256)._rfi (#354) is not in mixedCase
Parameter SEISMICCB.setTaxes(uint256,uint256,uint256)._treasury (#354) is not in mixedCase
Parameter SEISMICCB.setTaxes(uint256,uint256,uint256)._liquidity (#354) is not in mixedCase
Parameter SEISMICCB.setSellTaxes(uint256,uint256,uint256)._rfi (#359) is not in mixedCase
Parameter SEISMICCB.setSellTaxes(uint256,uint256,uint256)._treasury (#359) is not in mixedCase
Parameter SEISMICCB.setSellTaxes(uint256,uint256,uint256)._liquidity (#359) is not in mixedCase
Parameter SEISMICCB.updateSwapEnabled(bool)._enabled (#603) is not in mixedCase
Parameter SEISMICCB.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#643) is not in mixedCase
Parameter SEISMICCB.rescueAnyBEP20Tokens(address,address,uint256)._to (#643) is not in mixedCase
Parameter SEISMICCB.rescueAnyBEP20Tokens(address,address,uint256)._amount (#643) is not in mixedCase
Constant SEISMICCB._decimals (#143) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SEISMICCB.genesis_block (#154) is not in mixedCase
Constant SEISMICCB._name (#159) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SEISMICCB._symbol (#160) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#39)" inContext (#33-42)
Remove redundant statements if they congest code but offer no value.

Additional information: link

SEISMICCB._tTotal (#146) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#62-64)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#66-69)
name() should be declared external:
- SEISMICCB.name() (#224-226)
symbol() should be declared external:
- SEISMICCB.symbol() (#227-229)
totalSupply() should be declared external:
- SEISMICCB.totalSupply() (#235-237)
allowance(address,address) should be declared external:
- SEISMICCB.allowance(address,address) (#244-246)
approve(address,uint256) should be declared external:
- SEISMICCB.approve(address,uint256) (#248-251)
transferFrom(address,address,uint256) should be declared external:
- SEISMICCB.transferFrom(address,address,uint256) (#253-261)
increaseAllowance(address,uint256) should be declared external:
- SEISMICCB.increaseAllowance(address,uint256) (#263-266)
decreaseAllowance(address,uint256) should be declared external:
- SEISMICCB.decreaseAllowance(address,uint256) (#268-274)
transfer(address,uint256) should be declared external:
- SEISMICCB.transfer(address,uint256) (#276-280)
isExcludedFromReward(address) should be declared external:
- SEISMICCB.isExcludedFromReward(address) (#282-284)
reflectionFromToken(uint256,bool) should be declared external:
- SEISMICCB.reflectionFromToken(uint256,bool) (#286-295)
excludeFromFee(address) should be declared external:
- SEISMICCB.excludeFromFee(address) (#341-343)
includeInFee(address) should be declared external:
- SEISMICCB.includeInFee(address) (#345-347)
isExcludedFromFee(address) should be declared external:
- SEISMICCB.isExcludedFromFee(address) (#350-352)
setTaxes(uint256,uint256,uint256) should be declared external:
- SEISMICCB.setTaxes(uint256,uint256,uint256) (#354-357)
setSellTaxes(uint256,uint256,uint256) should be declared external:
- SEISMICCB.setSellTaxes(uint256,uint256,uint256) (#359-362)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- SEISMICCB.rescueAnyBEP20Tokens(address,address,uint256) (#643-645)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d number of PancakeSwap swaps is low.


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Youtube account


Unable to find Discord account


Unable to find token contract audit


Token is not listed at Mobula.Finance

Additional information: link


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


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

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for SCB

News for SCB