Audit Date: 2/18/2023
Audit Score
Overall Audit Score
83%Backdoors
100%Fees
70%Smart Contract Complexity
80%Team Trust
80%See our Rate Calculations Here
Launch Date
Social Links
Audited by the WatchDogs Team.
Summary
This Audit is only for the bnbfarmer ROI dApp contract.
bnbfarmer is a BNB reward pool that provides daily returns.
This Contract relies on new investors to maintain the variable APY percentage. If the contract balance reaches 0, the interest will not be paid out.
The referral program is setup to automatically use a specified address set by the owner if not set by user through the website. This is not a part of the contract but should be noted.
Fork Type :
The smart contract has been seen before in the likes of bakedbeans, vineyard.money, and more. It has the same concept as other ROI dApps.
Backdoors:
None
Contract Details
Chain | BSC |
Token | BNB |
dApp Type | ROI dApp |
Daily ROI Percent | Up to 8% |
Referral Percentage | 12% |
Minimum Deposit | None (not modifiable by owner) |
Maximum Deposit | None (not modifiable by owner) |
Timelock | ∞ (Users can only withdraw rewards) |
Owner Privileges
renounceOwnership | Renounce ownership |
transferOwnership | Transfer ownership of contract |
openFarm | Open Contract for Deposits |
function openFarm() public payable onlyOwner {
require(marketFarmers == 0);
initialized = true;
marketFarmers = 108000000000;
function renounceOwnership() public onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
}
Fees
Deposit Fees | |
2.5% | Deposit Fee |
2.5% | Treasury Fee |
This is up to the owners discretion. Treasury Fee is to stimulate contract if balance is low to ensure payouts.
Deposit Fees Smart Contract Code
uint256 private devFeeVal = 2;
uint256 private marketingFeeVal = 2;
uint256 private webFeeVal = 1;
Withdrawal Fees | |
2.5% | Deposit Fee |
2.5% | Treasury Fee |
The Code is the same for deposits/withdrawals
Withdrawal Fees Smart Contract Code
See Above
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.