Operator VCS
Last updated
Last updated
OperatorVCS
is a staking strategy that manages many OperatorVault
contracts by tracking the balance of each and moving tokens in and out of them.
Returns the token this strategy supports
Name | Type | Description |
---|---|---|
Returns the available deposit room for this strategy
Name | Type | Description |
---|---|---|
Returns the available withdrawal room for this strategy
Returns the total amount of fees that will be paid on the next call to updateDeposits
Returns the total amount of deposits in this strategy
Returns the maximum amount of tokens this strategy can hold
Accounts for total current deposits + current additional vault space + current space in the Chainlink
Returns the minimum amount of tokens that must remain in this strategy
Returns the deposit change since the last call to updateDeposits
(ignores stakes/withdraws)
Returns a list of all vaults
Returns the vault deposit limits
Returns the address of the vault implementation contract this strategy will use for new vaults
Returns a list of all fees
Returns the basis point amount of an operator's earned rewards that they receive
Returns the total unclaimed operator rewards
Returns a list of all vaults queued for removal
Deposits tokens from the staking pool into vaults
Withdraws tokens from vaults and sends them to the staking pool
ERC677 implementation to receive operator rewards
Used by vaults to withdraw operator rewards
Updates deposit accounting and calculates fees on newly earned rewards
Executes a vault group update
Re-unbonds all vaults in the current vault group and increments the current vault group
Upgrades vaults to a new implementation contract
Manually sets the withdrawal index for each vault group
Adds a new fee
Updates an existing fee
Sets a new vault implementation contract to be used when deploying/upgrading vaults
Deploys a new vault
Queues a vault for removal
A vault can only be queued for removal if the operator has been removed from the Chainlink staking contract
Removes a vault that has been queued for removal
Updates accounting for any number of vault groups
Used to correct minor accounting errors that result from the removal or slashing of operators in the Chainlink staking contract
Sets a vault's operator address
Sets the address authorized to claim rewards for a vault
Sets the basis point amount of an operator's earned rewards that they receive
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
token
address
Address of token
depositRoom
uint256
Amount that can be deposited
withdrawalRoom
uint256
Amount that can be withdrawn
totalFees
uint256
Amount of tokens to be paid as fees
totalDeposits
uint256
Total amount of tokens deposited
maxDeposits
uint256
Maximum token deposits
minDeposits
uint256
Minimum token deposits
depositChange
int256
Change in total token deposits
vaults
address[]
List of vault addresses
minDeposits
uint256
minimum amount of deposits that a vault can hold
maxDeposits
uint256
maximum amount of deposits that a vault can hold
vaultImplementation
address
Address of vault implementation contract
fees
struct VaultControllerStrategy.Fee[]
List of fees
operatorRewardPercentage
uint256
Basis point operator reward percentage
unclaimedOperatorRewards
uint256
Total unclaimed operator rewards
availableRewards
uint256
Total available operator rewards
queue
address[]
List of vaults queued for removal
_amount
uint256
Amount to deposit
_data
bytes
Encoded vault deposit order
_amount
uint256
Amount to withdraw
_data
bytes
Encoded vault withdrawal order
_receiver
address
Address to receive rewards
_amount
uint256
Amount to withdraw
_data
bytes
Encoded min amount of rewards required to claim (set 0 to skip reward claiming)
depositChange
uint256
change in deposits since last update
receivers
address[]
List of fee receivers
amounts
uint256[]
List of fee amounts
_curGroupVaultsToUnbond
uint256[]
list of vaults to unbond in current vault group
_curGroupTotalDepositRoom
uint256[]
total deposit room across all vaults in current vault group
_nextGroup
uint256[]
index of next vault group
_nextGroupTotalUnbonded
uint256[]
total unbonded across all vaults in next vault group
_startIndex
uint256
Index of first vault to upgrade
_numVaults
uint256
Number of vaults to upgrade starting at _startIndex
_data
bytes
Optional encoded function call to be executed after upgrade
_withdrawalIndexes
uint64[]
list of withdrawal indexes for each vault group
_receiver
address
Address of fee receiver
_feeBasisPoints
uint256
Fee in basis points
_index
uint256
Index of fee
_receiver
address
Address of fee receiver
_feeBasisPoints
uint256
Fee in basis points
_vaultImplementation
address
Address of implementation contract
_operator
address
Address of operator that the vault represents
_index
uint256
Index of vault
_queueIndex
uint256
Index of vault in removal queue
_vaultGroups
uint256[]
list of vault groups to update
_totalDepositRoom
uint256[]
list of totalDepositRoom corresponding to list of vault groups
_totalUnbonded
uint256
total amount currently unbonded
_vaultMaxDeposits
uint256
vault deposit limit as defined in Chainlink staking contract
_index
uint256
Index of vault
_operator
address
Address of operator that the vault represents
_operator
address
Address of rewards receiver for vault
_operatorRewardPercentage
uint256
Basis point operator reward percentage