From a47e9ab5ac767fe00599f93f0c672fc1354b5a60 Mon Sep 17 00:00:00 2001 From: "kacper.golem" Date: Thu, 28 Mar 2024 15:40:29 +0100 Subject: [PATCH] FIX-OCT-1348: Add PPF & CF to the response --- backend/app/infrastructure/routes/epochs.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/backend/app/infrastructure/routes/epochs.py b/backend/app/infrastructure/routes/epochs.py index 3ee45a22b6..28632f939f 100644 --- a/backend/app/infrastructure/routes/epochs.py +++ b/backend/app/infrastructure/routes/epochs.py @@ -98,6 +98,14 @@ def get(self): required=False, description="The amount that will be used to increase staking and for other Octant related operations. Includes donations to projects that didn't reach the threshold.", ), + "ppf": fields.String( + required=False, + description="PPF for the given epoch. It's calculated from staking proceeds directly.", + ), + "communityFund": fields.String( + required=False, + description="Community fund for the given epoch. It's calculated from staking proceeds directly.", + ), }, )