@@ -8514,6 +8514,26 @@ export interface paths {
85148514 patch?: never;
85158515 trace?: never;
85168516 };
8517+ "/sei/reports": {
8518+ parameters: {
8519+ query?: never;
8520+ header?: never;
8521+ path?: never;
8522+ cookie?: never;
8523+ };
8524+ /**
8525+ * Reports
8526+ * @description Get reports on Sei staking
8527+ */
8528+ get: operations["getSeiReports"];
8529+ put?: never;
8530+ post?: never;
8531+ delete?: never;
8532+ options?: never;
8533+ head?: never;
8534+ patch?: never;
8535+ trace?: never;
8536+ };
85178537 "/sei/balance": {
85188538 parameters: {
85198539 query?: never;
@@ -64512,6 +64532,62 @@ export interface operations {
6451264532 };
6451364533 };
6451464534 };
64535+ getSeiReports: {
64536+ parameters: {
64537+ query?: {
64538+ /** @description Comma-separated list of delegator addresses, these addresses
64539+ * are matched with the corresponding validator addresses. To
64540+ * fetch a specific stake, pass your wallet address and the
64541+ * validator address as parameters.
64542+ * */
64543+ delegators?: components["parameters"]["SEIDelegatorsParam"];
64544+ /** @description Comma-separated list of validators addresses, these addresses
64545+ * are matched with the corresponding delegator addresses. To
64546+ * fetch a specific stake, pass your wallet address and the
64547+ * validator address as parameters.
64548+ * */
64549+ validators?: components["parameters"]["SEIValidatorsParam"];
64550+ /** @description Comma-separated list of Kiln accounts identifiers */
64551+ accounts?: components["parameters"]["AccountsParam"];
64552+ };
64553+ header?: never;
64554+ path?: never;
64555+ cookie?: never;
64556+ };
64557+ requestBody?: never;
64558+ responses: {
64559+ /** @description Successful operation */
64560+ 200: {
64561+ headers: {
64562+ [name: string]: unknown;
64563+ };
64564+ content: {
64565+ "application/octet-stream": string;
64566+ };
64567+ };
64568+ /** @description Invalid parameters */
64569+ 400: {
64570+ headers: {
64571+ [name: string]: unknown;
64572+ };
64573+ content?: never;
64574+ };
64575+ /** @description Unauthorized */
64576+ 401: {
64577+ headers: {
64578+ [name: string]: unknown;
64579+ };
64580+ content?: never;
64581+ };
64582+ /** @description Internal server error */
64583+ 500: {
64584+ headers: {
64585+ [name: string]: unknown;
64586+ };
64587+ content?: never;
64588+ };
64589+ };
64590+ };
6451564591 postSeiGetBalance: {
6451664592 parameters: {
6451764593 query?: never;
0 commit comments