Advanced Manual Smart Contract Audits

We’ve been hired by over 360+ blockchain startups and corporations to audit their smart contracts at an affordable cost. 

1k+

COMPLETED AUDITS

2M+

TOTAL VISITORS

Advanced Manual Solidity

Smart Contract Audit

Identify and eliminate security vulnerabilities in blockchains, smart contracts, and Web3 apps using the most rigorous and thorough cybersecurity techniques.

Better Safe Than Sorry

Importance of Audits

Can you spot the error in this transfer function?

				
					            function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override  {
        
        uint256 _amount = amount;
        
        if( _marketingFee > 0) {
        	uint256 fees = (amount * _marketingFee) / 100;
        	amount = _amount - fees;
            super._transfer(from, marketingWallet, fees);
        }

        if(_reflectionFee > 0){
            uint256 fees = (amount * _reflectionFee) / 100;
        	amount = _amount - fees;
            super._transfer(from, reflectionWallet, fees);
        }

        super._transfer(from, to, amount);
}
				
			

Actual error Coinsult detected during audit.

‘amount’ on line 17 will overwrite ‘amount’ on line 11. Since ‘_amount’ is never updated, too many tokens will be transfered on line 21.

Coinsult performs manual and automatic code analysis on all major blockchains that use Solidity smart contracts.

Manual Smart Contract Audit

Coinsult’s manual smart contract audit is an extensive methodical examination and analysis of the smart contract’s code that is used to interact with the blockchain.

Know Your Customer (KYC)

We identify the owner of a project by doing KYC. And we store this information securely. If the project performs any kind of scam, we will file a criminal complaint.

Contract Development (SAFU)

Smart contracts are simply programs stored on a blockchain that run when predetermined conditions are met. Coinsult develops and tests custom smart contracts, staking & presale contracts.

Increase Your

Social Appearance

Coinsult audit packages includes a post on Telegram, Twitter, GitHub and the official Coinsult Website.

20k+

DAILY VISITORS

15k+

FOLLOWERS

Contact Us

Request Your Audit