Skip to main content

IKeeperRewards

Git Source

Inherits: IKeeperOracles

Author: StakeWise

Defines the interface for the Keeper contract rewards

Functions

prevRewardsRoot

Previous Rewards Root

function prevRewardsRoot() external view returns (bytes32);

Returns

NameTypeDescription
<none>bytes32The previous merkle tree root of the rewards accumulated by the Vaults

rewardsRoot

Rewards Root

function rewardsRoot() external view returns (bytes32);

Returns

NameTypeDescription
<none>bytes32The latest merkle tree root of the rewards accumulated by the Vaults

rewardsNonce

Rewards Nonce

function rewardsNonce() external view returns (uint64);

Returns

NameTypeDescription
<none>uint64The nonce used for updating rewards merkle tree root

lastRewardsTimestamp

The last rewards update

function lastRewardsTimestamp() external view returns (uint64);

Returns

NameTypeDescription
<none>uint64The timestamp of the last rewards update

rewardsMinOracles

The minimum number of oracles required to update rewards

function rewardsMinOracles() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The minimum number of oracles

rewardsDelay

The rewards delay

function rewardsDelay() external view returns (uint256);

Returns

NameTypeDescription
<none>uint256The delay in seconds between rewards updates

rewards

Get last synced Vault cumulative reward

function rewards(address vault) external view returns (int192 assets, uint64 nonce);

Parameters

NameTypeDescription
vaultaddressThe address of the Vault

Returns

NameTypeDescription
assetsint192The last synced reward assets
nonceuint64The last synced reward nonce

unlockedMevRewards

Get last unlocked shared MEV Vault cumulative reward

function unlockedMevRewards(address vault) external view returns (uint192 assets, uint64 nonce);

Parameters

NameTypeDescription
vaultaddressThe address of the Vault

Returns

NameTypeDescription
assetsuint192The last synced reward assets
nonceuint64The last synced reward nonce

isHarvestRequired

Checks whether Vault must be harvested

function isHarvestRequired(address vault) external view returns (bool);

Parameters

NameTypeDescription
vaultaddressThe address of the Vault

Returns

NameTypeDescription
<none>booltrue if the Vault requires harvesting, false otherwise

canHarvest

Checks whether the Vault can be harvested

function canHarvest(address vault) external view returns (bool);

Parameters

NameTypeDescription
vaultaddressThe address of the Vault

Returns

NameTypeDescription
<none>booltrue if Vault can be harvested, false otherwise

canUpdateRewards

Checks whether rewards can be updated

function canUpdateRewards() external view returns (bool);

Returns

NameTypeDescription
<none>booltrue if rewards can be updated, false otherwise

isCollateralized

Checks whether the Vault has registered validators

function isCollateralized(address vault) external view returns (bool);

Parameters

NameTypeDescription
vaultaddressThe address of the Vault

Returns

NameTypeDescription
<none>booltrue if Vault is collateralized, false otherwise

updateRewards

Update rewards data

function updateRewards(RewardsUpdateParams calldata params) external;

Parameters

NameTypeDescription
paramsRewardsUpdateParamsThe struct containing rewards update parameters

harvest

Harvest rewards. Can be called only by Vault.

function harvest(HarvestParams calldata params)
external
returns (int256 totalAssetsDelta, uint256 unlockedMevDelta, bool harvested);

Parameters

NameTypeDescription
paramsHarvestParamsThe struct containing rewards harvesting parameters

Returns

NameTypeDescription
totalAssetsDeltaint256The total reward/penalty accumulated by the Vault since the last sync
unlockedMevDeltauint256The Vault execution reward that can be withdrawn from shared MEV escrow. Only used by shared MEV Vaults.
harvestedbooltrue when the rewards were harvested, false otherwise

setRewardsMinOracles

Set min number of oracles for confirming rewards update. Can only be called by the owner.

function setRewardsMinOracles(uint256 _rewardsMinOracles) external;

Parameters

NameTypeDescription
_rewardsMinOraclesuint256The new min number of oracles for confirming rewards update

Events

RewardsUpdated

Event emitted on rewards update

event RewardsUpdated(
address indexed caller,
bytes32 indexed rewardsRoot,
uint256 avgRewardPerSecond,
uint64 updateTimestamp,
uint64 nonce,
string rewardsIpfsHash
);

Parameters

NameTypeDescription
calleraddressThe address of the function caller
rewardsRootbytes32The new rewards merkle tree root
avgRewardPerSeconduint256The new average reward per second
updateTimestampuint64The update timestamp used for rewards calculation
nonceuint64The nonce used for verifying signatures
rewardsIpfsHashstringThe new rewards IPFS hash

Harvested

Event emitted on Vault harvest

event Harvested(address indexed vault, bytes32 indexed rewardsRoot, int256 totalAssetsDelta, uint256 unlockedMevDelta);

Parameters

NameTypeDescription
vaultaddressThe address of the Vault
rewardsRootbytes32The rewards merkle tree root
totalAssetsDeltaint256The Vault total assets delta since last sync. Can be negative in case of penalty/slashing.
unlockedMevDeltauint256The Vault execution reward that can be withdrawn from shared MEV escrow. Only used by shared MEV Vaults.

RewardsMinOraclesUpdated

Event emitted on rewards min oracles number update

event RewardsMinOraclesUpdated(uint256 oracles);

Parameters

NameTypeDescription
oraclesuint256The new minimum number of oracles required to update rewards

Structs

Reward

A struct containing the last synced Vault's cumulative reward

struct Reward {
int192 assets;
uint64 nonce;
}

Properties

NameTypeDescription
assetsint192The Vault cumulative reward earned since the start. Can be negative in case of penalty/slashing.
nonceuint64The nonce of the last sync

UnlockedMevReward

A struct containing the last unlocked Vault's cumulative execution reward that can be withdrawn from shared MEV escrow. Only used by shared MEV Vaults.

struct UnlockedMevReward {
uint192 assets;
uint64 nonce;
}

Properties

NameTypeDescription
assetsuint192The shared MEV Vault's cumulative execution reward that can be withdrawn
nonceuint64The nonce of the last sync

RewardsUpdateParams

A struct containing parameters for rewards update

struct RewardsUpdateParams {
bytes32 rewardsRoot;
uint256 avgRewardPerSecond;
uint64 updateTimestamp;
string rewardsIpfsHash;
bytes signatures;
}

Properties

NameTypeDescription
rewardsRootbytes32The new rewards merkle root
avgRewardPerSeconduint256The new average reward per second
updateTimestampuint64The update timestamp used for rewards calculation
rewardsIpfsHashstringThe new IPFS hash with all the Vaults' rewards for the new root
signaturesbytesThe concatenation of the Oracles' signatures

HarvestParams

A struct containing parameters for harvesting rewards. Can only be called by Vault.

struct HarvestParams {
bytes32 rewardsRoot;
int160 reward;
uint160 unlockedMevReward;
bytes32[] proof;
}

Properties

NameTypeDescription
rewardsRootbytes32The rewards merkle root
rewardint160The Vault cumulative reward earned since the start. Can be negative in case of penalty/slashing.
unlockedMevRewarduint160The Vault cumulative execution reward that can be withdrawn from shared MEV escrow. Only used by shared MEV Vaults.
proofbytes32[]The proof to verify that Vault's reward is correct