Git Source
function applyPendingClaimantBucketsPreview(
PendingAccountingState memory state,
ClaimantPendingBuckets memory claimantBuckets
) internal pure;
function applyClaimantRecapitalizationIntent(
PendingAccountingState memory state,
uint256 amount
) internal pure;
function applyRevenueIntent(
PendingAccountingState memory state,
uint256 amount
) internal pure;
struct ClaimantPendingBuckets {
uint256 recapitalizationUsdc;
uint256 revenueUsdc;
}
struct PendingAccountingState {
HousePoolWaterfallAccountingLib.WaterfallState waterfall;
uint256 unassignedAssets;
uint256 seniorSupply;
uint256 juniorSupply;
}