Audit Date: 1/6/2023
Audit Score
Overall Audit Score
90%Backdoors
100%Fees
100%Smart Contract Complexity
100%Team Trust
60%Launch Date
Social Links
Audited by the WatchDogs Team.
Summary
NBA Apes Club is an NFT project that claims to provide 1-5% Daily Interest. There is no clear explanation on how they are able to provide this Daily return.
The owner is able to at any time withdraw all funds from the NFT contract to something they call a “withdraw account”. This is a wallet that they have full access to and can withdraw the funds from.
Below is their chart showing their returns for each NFT cost.
Fork Type :
The NFTs are Bored Apes NFTs with NBA Jerseys on them.
Contract Details
Chain | BNB |
Token | BUSD |
dApp Type: | NFT |
Weekly ROI Percent | 1-5% |
Referrals | Yes |
Owner Privileges
ownerWithdraw | withdraw all funds from contract. This does not effect the NFTs in users wallets |
renounceOwnershi | Remove ownership from contract |
transferOwnership | Allows owner to transfer ownership to a different wallet |
setAdmin | Allows owner to set an Admin role that grants different functions, such as minting, withdrawing, and setSignexpire |
function ownerWithdraw(address to, uint256 amount, address paymentToken) public onlyOwner() {
//合约提现,Owner地址才能调用此方法
if(paymentToken == USDTtoken){
IERC20(USDTtoken).transfer(to, amount);
} else if(paymentToken == BUSDtoken){
IERC20(BUSDtoken).transfer(to, amount);
} else{
revert("Wrong Payment Token");
}
}
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
function setAdmin(address _admin) public onlyOwner() {
Admin = _admin;
}
Fees
Deposit Fees | |
None |
None
Withdrawal Fees
Withdrawal Fees | |
None |
None
Trust
Disclaimer
DYOR – Please do your own research and only invest in what you can afford to lose. This contract has been manually audited by the WatchDogs.cc team for the specified smart contract address.