export interface ProtobufAny { "@type"?: string; } export interface RpcStatus { /** @format int32 */ code?: number; message?: string; details?: ProtobufAny[]; } export interface V1AuthzGrantRevokeMsgType { type_url?: string; grant?: boolean; } export interface V1AuthzGrantRevokeMsgsTypes { msgs?: V1AuthzGrantRevokeMsgType[]; } export interface V1MsgAccounts { accounts?: string[]; } export interface V1MsgAccountsPrivileges { accounts?: string[]; privileges?: string[]; } export interface V1MsgAccountsPrivilegesGrouped { accounts?: V1MsgAccounts[]; privileges?: string[]; } export interface V1MsgIndexes { indexes?: string[]; } export interface V1MsgRequiredPrivileges { indexes?: string[]; privileges?: string[]; } export interface V1MsgRequiredPrivilegesGrouped { indexes?: V1MsgIndexes[]; privileges?: string[]; } export declare type V1MsgUpdateAccountPrivilegesBatchResponse = object; export declare type V1MsgUpdateAccountPrivilegesGroupedBatchResponse = object; export declare type V1MsgUpdateAccountPrivilegesResponse = object; export declare type V1MsgUpdateAuthzGenericGrantRevokeBatchResponse = object; export declare type V1MsgUpdateGuardTransferCoinsResponse = object; export declare type V1MsgUpdateRequiredPrivilegesBatchResponse = object; export declare type V1MsgUpdateRequiredPrivilegesGroupedBatchResponse = object; export declare type V1MsgUpdateRequiredPrivilegesResponse = object; /** * Params defines the parameters for the module. */ export interface V1Params { admin_account?: string; account_privileges_token_collection_creator?: string; account_privileges_token_collection_id?: string; /** @format byte */ default_privileges?: string; base_denom?: string; } export interface V1QueryAllAccountPrivilegesResponse { accounts?: string[]; privileges?: string[]; /** * PageResponse is to be embedded in gRPC response messages where the * corresponding request message has used PageRequest. * * message SomeResponse { * repeated Bar results = 1; * PageResponse page = 2; * } */ pagination?: V1Beta1PageResponse; } export interface V1QueryAllRequiredPrivilegesResponse { indexes?: string[]; privileges?: string[]; kind?: string; /** * PageResponse is to be embedded in gRPC response messages where the * corresponding request message has used PageRequest. * * message SomeResponse { * repeated Bar results = 1; * PageResponse page = 2; * } */ pagination?: V1Beta1PageResponse; } export interface V1QueryGetAccountPrivilegesResponse { account?: string; /** @format byte */ privileges?: string; } export interface V1QueryGetGuardTransferCoinsResponse { guard_transfer_coins?: boolean; } export interface V1QueryGetRequiredPrivilegesResponse { /** @format byte */ index?: string; /** @format byte */ privileges?: string; kind?: string; } /** * QueryParamsResponse is response type for the Query/Params RPC method. */ export interface V1QueryParamsResponse { /** params holds all the parameters of this module. */ params?: V1Params; } /** * message SomeRequest { Foo some_parameter = 1; PageRequest pagination = 2; } */ export interface V1Beta1PageRequest { /** * key is a value returned in PageResponse.next_key to begin * querying the next page most efficiently. Only one of offset or key * should be set. * @format byte */ key?: string; /** * offset is a numeric offset that can be used when key is unavailable. * It is less efficient than using key. Only one of offset or key should * be set. * @format uint64 */ offset?: string; /** * limit is the total number of results to be returned in the result page. * If left empty it will default to a value to be set by each app. * @format uint64 */ limit?: string; /** * count_total is set to true to indicate that the result set should include * a count of the total number of items available for pagination in UIs. * count_total is only respected when offset is used. It is ignored when key * is set. */ count_total?: boolean; /** * reverse is set to true if results are to be returned in the descending order. * * Since: cosmos-sdk 0.43 */ reverse?: boolean; } /** * PageResponse is to be embedded in gRPC response messages where the corresponding request message has used PageRequest. message SomeResponse { repeated Bar results = 1; PageResponse page = 2; } */ export interface V1Beta1PageResponse { /** * next_key is the key to be passed to PageRequest.key to * query the next page most efficiently. It will be empty if * there are no more results. * @format byte */ next_key?: string; /** * total is total number of results available if PageRequest.count_total * was set, its value is undefined otherwise * @format uint64 */ total?: string; } import { AxiosInstance, AxiosRequestConfig, AxiosResponse, ResponseType } from "axios"; export declare type QueryParamsType = Record; export interface FullRequestParams extends Omit { /** set parameter to `true` for call `securityWorker` for this request */ secure?: boolean; /** request path */ path: string; /** content type of request body */ type?: ContentType; /** query params */ query?: QueryParamsType; /** format of response (i.e. response.json() -> format: "json") */ format?: ResponseType; /** request body */ body?: unknown; } export declare type RequestParams = Omit; export interface ApiConfig extends Omit { securityWorker?: (securityData: SecurityDataType | null) => Promise | AxiosRequestConfig | void; secure?: boolean; format?: ResponseType; } export declare enum ContentType { Json = "application/json", FormData = "multipart/form-data", UrlEncoded = "application/x-www-form-urlencoded" } export declare class HttpClient { instance: AxiosInstance; private securityData; private securityWorker?; private secure?; private format?; constructor({ securityWorker, secure, format, ...axiosConfig }?: ApiConfig); setSecurityData: (data: SecurityDataType | null) => void; private mergeRequestParams; private createFormData; request: ({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise>; } /** * @title mantrachain/guard/v1/common.proto * @version version not set */ export declare class Api extends HttpClient { /** * No description * * @tags Query * @name QueryAccountPrivilegesAll * @summary Queries a list of AccountPrivileges items. * @request GET:/mantrachain/guard/v1/account_privileges */ queryAccountPrivilegesAll: (query?: { "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.count_total"?: boolean; "pagination.reverse"?: boolean; }, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryAccountPrivileges * @summary Queries a AccountPrivileges by index. * @request GET:/mantrachain/guard/v1/account_privileges/{account} */ queryAccountPrivileges: (account: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryGuardTransferCoins * @summary Queries a GuardTransferCoins by index. * @request GET:/mantrachain/guard/v1/guard_transfer_coins */ queryGuardTransferCoins: (params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryParams * @summary Parameters queries the parameters of the module. * @request GET:/mantrachain/guard/v1/params */ queryParams: (params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryRequiredPrivilegesAll * @request GET:/mantrachain/guard/v1/required_privileges */ queryRequiredPrivilegesAll: (query?: { "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.count_total"?: boolean; "pagination.reverse"?: boolean; kind?: string; }, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryRequiredPrivileges * @summary Queries a list of RequiredPrivileges items. * @request GET:/mantrachain/guard/v1/required_privileges/{index} */ queryRequiredPrivileges: (index: string, query?: { kind?: string; }, params?: RequestParams) => Promise>; }