interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
16 lines (15 loc) • 691 B
TypeScript
import { GetRequest, GetResponse, ListRequest, ListResponse } from "./query";
/**
* Get queries an ORM table against an unique index.
* @name getGet
* @package cosmos.orm.query.v1alpha1
* @see proto service: cosmos.orm.query.v1alpha1.Get
*/
export declare const getGet: (client: import("../../../../helper-func-types").EndpointOrRpc, request: GetRequest) => Promise<GetResponse>;
/**
* List queries an ORM table against an index.
* @name getList
* @package cosmos.orm.query.v1alpha1
* @see proto service: cosmos.orm.query.v1alpha1.List
*/
export declare const getList: (client: import("../../../../helper-func-types").EndpointOrRpc, request: ListRequest) => Promise<ListResponse>;