tornado-contracts/contracts/Governance/v3-relayer-registry/interfaces/ITornadoStakingRewards.sol
2024-03-29 21:52:45 +00:00

8 lines
203 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
interface ITornadoStakingRewards {
function updateRewardsOnLockedBalanceChange(address account, uint256 amountLockedBeforehand) external;
}