forked from cerc-io/cosmos-explorer
97 lines
3.9 KiB
TypeScript
97 lines
3.9 KiB
TypeScript
import { Params, ParamsSDKType } from "./mint";
|
|
import * as _m0 from "protobufjs/minimal";
|
|
import { DeepPartial } from "../../../helpers";
|
|
/** QueryParamsRequest is the request type for the Query/Params RPC method. */
|
|
export interface QueryParamsRequest {
|
|
}
|
|
/** QueryParamsRequest is the request type for the Query/Params RPC method. */
|
|
export interface QueryParamsRequestSDKType {
|
|
}
|
|
/** QueryParamsResponse is the response type for the Query/Params RPC method. */
|
|
export interface QueryParamsResponse {
|
|
/** params defines the parameters of the module. */
|
|
params?: Params;
|
|
}
|
|
/** QueryParamsResponse is the response type for the Query/Params RPC method. */
|
|
export interface QueryParamsResponseSDKType {
|
|
params?: ParamsSDKType;
|
|
}
|
|
/** QueryInflationRequest is the request type for the Query/Inflation RPC method. */
|
|
export interface QueryInflationRequest {
|
|
}
|
|
/** QueryInflationRequest is the request type for the Query/Inflation RPC method. */
|
|
export interface QueryInflationRequestSDKType {
|
|
}
|
|
/**
|
|
* QueryInflationResponse is the response type for the Query/Inflation RPC
|
|
* method.
|
|
*/
|
|
export interface QueryInflationResponse {
|
|
/** inflation is the current minting inflation value. */
|
|
inflation: Uint8Array;
|
|
}
|
|
/**
|
|
* QueryInflationResponse is the response type for the Query/Inflation RPC
|
|
* method.
|
|
*/
|
|
export interface QueryInflationResponseSDKType {
|
|
inflation: Uint8Array;
|
|
}
|
|
/**
|
|
* QueryAnnualProvisionsRequest is the request type for the
|
|
* Query/AnnualProvisions RPC method.
|
|
*/
|
|
export interface QueryAnnualProvisionsRequest {
|
|
}
|
|
/**
|
|
* QueryAnnualProvisionsRequest is the request type for the
|
|
* Query/AnnualProvisions RPC method.
|
|
*/
|
|
export interface QueryAnnualProvisionsRequestSDKType {
|
|
}
|
|
/**
|
|
* QueryAnnualProvisionsResponse is the response type for the
|
|
* Query/AnnualProvisions RPC method.
|
|
*/
|
|
export interface QueryAnnualProvisionsResponse {
|
|
/** annual_provisions is the current minting annual provisions value. */
|
|
annualProvisions: Uint8Array;
|
|
}
|
|
/**
|
|
* QueryAnnualProvisionsResponse is the response type for the
|
|
* Query/AnnualProvisions RPC method.
|
|
*/
|
|
export interface QueryAnnualProvisionsResponseSDKType {
|
|
annual_provisions: Uint8Array;
|
|
}
|
|
export declare const QueryParamsRequest: {
|
|
encode(_: QueryParamsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest;
|
|
fromPartial(_: DeepPartial<QueryParamsRequest>): QueryParamsRequest;
|
|
};
|
|
export declare const QueryParamsResponse: {
|
|
encode(message: QueryParamsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse;
|
|
fromPartial(object: DeepPartial<QueryParamsResponse>): QueryParamsResponse;
|
|
};
|
|
export declare const QueryInflationRequest: {
|
|
encode(_: QueryInflationRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryInflationRequest;
|
|
fromPartial(_: DeepPartial<QueryInflationRequest>): QueryInflationRequest;
|
|
};
|
|
export declare const QueryInflationResponse: {
|
|
encode(message: QueryInflationResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryInflationResponse;
|
|
fromPartial(object: DeepPartial<QueryInflationResponse>): QueryInflationResponse;
|
|
};
|
|
export declare const QueryAnnualProvisionsRequest: {
|
|
encode(_: QueryAnnualProvisionsRequest, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnnualProvisionsRequest;
|
|
fromPartial(_: DeepPartial<QueryAnnualProvisionsRequest>): QueryAnnualProvisionsRequest;
|
|
};
|
|
export declare const QueryAnnualProvisionsResponse: {
|
|
encode(message: QueryAnnualProvisionsResponse, writer?: _m0.Writer): _m0.Writer;
|
|
decode(input: _m0.Reader | Uint8Array, length?: number): QueryAnnualProvisionsResponse;
|
|
fromPartial(object: DeepPartial<QueryAnnualProvisionsResponse>): QueryAnnualProvisionsResponse;
|
|
};
|