org.cardanofoundation.rewards.calculation.domain.ProtocolParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cf-rewards-calculation Show documentation
Show all versions of cf-rewards-calculation Show documentation
This project aims to be a cardano reward calculation, java formula implementation and edge case
documentation
The newest version!
package org.cardanofoundation.rewards.calculation.domain;
import lombok.*;
import java.math.BigDecimal;
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ProtocolParameters {
BigDecimal decentralisation;
BigDecimal treasuryGrowRate;
BigDecimal monetaryExpandRate;
Integer optimalPoolCount;
BigDecimal poolOwnerInfluence;
}