The Artrade app provides NFT creators and NFT investors with a streamlined, user-friendly app that eliminates the high minting fees, exorbitant commissions, social disconnect, and environmental impact of the current NFT marketplace. Artrade is the first eco-responsible application dedicated to NFT. It allows its users to view, reference, keep, buy and create their own NFTs in the simplest and fastest possible way. In addition, many exclusive features such as NFT Live and NFT Real will be available, as well as a utility Token: the ATR offering many advantages on the platform (reduction ofcosts, participation in decisions, etc.).
On Artrade users can:
Make transactions: buy, sell, bid in fiat or in crypto; Create: with NFT Live, it is now possible to create an NFT directly from your smartphone; Display: in a personalized virtual gallery; Be rewarded: by sharing or displaying artist's works in galleries; Discover: love, share, follow, promote, discuss, display; Preserve: secure digital assets effortlessly.
What makes Artrade unique :
Artrade is different from other applications in that it is genuinely user-driven by: › Involving the community via utility and governance tokens; Making it possible to create NFTs Live via your smartphone; Reducing the energy footprint by using Solana; Offsetting carbon emissions with ClimatePartner; Contributing to charity projects via the Blockchain Charity Wallet.
Who is Artrade for?
The general public Users, enthusiasts, etc. They are involved in strategic decisions, can vote and can be rewarded. › Celebrities Public figures, entrepreneurs, etc. They can use their fame to support causes and nonprofit organizations for free. › Associations NGO, benefactors, etc. Thanks to the blockchain, Charity Wallet, funds donated are distributed among non-profit projects usefully and totally transparently. › Artists Digital and non-digital artists They can sell and/or create their works directly on the platform.
Innovative features :
NFT Live
This is the most anticipated function: it makes it possible to create an NFT Live, and from a telephone or a connected mobile device. The latter can be immediately customized by adding effects (GIF, emoji, filters, etc.). Once on sale, it exists only as an NFT on the Artrade platform, making it unique. To make this feature enviable, only certain users can access it (+10K followers on Instagram and/or Twitter in particular). There is a patent pending for this feature.
NFT Real
In correlation with Artrade, a user will be able to make a sale of an NFT associated with a physical and real asset. Hence it will be possible to create a series of unique NFTs associated with real objects. For example, a painter could sell real certified paintings on Artrade thanks to NFT technology.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
BEP20.constructor(address,address,address,address,address,address) (BEP20.sol#72-129) ignores return value by _totalSupply.add(_wallet1EndOfIcoSupply).add(_wallet2EndOfIcoSupply).add(_wallet3EndOfIcoSupply).add(_wallet4EndOfIcoSupply).add(_wallet5EndOfIcoSupply).add(_wallet6EndOfIcoSupply) (BEP20.sol#128)
Ensure that all the return values of the function calls are used.
Additional information: link
BEP20.allowance(address,address).owner (BEP20.sol#251) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
BEP20._approve(address,address,uint256).owner (BEP20.sol#463) shadows:
- Ownable.owner() (Ownable.sol#36-38) (function)
Rename the local variables that shadow another component.
Additional information: link
Pragma version0.8.0 (BEP20.sol#3) allows old versions
Pragma version^0.8.0 (Context.sol#3) allows old versions
Pragma version^0.8.0 (IBEP20.sol#3) allows old versions
Pragma version^0.8.0 (Ownable.sol#3) allows old versions
Pragma version^0.8.0 (SafeMath.sol#2) allows old versions
solc-0.8.0 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
Ownable.constructor().msgSender (Ownable.sol#28) lacks a zero-check on :
- _owner = msgSender (Ownable.sol#29)
BEP20.constructor(address,address,address,address,address,address).wallet1 (BEP20.sol#72) lacks a zero-check on :
- _wallet1 = wallet1 (BEP20.sol#110)
BEP20.constructor(address,address,address,address,address,address).wallet2 (BEP20.sol#72) lacks a zero-check on :
- _wallet2 = wallet2 (BEP20.sol#111)
BEP20.constructor(address,address,address,address,address,address).wallet3 (BEP20.sol#72) lacks a zero-check on :
- _wallet3 = wallet3 (BEP20.sol#112)
BEP20.constructor(address,address,address,address,address,address).wallet4 (BEP20.sol#72) lacks a zero-check on :
- _wallet4 = wallet4 (BEP20.sol#113)
BEP20.constructor(address,address,address,address,address,address).wallet5 (BEP20.sol#72) lacks a zero-check on :
- _wallet5 = wallet5 (BEP20.sol#114)
BEP20.constructor(address,address,address,address,address,address).wallet6 (BEP20.sol#72) lacks a zero-check on :
- _wallet6 = wallet6 (BEP20.sol#115)
Check that the address is not zero.
Additional information: link
BEP20.mint(uint256) (BEP20.sol#327-363) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _startTime_6M,BEP20: too early for minting request) (BEP20.sol#330)
- require(bool,string)(block.timestamp >= _startTime_4M,BEP20: too early for minting request) (BEP20.sol#339)
- require(bool,string)(block.timestamp >= _startTime_3M,BEP20: too early for minting request) (BEP20.sol#347)
- require(bool,string)(block.timestamp >= _startTime_2M,BEP20: too early for minting request) (BEP20.sol#355)
Avoid relying on block.timestamp.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.8.0', '^0.8.0']
- 0.8.0 (BEP20.sol#3)
- ^0.8.0 (Context.sol#3)
- ^0.8.0 (IBEP20.sol#3)
- ^0.8.0 (Ownable.sol#3)
- ^0.8.0 (SafeMath.sol#2)
Use one Solidity version.
Additional information: link
Context._msgData() (Context.sol#19-22) is never used and should be removed
SafeMath.div(uint256,uint256) (SafeMath.sol#97-99) is never used and should be removed
SafeMath.div(uint256,uint256,string) (SafeMath.sol#112-119) is never used and should be removed
SafeMath.mod(uint256,uint256) (SafeMath.sol#132-134) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (SafeMath.sol#147-150) is never used and should be removed
SafeMath.mul(uint256,uint256) (SafeMath.sol#72-84) is never used and should be removed
Remove unused functions.
Additional information: link
Constant BEP20.thirtyDays (BEP20.sol#11) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BEP20.cliffSixM (BEP20.sol#12) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BEP20.cliffFourM (BEP20.sol#13) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BEP20.cliffThreeM (BEP20.sol#14) is not in UPPER_CASE_WITH_UNDERSCORES
Constant BEP20.cliffTwoM (BEP20.sol#15) is not in UPPER_CASE_WITH_UNDERSCORES
Variable BEP20._totalSupply_6M (BEP20.sol#22) is not in mixedCase
Variable BEP20._totalSupply_4M (BEP20.sol#23) is not in mixedCase
Variable BEP20._totalSupply_3M (BEP20.sol#24) is not in mixedCase
Variable BEP20._totalSupply_2M (BEP20.sol#25) is not in mixedCase
Variable BEP20._authoriseMin_6M (BEP20.sol#28) is not in mixedCase
Variable BEP20._authoriseMin_4M (BEP20.sol#29) is not in mixedCase
Variable BEP20._authoriseMin_3M (BEP20.sol#30) is not in mixedCase
Variable BEP20._authoriseMin_2M (BEP20.sol#31) is not in mixedCase
Variable BEP20._maxSupply_6M (BEP20.sol#34) is not in mixedCase
Variable BEP20._maxSupply_4M (BEP20.sol#35) is not in mixedCase
Variable BEP20._maxSupply_3M (BEP20.sol#36) is not in mixedCase
Variable BEP20._maxSupply_2M (BEP20.sol#37) is not in mixedCase
Variable BEP20._startTime_2M (BEP20.sol#60) is not in mixedCase
Variable BEP20._startTime_3M (BEP20.sol#61) is not in mixedCase
Variable BEP20._startTime_4M (BEP20.sol#62) is not in mixedCase
Variable BEP20._startTime_6M (BEP20.sol#63) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (Context.sol#20)" inContext (Context.sol#14-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable BEP20._authoriseMin_2M (BEP20.sol#31) is too similar to BEP20._authoriseMin_3M (BEP20.sol#30)
Variable BEP20._authoriseMin_2M (BEP20.sol#31) is too similar to BEP20._authoriseMin_4M (BEP20.sol#29)
Variable BEP20._authoriseMin_3M (BEP20.sol#30) is too similar to BEP20._authoriseMin_4M (BEP20.sol#29)
Variable BEP20._authoriseMin_2M (BEP20.sol#31) is too similar to BEP20._authoriseMin_6M (BEP20.sol#28)
Variable BEP20._authoriseMin_3M (BEP20.sol#30) is too similar to BEP20._authoriseMin_6M (BEP20.sol#28)
Variable BEP20._authoriseMin_4M (BEP20.sol#29) is too similar to BEP20._authoriseMin_6M (BEP20.sol#28)
Variable BEP20._maxSupply_2M (BEP20.sol#37) is too similar to BEP20._maxSupply_3M (BEP20.sol#36)
Variable BEP20._maxSupply_2M (BEP20.sol#37) is too similar to BEP20._maxSupply_4M (BEP20.sol#35)
Variable BEP20._maxSupply_3M (BEP20.sol#36) is too similar to BEP20._maxSupply_4M (BEP20.sol#35)
Variable BEP20._maxSupply_2M (BEP20.sol#37) is too similar to BEP20._maxSupply_6M (BEP20.sol#34)
Variable BEP20._maxSupply_3M (BEP20.sol#36) is too similar to BEP20._maxSupply_6M (BEP20.sol#34)
Variable BEP20._maxSupply_4M (BEP20.sol#35) is too similar to BEP20._maxSupply_6M (BEP20.sol#34)
Variable BEP20._startTime_2M (BEP20.sol#60) is too similar to BEP20._startTime_3M (BEP20.sol#61)
Variable BEP20._startTime_2M (BEP20.sol#60) is too similar to BEP20._startTime_4M (BEP20.sol#62)
Variable BEP20._startTime_2M (BEP20.sol#60) is too similar to BEP20._startTime_6M (BEP20.sol#63)
Variable BEP20._startTime_3M (BEP20.sol#61) is too similar to BEP20._startTime_4M (BEP20.sol#62)
Variable BEP20._startTime_3M (BEP20.sol#61) is too similar to BEP20._startTime_6M (BEP20.sol#63)
Variable BEP20._startTime_4M (BEP20.sol#62) is too similar to BEP20._startTime_6M (BEP20.sol#63)
Variable BEP20._totalSupply_2M (BEP20.sol#25) is too similar to BEP20._totalSupply_3M (BEP20.sol#24)
Variable BEP20._totalSupply_2M (BEP20.sol#25) is too similar to BEP20._totalSupply_4M (BEP20.sol#23)
Variable BEP20._totalSupply_3M (BEP20.sol#24) is too similar to BEP20._totalSupply_4M (BEP20.sol#23)
Variable BEP20._totalSupply_2M (BEP20.sol#25) is too similar to BEP20._totalSupply_6M (BEP20.sol#22)
Variable BEP20._totalSupply_3M (BEP20.sol#24) is too similar to BEP20._totalSupply_6M (BEP20.sol#22)
Variable BEP20._totalSupply_4M (BEP20.sol#23) is too similar to BEP20._totalSupply_6M (BEP20.sol#22)
Variable BEP20._wallet1EndOfIcoSupply (BEP20.sol#47) is too similar to BEP20._wallet2EndOfIcoSupply (BEP20.sol#48)
Variable BEP20._wallet1EndOfIcoSupply (BEP20.sol#47) is too similar to BEP20._wallet3EndOfIcoSupply (BEP20.sol#49)
Variable BEP20._wallet1EndOfIcoSupply (BEP20.sol#47) is too similar to BEP20._wallet4EndOfIcoSupply (BEP20.sol#50)
Variable BEP20._wallet1EndOfIcoSupply (BEP20.sol#47) is too similar to BEP20._wallet5EndOfIcoSupply (BEP20.sol#51)
Variable BEP20._wallet1EndOfIcoSupply (BEP20.sol#47) is too similar to BEP20._wallet6EndOfIcoSupply (BEP20.sol#52)
Variable BEP20._wallet1MonthlySupply (BEP20.sol#39) is too similar to BEP20._wallet2MonthlySupply (BEP20.sol#40)
Variable BEP20._wallet1MonthlySupply (BEP20.sol#39) is too similar to BEP20._wallet3MonthlySupply (BEP20.sol#41)
Variable BEP20._wallet1MonthlySupply (BEP20.sol#39) is too similar to BEP20._wallet4MonthlySupply (BEP20.sol#42)
Variable BEP20._wallet1MonthlySupply (BEP20.sol#39) is too similar to BEP20._wallet5MonthlySupply (BEP20.sol#43)
Variable BEP20._wallet1MonthlySupply (BEP20.sol#39) is too similar to BEP20._wallet6MonthlySupply (BEP20.sol#44)
Variable BEP20._wallet2EndOfIcoSupply (BEP20.sol#48) is too similar to BEP20._wallet3EndOfIcoSupply (BEP20.sol#49)
Variable BEP20._wallet2EndOfIcoSupply (BEP20.sol#48) is too similar to BEP20._wallet4EndOfIcoSupply (BEP20.sol#50)
Variable BEP20._wallet2EndOfIcoSupply (BEP20.sol#48) is too similar to BEP20._wallet5EndOfIcoSupply (BEP20.sol#51)
Variable BEP20._wallet2EndOfIcoSupply (BEP20.sol#48) is too similar to BEP20._wallet6EndOfIcoSupply (BEP20.sol#52)
Variable BEP20._wallet2MonthlySupply (BEP20.sol#40) is too similar to BEP20._wallet3MonthlySupply (BEP20.sol#41)
Variable BEP20._wallet2MonthlySupply (BEP20.sol#40) is too similar to BEP20._wallet4MonthlySupply (BEP20.sol#42)
Variable BEP20._wallet2MonthlySupply (BEP20.sol#40) is too similar to BEP20._wallet5MonthlySupply (BEP20.sol#43)
Variable BEP20._wallet2MonthlySupply (BEP20.sol#40) is too similar to BEP20._wallet6MonthlySupply (BEP20.sol#44)
Variable BEP20._wallet3EndOfIcoSupply (BEP20.sol#49) is too similar to BEP20._wallet4EndOfIcoSupply (BEP20.sol#50)
Variable BEP20._wallet3EndOfIcoSupply (BEP20.sol#49) is too similar to BEP20._wallet5EndOfIcoSupply (BEP20.sol#51)
Variable BEP20._wallet3EndOfIcoSupply (BEP20.sol#49) is too similar to BEP20._wallet6EndOfIcoSupply (BEP20.sol#52)
Variable BEP20._wallet3MonthlySupply (BEP20.sol#41) is too similar to BEP20._wallet4MonthlySupply (BEP20.sol#42)
Variable BEP20._wallet3MonthlySupply (BEP20.sol#41) is too similar to BEP20._wallet5MonthlySupply (BEP20.sol#43)
Variable BEP20._wallet3MonthlySupply (BEP20.sol#41) is too similar to BEP20._wallet6MonthlySupply (BEP20.sol#44)
Variable BEP20._wallet4EndOfIcoSupply (BEP20.sol#50) is too similar to BEP20._wallet5EndOfIcoSupply (BEP20.sol#51)
Variable BEP20._wallet4EndOfIcoSupply (BEP20.sol#50) is too similar to BEP20._wallet6EndOfIcoSupply (BEP20.sol#52)
Variable BEP20._wallet4MonthlySupply (BEP20.sol#42) is too similar to BEP20._wallet5MonthlySupply (BEP20.sol#43)
Variable BEP20._wallet4MonthlySupply (BEP20.sol#42) is too similar to BEP20._wallet6MonthlySupply (BEP20.sol#44)
Variable BEP20._wallet5EndOfIcoSupply (BEP20.sol#51) is too similar to BEP20._wallet6EndOfIcoSupply (BEP20.sol#52)
Variable BEP20._wallet5MonthlySupply (BEP20.sol#43) is too similar to BEP20._wallet6MonthlySupply (BEP20.sol#44)
Prevent variables from having similar names.
Additional information: link
BEP20.constructor(address,address,address,address,address,address) (BEP20.sol#72-129) uses literals with too many digits:
- _maxSupply = 1800000000 * (10 ** uint256(_decimals)) (BEP20.sol#105)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BEP20._authoriseMin_6M (BEP20.sol#28) is never used in BEP20 (BEP20.sol#9-483)
BEP20._authoriseMin_4M (BEP20.sol#29) is never used in BEP20 (BEP20.sol#9-483)
BEP20._authoriseMin_3M (BEP20.sol#30) is never used in BEP20 (BEP20.sol#9-483)
BEP20._authoriseMin_2M (BEP20.sol#31) is never used in BEP20 (BEP20.sol#9-483)
BEP20._wallet6MonthlySupply (BEP20.sol#44) is never used in BEP20 (BEP20.sol#9-483)
Remove unused state variables.
Additional information: link
BEP20._authoriseMin_2M (BEP20.sol#31) should be constant
BEP20._authoriseMin_3M (BEP20.sol#30) should be constant
BEP20._authoriseMin_4M (BEP20.sol#29) should be constant
BEP20._authoriseMin_6M (BEP20.sol#28) should be constant
BEP20._wallet6MonthlySupply (BEP20.sol#44) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
getOwner() should be declared external:
- BEP20.getOwner() (BEP20.sol#134-136)
decimals() should be declared external:
- BEP20.decimals() (BEP20.sol#182-184)
symbol() should be declared external:
- BEP20.symbol() (BEP20.sol#189-191)
name() should be declared external:
- BEP20.name() (BEP20.sol#196-198)
totalSupply() should be declared external:
- BEP20.totalSupply() (BEP20.sol#203-205)
balanceOf(address) should be declared external:
- BEP20.balanceOf(address) (BEP20.sol#210-212)
getEndOfICO() should be declared external:
- BEP20.getEndOfICO() (BEP20.sol#224-226)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (BEP20.sol#243-246)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (BEP20.sol#251-253)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (BEP20.sol#262-265)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (BEP20.sol#279-283)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (BEP20.sol#297-300)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (BEP20.sol#316-319)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (BEP20.sol#327-363)
burn(uint256) should be declared external:
- BEP20.burn(uint256) (BEP20.sol#371-374)
burnFrom(address,uint256) should be declared external:
- BEP20.burnFrom(address,uint256) (BEP20.sol#387-390)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#55-58)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#64-66)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinHunt
Additional information: link
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 scam / price dump / death
Token has relatively low CoinGecko rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death