@@ -8254,6 +8254,26 @@ export interface paths {
82548254 patch?: never;
82558255 trace?: never;
82568256 };
8257+ "/sui/reports": {
8258+ parameters: {
8259+ query?: never;
8260+ header?: never;
8261+ path?: never;
8262+ cookie?: never;
8263+ };
8264+ /**
8265+ * Reports
8266+ * @description Get reports on Sui staking
8267+ */
8268+ get: operations["getSuiReports"];
8269+ put?: never;
8270+ post?: never;
8271+ delete?: never;
8272+ options?: never;
8273+ head?: never;
8274+ patch?: never;
8275+ trace?: never;
8276+ };
82578277 "/sui/operations": {
82588278 parameters: {
82598279 query?: never;
@@ -40093,6 +40113,10 @@ export interface components {
4009340113 * @example 2.02
4009440114 */
4009540115 net_apy: number;
40116+ /** @description Estimated value of rewards generated for that day in USD. The exchange rate is the rate at the end of the day provided by CoinGecko. */
40117+ rewards_usd: number;
40118+ /** @description Estimated value of the staked balance at the beginning of the day in USD. The exchange rate is the rate at the end of the day provided by CoinGecko. */
40119+ active_balance_usd: number;
4009640120 };
4009740121 SUIRewardByDay: {
4009840122 /**
@@ -63935,6 +63959,56 @@ export interface operations {
6393563959 };
6393663960 };
6393763961 };
63962+ getSuiReports: {
63963+ parameters: {
63964+ query?: {
63965+ /** @description Comma-separated list of validator addresses */
63966+ validators?: components["parameters"]["SUIValidatorsParam"];
63967+ /** @description Comma-separated list of delegator addresses */
63968+ delegators?: components["parameters"]["SUIDelegatorsParam"];
63969+ /** @description Comma-separated list of stake object ids */
63970+ stake_ids?: components["parameters"]["SUIStakeIdsParam"];
63971+ /** @description Comma-separated list of Kiln accounts identifiers */
63972+ accounts?: components["parameters"]["AccountsParam"];
63973+ };
63974+ header?: never;
63975+ path?: never;
63976+ cookie?: never;
63977+ };
63978+ requestBody?: never;
63979+ responses: {
63980+ /** @description Successful operation */
63981+ 200: {
63982+ headers: {
63983+ [name: string]: unknown;
63984+ };
63985+ content: {
63986+ "application/octet-stream": string;
63987+ };
63988+ };
63989+ /** @description Invalid parameters */
63990+ 400: {
63991+ headers: {
63992+ [name: string]: unknown;
63993+ };
63994+ content?: never;
63995+ };
63996+ /** @description Unauthorized */
63997+ 401: {
63998+ headers: {
63999+ [name: string]: unknown;
64000+ };
64001+ content?: never;
64002+ };
64003+ /** @description Internal server error */
64004+ 500: {
64005+ headers: {
64006+ [name: string]: unknown;
64007+ };
64008+ content?: never;
64009+ };
64010+ };
64011+ };
6393864012 getSuiOperations: {
6393964013 parameters: {
6394064014 query?: {
0 commit comments