archangel Token Logo

ARCHA [archangel] Token

About ARCHA

Listings

Token 2 years
CoinMarketCap 2 years
[CoinGecko] alert: ArchAngel has migrated to the new token contract (0x36e43065e977bc72cb86dbd8405fae7057cdc7fd). For detailed information, please read https://archangeltoken.com/2021/12/15/migrated/
white paper

The ArchAngel Token is a dynamic project designed from the very beginning to actively drive the global adoption and comprehensive use of cryptocurrency and digital assets. The token’s self-sustaining ecosystem and tokenomics support a constantly growing and thriving ecosystem designed to add value and features through the development, refinement, and execution of a comprehensive technical roadmap.

Social

Laser Scorebeta Last Audit: 18 February 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links


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

AnyswapV6ERC20.initVault(address)._vault (#184) lacks a zero-check on :
- vault = _vault (#186)
- pendingVault = _vault (#187)
AnyswapV6ERC20.constructor(string,string,uint8,address,address)._underlying (#270) lacks a zero-check on :
- underlying = _underlying (#274)
AnyswapV6ERC20.constructor(string,string,uint8,address,address)._vault (#270) lacks a zero-check on :
- vault = _vault (#285)
- pendingVault = _vault (#286)
Check that the address is not zero.

Additional information: link

Reentrancy in AnyswapV6ERC20.deposit() (#305-309):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),_amount) (#307)
State variables written after the call(s):
- _deposit(_amount,msg.sender) (#308)
- _totalSupply += amount (#365)
- _deposit(_amount,msg.sender) (#308)
- balanceOf[account] += amount (#366)
Reentrancy in AnyswapV6ERC20.deposit(uint256) (#311-314):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#312)
State variables written after the call(s):
- _deposit(amount,msg.sender) (#313)
- _totalSupply += amount (#365)
- _deposit(amount,msg.sender) (#313)
- balanceOf[account] += amount (#366)
Reentrancy in AnyswapV6ERC20.deposit(uint256,address) (#316-319):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#317)
State variables written after the call(s):
- _deposit(amount,to) (#318)
- _totalSupply += amount (#365)
- _deposit(amount,to) (#318)
- balanceOf[account] += amount (#366)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AnyswapV6ERC20.deposit() (#305-309):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),_amount) (#307)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#367)
- _deposit(_amount,msg.sender) (#308)
Reentrancy in AnyswapV6ERC20.deposit(uint256) (#311-314):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#312)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#367)
- _deposit(amount,msg.sender) (#313)
Reentrancy in AnyswapV6ERC20.deposit(uint256,address) (#316-319):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#317)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#367)
- _deposit(amount,to) (#318)
Apply the check-effects-interactions pattern.

Additional information: link

AnyswapV6ERC20.mpc() (#173-178) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= delayVault (#174)
AnyswapV6ERC20.applyVault() (#200-203) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= delayVault) (#201)
AnyswapV6ERC20.applyMinter() (#211-215) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= delayMinter) (#212)
AnyswapV6ERC20.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#422-439) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,AnyswapV3ERC20: Expired permit) (#423)
AnyswapV6ERC20.transferWithPermit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#441-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,AnyswapV3ERC20: Expired permit) (#442)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#80-86) uses assembly
- INLINE ASM (#84)
AnyswapV6ERC20.constructor(string,string,uint8,address,address) (#270-298) uses assembly
- INLINE ASM (#290)
Do not use evm assembly.

Additional information: link

SafeERC20.safeApprove(IERC20,address,uint256) (#100-105) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.2 (#7) allows old versions
solc-0.8.10 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 SafeERC20.callOptionalReturn(IERC20,bytes) (#106-117):
- (success,returndata) = address(token).call(data) (#110)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter AnyswapV6ERC20.initVault(address)._vault (#184) is not in mixedCase
Parameter AnyswapV6ERC20.setVault(address)._vault (#194) is not in mixedCase
Parameter AnyswapV6ERC20.setMinter(address)._auth (#205) is not in mixedCase
Parameter AnyswapV6ERC20.revokeMinter(address)._auth (#218) is not in mixedCase
Function AnyswapV6ERC20.Swapin(bytes32,address,uint256) (#245-249) is not in mixedCase
Function AnyswapV6ERC20.Swapout(uint256,address) (#251-257) is not in mixedCase
Variable AnyswapV6ERC20.DOMAIN_SEPARATOR (#130) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

AnyswapV6ERC20.delay (#143) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- AnyswapV6ERC20.owner() (#169-171)
Swapin(bytes32,address,uint256) should be declared external:
- AnyswapV6ERC20.Swapin(bytes32,address,uint256) (#245-249)
Swapout(uint256,address) should be declared external:
- AnyswapV6ERC20.Swapout(uint256,address) (#251-257)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is low.


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Youtube 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 scam / price dump / death


Young tokens have high risks of scam / 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 CoinMarketCap rank

Price for ARCHA

News for ARCHA