interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
23 lines (22 loc) • 1.21 kB
TypeScript
import { QueryParamsRequest, QueryParamsResponse, QueryInflationRequest, QueryInflationResponse, QueryAnnualProvisionsRequest, QueryAnnualProvisionsResponse } from "./query";
/**
* Params returns the total set of minting parameters.
* @name getParams
* @package cosmos.mint.v1beta1
* @see proto service: cosmos.mint.v1beta1.Params
*/
export declare const getParams: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryParamsRequest) => Promise<QueryParamsResponse>;
/**
* Inflation returns the current minting inflation value.
* @name getInflation
* @package cosmos.mint.v1beta1
* @see proto service: cosmos.mint.v1beta1.Inflation
*/
export declare const getInflation: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryInflationRequest) => Promise<QueryInflationResponse>;
/**
* AnnualProvisions current minting annual provisions value.
* @name getAnnualProvisions
* @package cosmos.mint.v1beta1
* @see proto service: cosmos.mint.v1beta1.AnnualProvisions
*/
export declare const getAnnualProvisions: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryAnnualProvisionsRequest) => Promise<QueryAnnualProvisionsResponse>;