Cross Chain Farming Token Logo

CCF [Cross Chain Farming] Token

About CCF

Listings

Token 22 months

Website

white paper

The first cross-chain Farming as a Service (FaaS) DAO on Binance Smart Chain. Our aim is to optimize the power of farming across all chains, offering simple and low fee access to DeFi 3.0 for everyone. We farm for you, and use reflections and buy-backs to benefit holders, creating sustainable long term price action. In addition, we are the first FaaS DAO to offer additional services including decentralized token launch, listings and on-chain and off-chain security audits Funds from all these services will also be used for buy-backs, farming, etc. to support the CCF token.

Social

Laser Scorebeta Last Audit: 30 November 2021

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...)

CrossChain.sendETHToTeam(uint256) (#921-924) sends eth to arbitrary user
Dangerous calls:
- _CCFWalletAddress.transfer(amount.div(2)) (#922)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CrossChain._transfer(address,address,uint256) (#861-901):
External calls:
- swapTokensForEth(contractTokenBalance) (#883)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- sendETHToTeam(address(this).balance) (#887)
- _CCFWalletAddress.transfer(amount.div(2)) (#922)
- _marketingWalletAddress.transfer(amount.div(2)) (#923)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#900)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTeam) (#1005)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#964)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#973)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#984)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#994)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#965)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#975)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#985)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#996)
- _tokenTransfer(sender,recipient,amount,takeFee) (#900)
- _rTotal = _rTotal.sub(rFee) (#1011)
- _tokenTransfer(sender,recipient,amount,takeFee) (#900)
- _tOwned[address(this)] = _tOwned[address(this)].add(tTeam) (#1007)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#993)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#983)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#974)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#995)
Apply the check-effects-interactions pattern.

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.

CrossChain._approve(address,address,uint256).owner (#853) shadows:
- Ownable.owner() (#383-385) (function)
Rename the local variables that shadow another component.

Additional information: link

CrossChain._setMaxTxAmount(uint256) (#1082-1085) should emit an event for:
- _maxTxAmount = maxTxAmount (#1084)
Emit an event for critical parameter changes.

Additional information: link

CrossChain._setCCFWallet(address).CCFWalletAddress (#1078) lacks a zero-check on :
- _CCFWalletAddress = CCFWalletAddress (#1079)
Check that the address is not zero.

Additional information: link

Reentrancy in CrossChain.transferFrom(address,address,uint256) (#757-761):
External calls:
- _transfer(sender,recipient,amount) (#758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- _transfer(sender,recipient,amount) (#758)
- _CCFWalletAddress.transfer(amount.div(2)) (#922)
- _marketingWalletAddress.transfer(amount.div(2)) (#923)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#759)
- _allowances[owner][spender] = amount (#857)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CrossChain.transferFrom(address,address,uint256) (#757-761):
External calls:
- _transfer(sender,recipient,amount) (#758)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#912-918)
External calls sending eth:
- _transfer(sender,recipient,amount) (#758)
- _CCFWalletAddress.transfer(amount.div(2)) (#922)
- _marketingWalletAddress.transfer(amount.div(2)) (#923)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#858)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#759)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#430-435) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#432)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#340-361) uses assembly
- INLINE ASM (#353-356)
Do not use evm assembly.

Additional information: link

SafeMath.mod(uint256,uint256,string) (#223-226) is never used and should be removed
Remove unused functions.

Additional information: link

CrossChain._previousTeamFee (#666) is set pre-construction with a non-constant function or state variable:
- _teamFee
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

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

Additional information: link

Variable CrossChain._marketingWalletAddress (#669) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CrossChain.transferFrom(address,address,uint256) (#757-761):
External calls:
- _transfer(sender,recipient,amount) (#758)
- _CCFWalletAddress.transfer(amount.div(2)) (#922)
- _marketingWalletAddress.transfer(amount.div(2)) (#923)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#759)
- _allowances[owner][spender] = amount (#857)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#858)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#759)
Apply the check-effects-interactions pattern.

Additional information: link

Variable CrossChain._transferToExcluded(address,address,uint256).rTransferAmount (#972) is too similar to CrossChain._transferStandard(address,address,uint256).tTransferAmount (#963)
Prevent variables from having similar names.

Additional information: link

CrossChain.slitherConstructorVariables() (#641-1087) uses literals with too many digits:
- _maxTxAmount = 100000000000000e9 (#677)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

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

Additional information: link

_getETHBalance() should be declared external:
- CrossChain._getETHBalance() (#1064-1066)
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.


Twitter account link seems to be invalid


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 verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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 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 no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for CCF