/** * `Any` contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a message in C++. Foo foo = ...; Any any; any.PackFrom(foo); ... if (any.UnpackTo(&foo)) { ... } Example 2: Pack and unpack a message in Java. Foo foo = ...; Any any = Any.pack(foo); ... if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } Example 3: Pack and unpack a message in Python. foo = Foo(...) any = Any() any.Pack(foo) ... if any.Is(Foo.DESCRIPTOR): any.Unpack(foo) ... Example 4: Pack and unpack a message in Go foo := &pb.Foo{...} any, err := anypb.New(foo) if err != nil { ... } ... foo := &pb.Foo{} if err := any.UnmarshalTo(foo); err != nil { ... } The pack methods provided by protobuf library will by default use 'type.googleapis.com/full.type.name' as the type URL and the unpack methods only use the fully qualified type name after the last '/' in the type URL, for example "foo.bar.com/x/y.z" will yield type name "y.z". JSON ==== The JSON representation of an `Any` value uses the regular representation of the deserialized, embedded message, with an additional field `@type` which contains the type URL. Example: package google.profile; message Person { string first_name = 1; string last_name = 2; } { "@type": "type.googleapis.com/google.profile.Person", "firstName": , "lastName": } If the embedded message type is well-known and has a custom JSON representation, that representation will be embedded adding a field `value` which holds the custom JSON in addition to the `@type` field. Example (for message [google.protobuf.Duration][]): { "@type": "type.googleapis.com/google.protobuf.Duration", "value": "1.212s" } */ export interface ProtobufAny { /** * A URL/resource name that uniquely identifies the type of the serialized * protocol buffer message. This string must contain at least * one "/" character. The last segment of the URL's path must represent * the fully qualified name of the type (as in * `path/google.protobuf.Duration`). The name should be in a canonical form * (e.g., leading "." is not accepted). * * In practice, teams usually precompile into the binary all types that they * expect it to use in the context of Any. However, for URLs which use the * scheme `http`, `https`, or no scheme, one can optionally set up a type * server that maps type URLs to message definitions as follows: * * * If no scheme is provided, `https` is assumed. * * An HTTP GET on the URL must yield a [google.protobuf.Type][] * value in binary format, or produce an error. * * Applications are allowed to cache lookup results based on the * URL, or have them precompiled into a binary to avoid any * lookup. Therefore, binary compatibility needs to be preserved * on changes to types. (Use versioned type names to manage * breaking changes.) * * Note: this functionality is not currently available in the official * protobuf release, and it is not used for type URLs beginning with * type.googleapis.com. * * Schemes other than `http`, `https` (or the empty scheme) might be * used with implementation specific semantics. */ "@type"?: string; } export interface RpcStatus { /** @format int32 */ code?: number; message?: string; details?: ProtobufAny[]; } /** * Coin defines a token with a denomination and an amount. NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. */ export interface V1Beta1Coin { denom?: string; amount?: string; } /** * DecCoin defines a token with a denomination and a decimal amount. NOTE: The amount field is an Dec which implements the custom method signatures required by gogoproto. */ export interface V1Beta1DecCoin { denom?: string; amount?: string; } /** * MsgAdvanceEpochResponse defines the Msg/AdvanceEpoch response type. */ export declare type V1Beta1MsgAdvanceEpochResponse = object; /** * MsgCreateFixedAmountPlanResponse defines the MsgCreateFixedAmountPlanResponse response type. */ export declare type V1Beta1MsgCreateFixedAmountPlanResponse = object; /** * MsgCreateRatioPlanResponse defines the Msg/MsgCreateRatioPlanResponse response type. */ export declare type V1Beta1MsgCreateRatioPlanResponse = object; /** * MsgHarvestResponse defines the Msg/MsgHarvestResponse response type. */ export declare type V1Beta1MsgHarvestResponse = object; /** * MsgRemovePlanResponse defines the Msg/RemovePlan response type. */ export declare type V1Beta1MsgRemovePlanResponse = object; /** * MsgStakeResponse defines the Msg/MsgStakeResponse response type. */ export declare type V1Beta1MsgStakeResponse = object; /** * MsgUnstakeResponse defines the Msg/MsgUnstakeResponse response type. */ export declare type V1Beta1MsgUnstakeResponse = object; /** * 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. */ countTotal?: boolean; /** * reverse is set to true if results are to be returned in the descending * order. */ 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 { /** @format byte */ nextKey?: string; /** @format uint64 */ total?: string; } /** * Params defines the set of params for the farming module. */ export interface V1Beta1Params { privatePlanCreationFee?: V1Beta1Coin[]; /** @format int64 */ nextEpochDays?: number; farmingFeeCollector?: string; /** @format uint64 */ delayedStakingGasFee?: string; /** @format int64 */ maxNumPrivatePlans?: number; } /** * QuerCurrentEpochDaysResponse is the response type for the Query/CurrentEpochDays RPC method. */ export interface V1Beta1QueryCurrentEpochDaysResponse { /** @format int64 */ currentEpochDays?: number; } /** * QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface V1Beta1QueryParamsResponse { /** Params defines the set of params for the farming module. */ params?: V1Beta1Params; } /** * QueryPlanResponse is the response type for the Query/Plan RPC method. */ export interface V1Beta1QueryPlanResponse { /** * `Any` contains an arbitrary serialized protocol buffer message along with a * URL that describes the type of the serialized message. * * Protobuf library provides support to pack/unpack Any values in the form * of utility functions or additional generated methods of the Any type. * * Example 1: Pack and unpack a message in C++. * * Foo foo = ...; * Any any; * any.PackFrom(foo); * ... * if (any.UnpackTo(&foo)) { * ... * } * * Example 2: Pack and unpack a message in Java. * * Foo foo = ...; * Any any = Any.pack(foo); * ... * if (any.is(Foo.class)) { * foo = any.unpack(Foo.class); * } * * Example 3: Pack and unpack a message in Python. * * foo = Foo(...) * any = Any() * any.Pack(foo) * ... * if any.Is(Foo.DESCRIPTOR): * any.Unpack(foo) * ... * * Example 4: Pack and unpack a message in Go * * foo := &pb.Foo{...} * any, err := anypb.New(foo) * if err != nil { * ... * } * ... * foo := &pb.Foo{} * if err := any.UnmarshalTo(foo); err != nil { * ... * } * * The pack methods provided by protobuf library will by default use * 'type.googleapis.com/full.type.name' as the type URL and the unpack * methods only use the fully qualified type name after the last '/' * in the type URL, for example "foo.bar.com/x/y.z" will yield type * name "y.z". * * * JSON * ==== * The JSON representation of an `Any` value uses the regular * representation of the deserialized, embedded message, with an * additional field `@type` which contains the type URL. Example: * * package google.profile; * message Person { * string first_name = 1; * string last_name = 2; * } * * { * "@type": "type.googleapis.com/google.profile.Person", * "firstName": , * "lastName": * } * * If the embedded message type is well-known and has a custom JSON * representation, that representation will be embedded adding a field * `value` which holds the custom JSON in addition to the `@type` * field. Example (for message [google.protobuf.Duration][]): * * { * "@type": "type.googleapis.com/google.protobuf.Duration", * "value": "1.212s" * } */ plan?: ProtobufAny; } /** * QueryPlansResponse is the response type for the Query/Plans RPC method. */ export interface V1Beta1QueryPlansResponse { plans?: ProtobufAny[]; /** pagination defines the pagination in the response. */ pagination?: V1Beta1PageResponse; } /** * QueryRewardsResponse is the response type for the Query/Rewards RPC method. */ export interface V1Beta1QueryRewardsResponse { rewards?: V1Beta1Coin[]; } /** * QueryStakingsResponse is the response type for the Query/Stakings RPC method. */ export interface V1Beta1QueryStakingsResponse { stakedCoins?: V1Beta1Coin[]; queuedCoins?: V1Beta1Coin[]; } /** * QueryTotalStakingsResponse is the response type for the Query/TotalStakings RPC method. */ export interface V1Beta1QueryTotalStakingsResponse { amount?: string; } export declare type QueryParamsType = Record; export declare type ResponseFormat = keyof Omit; 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?: keyof Omit; /** request body */ body?: unknown; /** base url */ baseUrl?: string; /** request cancellation token */ cancelToken?: CancelToken; } export declare type RequestParams = Omit; export interface ApiConfig { baseUrl?: string; baseApiParams?: Omit; securityWorker?: (securityData: SecurityDataType) => RequestParams | void; } export interface HttpResponse extends Response { data: D; error: E; } declare type CancelToken = Symbol | string | number; export declare enum ContentType { Json = "application/json", FormData = "multipart/form-data", UrlEncoded = "application/x-www-form-urlencoded" } export declare class HttpClient { baseUrl: string; private securityData; private securityWorker; private abortControllers; private baseApiParams; constructor(apiConfig?: ApiConfig); setSecurityData: (data: SecurityDataType) => void; private addQueryParam; protected toQueryString(rawQuery?: QueryParamsType): string; protected addQueryParams(rawQuery?: QueryParamsType): string; private contentFormatters; private mergeRequestParams; private createAbortSignal; abortRequest: (cancelToken: CancelToken) => void; request: ({ body, secure, path, type, query, format, baseUrl, cancelToken, ...params }: FullRequestParams) => Promise>; } /** * @title crescent/farming/v1beta1/farming.proto * @version version not set */ export declare class Api extends HttpClient { /** * @description Returns the current epoch days * * @tags Query * @name QueryCurrentEpochDays * @summary CurrentEpochDays returns current epoch days. * @request GET:/crescent/farming/v1beta1/current_epoch_days */ queryCurrentEpochDays: (params?: RequestParams) => Promise>; /** * @description Returns all parameters of the farming module. * * @tags Query * @name QueryParams * @summary Params returns parameters of the farming module. * @request GET:/crescent/farming/v1beta1/params */ queryParams: (params?: RequestParams) => Promise>; /** * @description Returns a list of all farming plans with pagination result. * * @tags Query * @name QueryPlans * @summary Plans returns all plans. * @request GET:/crescent/farming/v1beta1/plans */ queryPlans: (query?: { type?: string; farmingPoolAddress?: string; terminationAddress?: string; stakingCoinDenom?: string; terminated?: string; "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.countTotal"?: boolean; "pagination.reverse"?: boolean; }, params?: RequestParams) => Promise>; /** * @description Returns the farming plan that corresponds to the plan_id. * * @tags Query * @name QueryPlan * @summary Plan returns a specific plan. * @request GET:/crescent/farming/v1beta1/plans/{planId} */ queryPlan: (planId: string, params?: RequestParams) => Promise>; /** * @description Returns all rewards coins that corresponds to the farmer * * @tags Query * @name QueryRewards * @summary Rewards returns rewards for a farmer * @request GET:/crescent/farming/v1beta1/rewards/{farmer} */ queryRewards: (farmer: string, query?: { stakingCoinDenom?: string; }, params?: RequestParams) => Promise>; /** * @description Returns all stakings (staked and queued coins) that corresponds to the farmer * * @tags Query * @name QueryStakings * @summary Stakings returns all stakings by a farmer. * @request GET:/crescent/farming/v1beta1/stakings/{farmer} */ queryStakings: (farmer: string, query?: { stakingCoinDenom?: string; }, params?: RequestParams) => Promise>; /** * @description Returns total stakings that corresponds to the staking_coin_denom * * @tags Query * @name QueryTotalStakings * @summary TotalStakings returns total staking amount for a staking coin denom * @request GET:/crescent/farming/v1beta1/total_stakings/{stakingCoinDenom} */ queryTotalStakings: (stakingCoinDenom: string, params?: RequestParams) => Promise>; } export {};