Arabic Token Logo

ABIC [Arabic] Token

About ABIC

Listings

Token 3 years
CoinGecko 2 years
CoinMarketCap 2 years

Arabic Cash is the world's first independent decentralized financial instrument based on loans and deposits backed by Arab capital. It aims to attract new investments in the development of the digital economy of the Arab world.
Recently, excessive bureaucracy and complex financial monitoring of the Eastern region, like a giant dam, have blocked investment flows from all over the world. Arabic Cash is now ready to make a difference. Now any inhabitant of the planet can invest in the rapidly developing countries of the Eastern region. All investments accumulate in the decentralized Binance Smart Chain - the most reliable and profitable e-commerce platform to date.

With Arabic Cash technology, the world will have revolutionary tools for doing business. The official ABIC token allows you to make money transfers in large volumes, which is now necessary for business in the Arab countries. The ArabicSwap Decentralized Exchange allows you to preserve assets and generate passive income that no other bank can match. And the CryptoBank phenomenon will solve the global issues of lending to large financial sectors without the participation of intermediaries.

All of this will eventually turn into a large-scale financial ecosystem that can become a real phenomenon in a rapidly changing world.

Social

Laser Scorebeta Last Audit: 12 May 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...)


Contract ownership is not renounced (belongs to a wallet)

ArabicToken._writeCheckpoint(address,uint32,uint256,uint256) (#1030-1046) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1038)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

Pragma version=0.6.6 (#3) allows old versions
solc-0.6.6 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) (#432-438):
- (success) = recipient.call{value: amount}() (#436)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#511-537):
- (success,returndata) = target.call{value: weiValue}(data) (#520)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter ArabicToken.mintTo(address,uint256)._to (#852) is not in mixedCase
Parameter ArabicToken.mintTo(address,uint256)._amount (#852) is not in mixedCase
Variable ArabicToken._delegates (#864) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#25)" inContext (#15-28)
Remove redundant statements if they congest code but offer no value.

Additional information: link

BEP20.constructor(string,string).name (#587) shadows:
- BEP20.name() (#603-605) (function)
- IBEP20.name() (#120) (function)
BEP20.constructor(string,string).symbol (#587) shadows:
- BEP20.symbol() (#617-619) (function)
- IBEP20.symbol() (#115) (function)
BEP20.allowance(address,address).owner (#651) shadows:
- Ownable.owner() (#59-61) (function)
BEP20._approve(address,address,uint256).owner (#823) shadows:
- Ownable.owner() (#59-61) (function)
Rename the local variables that shadow another component.

Additional information: link

ArabicToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#922-943) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,ABIC::delegateBySig: signature expired) (#941)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#403-414) uses assembly
- INLINE ASM (#410-412)
Address._functionCallWithValue(address,bytes,uint256,string) (#511-537) uses assembly
- INLINE ASM (#529-532)
ArabicToken.getChainId() (#1053-1059) uses assembly
- INLINE ASM (#1055-1057)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#511-537) is never used and should be removed
Address.functionCall(address,bytes) (#458-460) is never used and should be removed
Address.functionCall(address,bytes,string) (#468-474) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#487-493) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#501-509) is never used and should be removed
Address.isContract(address) (#403-414) is never used and should be removed
Address.sendValue(address,uint256) (#432-438) is never used and should be removed
BEP20._burn(address,uint256) (#801-807) is never used and should be removed
BEP20._burnFrom(address,uint256) (#840-847) is never used and should be removed
Context._msgData() (#24-27) is never used and should be removed
SafeMath.div(uint256,uint256) (#298-300) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#314-324) is never used and should be removed
SafeMath.min(uint256,uint256) (#363-365) is never used and should be removed
SafeMath.mod(uint256,uint256) (#338-340) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#354-361) is never used and should be removed
SafeMath.mul(uint256,uint256) (#272-284) is never used and should be removed
SafeMath.sqrt(uint256) (#368-379) is never used and should be removed
Remove unused functions.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#78-81)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#87-89)
decimals() should be declared external:
- BEP20.decimals() (#610-612)
symbol() should be declared external:
- BEP20.symbol() (#617-619)
totalSupply() should be declared external:
- BEP20.totalSupply() (#624-626)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#643-646)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#651-653)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (#663-666)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#675-678)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#692-704)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#718-721)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#737-744)
mintTo(address,uint256) should be declared external:
- ArabicToken.mintTo(address,uint256) (#852-855)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


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 whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Token has relatively low CoinGecko rank

Price for ABIC

News for ABIC