JBSplitAllocationData
Codeβ
Definitionβ
/**
@member token The token being sent to the split allocator.
@member amount The amount being sent to the split allocator, as a fixed point number.
@member decimals The number of decimals in the amount.
@member projectId The project to which the split belongs.
@member group The group to which the split belongs.
@member split The split that caused the allocation.
*/
struct JBSplitAllocationData {
address token;
uint256 amount;
uint256 decimals;
uint256 projectId;
uint256 group;
JBSplit split;
}
tokenis the token being sent to the split allocator.amountis the amount being sent to the split allocator, as a fixed point number.decimalsis the number of decimals in the amount.projectIdis the project to which the split belongs.groupis the group to which the split belongs.splitis the split that caused the allocation.