You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, we recently have conducted a systematic study about Solidity event usage, evolution, and impact, and we are attempting to build a tool to improve the practice of Solidity event use based on our findings. We have tried our prototype tool on some of the most popular GitHub Solidity repositories, and for your repository, we find a potential optimization of gas consumption arisen from event use.
The point is that when we use emit operation to store the value of a certain variable, local memory type variable would be preferable to global storage type (state) variable if they hold the same value. The reason is that an extra SLOAD operation would be needed to access the variable if it is storage type, and the SLOAD operation costs 800 gas.
For your repository, we find that the following event use can be improved:
vDODOToken.sol function name:updateDODOFeeBurnRatio event name:UpdateDODOFeeBurnRatio variable:DODO_FEE_BURN_RATIO->dodoFeeBurnRatio
function updateDODOFeeBurnRatio(uint256dodoFeeBurnRatio) public onlyOwner {
_DODO_FEE_BURN_RATIO_ = dodoFeeBurnRatio;
emitUpdateDODOFeeBurnRatio(_DODO_FEE_BURN_RATIO_);
}
DODOIncentive.sol function name:changePerReward event name:SetPerReward variable:dodoPerBlock->_dodoPerBlock
function changePerReward(uint256_dodoPerBlock) public onlyOwner {
_updateTotalReward();
dodoPerBlock = _dodoPerBlock;
emitSetPerReward(dodoPerBlock);
}
function name:changeDefaultRate event name:SetDefaultRate variable:defaultRate->_defaultRate
function changeDefaultRate(uint256_defaultRate) public onlyOwner {
defaultRate = _defaultRate;
emitSetDefaultRate(defaultRate);
}
function name:changeDODOProxy event name:SetNewProxy variable:DODO_PROXY->_dodoProxy
function changeDODOProxy(address_dodoProxy) public onlyOwner {
_DODO_PROXY_ = _dodoProxy;
emitSetNewProxy(_DODO_PROXY_);
}
RewardVault.sol function name:syncValue event name:DepositReward variable:REWARD_RESERVE->rewardBalance
Do you find our results useful? Your reply and invaluable suggestions would be greatly appreciated, and are vital for improving our tool. Thanks a lot for your time!
The text was updated successfully, but these errors were encountered:
Hi, we recently have conducted a systematic study about Solidity event usage, evolution, and impact, and we are attempting to build a tool to improve the practice of Solidity event use based on our findings. We have tried our prototype tool on some of the most popular GitHub Solidity repositories, and for your repository, we find a potential optimization of gas consumption arisen from event use.
The point is that when we use emit operation to store the value of a certain variable, local memory type variable would be preferable to global storage type (state) variable if they hold the same value. The reason is that an extra SLOAD operation would be needed to access the variable if it is storage type, and the SLOAD operation costs 800 gas.
For your repository, we find that the following event use can be improved:
function name: updateDODOFeeBurnRatio
event name: UpdateDODOFeeBurnRatio
variable: DODO_FEE_BURN_RATIO->dodoFeeBurnRatio
function name: changePerReward
event name: SetPerReward
variable: dodoPerBlock->_dodoPerBlock
function name: changeDefaultRate
event name: SetDefaultRate
variable: defaultRate->_defaultRate
function name: changeDODOProxy
event name: SetNewProxy
variable: DODO_PROXY->_dodoProxy
function name: syncValue
event name: DepositReward
variable: REWARD_RESERVE->rewardBalance
Do you find our results useful? Your reply and invaluable suggestions would be greatly appreciated, and are vital for improving our tool. Thanks a lot for your time!
The text was updated successfully, but these errors were encountered: