_packedsplitParts2Of
Contract: JBSplitsStore
More packed data of splits for each project ID's configurations.
This packed data is often 0.
Definition
/**
  @notice
  More packed data of splits for each project ID's configurations.
  @dev
  This packed data is often 0.
  _projectId The ID of the project to get packed splits data for.
  _domain An identifier within which the returned splits should be considered active.
  _group The identifying group of the splits.
  _index The indexed order that the split was set at.
*/
mapping(uint256 => mapping(uint256 => mapping(uint256 => mapping(uint256 => uint256))))
  private _packedSplitParts2Of;
- Arguments:
- _projectIdis the ID of the project to get packed splits data for.
- _domainis an identifier within which the returned splits should be considered active.
- _groupis the identifying group of the splits.
- _indexis the indexed order that the split was set at.
 
- Returns packed split data.
- The resulting view function is private to this contract.