proposal-46/contracts/v3-relayer-registry/interfaces/ITornadoStakingRewards.sol

8 lines
203 B
Solidity
Raw Permalink Normal View History

2024-01-31 10:12:30 +00:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
interface ITornadoStakingRewards {
function updateRewardsOnLockedBalanceChange(address account, uint256 amountLockedBeforehand) external;
}