Skip to content
LogoLogo

Manage Allocations

As a curator, you perform two actions:

  • Set network allocation — determine how much funds to delegate to each network
  • Set operator shares within each network — specify how the network's allocation is distributed among operators

Set Initial Network Delegation

Using Safe

  1. Open "Transaction builder"
  2. Get the delegator contract address of your vault (using UI, CLI, or Etherscan)
  3. Enter the delegator's address as the contract address
  4. Click "Use Implementation ABI"
  5. Choose the setNetworkLimit() method
  6. Enter the desired subnetwork (network address concatenated with the uint96 identifier)
  7. Enter the maximum amount of collateral to allocate to the subnetwork
  8. Sign and send the transaction

Verify via Etherscan

  1. Open the "Read Contract" tab in the delegator contract you used
  2. Open the networkLimit() method
  3. Enter SUBNETWORK (network address concatenated with the uint96 identifier) in the subnetwork parameter
  4. Click "Query" — it should return the set amount Set network limit using Etherscan

Set Initial Operator Delegation

Using Safe

  1. Open "Transaction builder"
  2. Get the delegator contract address of your vault (using UI, CLI, or Etherscan)
  3. Enter the delegator's address as the contract address
  4. Click "Use Implementation ABI"
  5. Choose the setOperatorNetworkShares() method
  6. Enter the desired subnetwork (network address concatenated with the uint96 identifier)
  7. Enter the operator address
  8. Enter the amount of shares to allocate to the operator (e.g., 100 shares out of 1000 total shares means 10% of the stake allocated to the subnetwork)
  9. Sign and send the transaction

Verify via Etherscan

  1. Open the "Read Contract" tab in the delegator you used
  2. Open the operatorNetworkShares() method (you may also need totalOperatorNetworkShares)
  3. Enter SUBNETWORK (network address concatenated with the uint96 identifier) in the subnetwork parameter and OPERATOR_ADDRESS in the operator parameter
  4. Click "Query" — it should return the set amount

Set operator network shares using Etherscan