Git Source
function applyPendingBucketsPreview(
PendingAccountingState memory state,
uint256 pendingRecapitalizationUsdc,
uint256 pendingTradingRevenueUsdc
) internal pure;
function applyRecapitalizationIntent(
PendingAccountingState memory state,
uint256 amount
) internal pure;
function routeSeededRevenue(
PendingAccountingState memory state,
uint256 amount
) internal pure;
struct PendingAccountingState {
HousePoolWaterfallAccountingLib.WaterfallState waterfall;
uint256 unassignedAssets;
uint256 seniorSupply;
uint256 juniorSupply;
}