All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cardanofoundation.rewards.calculation.domain.EpochCalculationResult Maven / Gradle / Ivy

Go to download

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.Builder;
import lombok.Getter;
import lombok.Setter;

import java.math.BigInteger;
import java.util.List;

@Builder
@Getter
@Setter
public class EpochCalculationResult {
    int epoch;
    List PoolRewardCalculationResults;
    TreasuryCalculationResult treasuryCalculationResult;
    BigInteger totalAdaInCirculation;
    BigInteger treasury;
    BigInteger reserves;
    BigInteger totalDistributedRewards;
    BigInteger totalUndistributedRewards;
    BigInteger totalRewardsPot;
    BigInteger totalPoolRewardsPot;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy