8 lines
201 B
Solidity
Raw Normal View History

2023-05-21 20:02:21 +03:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
interface ITornadoStakingRewards {
function updateRewardsOnLockedBalanceChange(address account, uint256 amountLockedBeforehand) external;
}