JBOperatorData
Codeβ
https://github.com/jbx-protocol/juice-contracts-v3/blob/main/contracts/structs/JBOperatorData.sol
Definitionβ
/**
  @member operator The address of the operator.
  @member domain The domain within which the operator is being given permissions. A domain of 0 is a wildcard domain, which gives an operator access to all domains.
  @member permissionIndexes The indexes of the permissions the operator is being given.
*/
struct JBOperatorData {
  address operator;
  uint256 domain;
  uint256[] permissionIndexes;
}
operatoris the address of the operator.domainis the domain within which the operator is being given permissions. A domain of 0 is a wildcard domain, which gives an operator access to all domains.permissionIndexesare the indexes of the permissions the operator is being given.