Bridge Oracle allows external data to be easily injected into blockchain and smart contracts allowing developers to leverage the terabytes of data available on Web2.0 to build a whole range of useful and impactful dApps without having to compromise on security.
Low | Medium | High | Critical | Total | |
---|---|---|---|---|---|
Not fixed | 1 | - | 1 | - | 2 |
Fixed | 3 | - | - | - | 3 |
Total | 4 | 0 | 1 | 0 | 5 |
not_fixed/high
In the contract `Ownable` the role `_owner` has authority over the functions shown in the diagram below. Any compromise to the `_owner` account may allow the hacker to take advantage of this authority.  In the contract `SmartChefFactory` the role `_owner` has authority over the functions shown in the diagram below. Any compromise to the `_owner` account may allow the hacker to take advantage of this authority.  In the contract `SmartChefInitializable` the role `SMART_CHEF_FACTORY` has authority over the functions shown in the diagram below. Any compromise to the `SMART_CHEF_FACTORY` account may allow the hacker to take advantage of this authority.  In the contract `SmartChefInitializable` the role `_owner` has authority over the functions shown in the diagram below. Any compromise to the `_owner` account may allow the hacker to take advantage of this authority. 
not_fixed/low
The contract is serving as the underlying entity to interact with one or more third party protocols. The scope of the audit treats third party entities as black boxes and assume their functional correctness. However, in the real world, third parties can be compromised and this may lead to lost or stolen assets. In addition, upgrades of third parties can possibly create severe impacts, such as increasing fees of third parties, migrating to new LP pools, etc. ```solidity=870 IBEP20 public rewardToken; ``` - The contract `SmartChefInitializable` interacts with third party contract with `IBEP20` interface via `rewardToken`. --- ```solidity=873 IBEP20 public stakedToken; ``` - The contract `SmartChefInitializable` interacts with third party contract with `IBEP20` interface via `stakedToken`. --- ```solidity=1031 function recoverWrongTokens(address _tokenAddress, uint256 _tokenAmount) external onlyOwner { ``` - The function `SmartChefInitializable.recoverWrongTokens` interacts with third party contract with `IBEP20` interface via `_tokenAddress`.
# | File Name |
---|---|
1 | BRGPool.sol |