/** * Params defines the set of IBC transfer parameters. NOTE: To prevent a single token from being transferred, set the TransfersEnabled parameter to true and then set the bank module's SendEnabled parameter for the denomination to false. */ export interface Applicationstransferv1Params { /** * send_enabled enables or disables all cross-chain token transfers from this * chain. */ send_enabled?: boolean; /** * receive_enabled enables or disables all cross-chain token transfers to this * chain. */ receive_enabled?: boolean; } /** * `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[]; } /** * DenomTrace contains the base denomination for ICS20 fungible tokens and the source tracing information path. */ export interface Transferv1DenomTrace { /** * path defines the chain of port/channel identifiers used for tracing the * source of the fungible token. */ path?: string; /** base denomination of the relayed fungible token. */ base_denom?: string; } /** * Normally the RevisionHeight is incremented at each height while keeping RevisionNumber the same. However some consensus algorithms may choose to reset the height in certain conditions e.g. hard forks, state-machine breaking changes In these cases, the RevisionNumber is incremented so that height continues to be monitonically increasing even as the RevisionHeight gets reset */ export interface V1Height { /** @format uint64 */ revision_number?: string; /** @format uint64 */ revision_height?: string; } /** * MsgTransferResponse defines the Msg/Transfer response type. */ export type V1MsgTransferResponse = object; /** * QueryDenomHashResponse is the response type for the Query/DenomHash RPC method. */ export interface V1QueryDenomHashResponse { /** hash (in hex format) of the denomination trace information. */ hash?: string; } /** * QueryDenomTraceResponse is the response type for the Query/DenomTrace RPC method. */ export interface V1QueryDenomTraceResponse { /** denom_trace returns the requested denomination trace information. */ denom_trace?: Transferv1DenomTrace; } /** * QueryConnectionsResponse is the response type for the Query/DenomTraces RPC method. */ export interface V1QueryDenomTracesResponse { /** denom_traces returns all denominations trace information. */ denom_traces?: Transferv1DenomTrace[]; /** pagination defines the pagination in the response. */ pagination?: V1Beta1PageResponse; } /** * QueryEscrowAddressResponse is the response type of the EscrowAddress RPC method. */ export interface V1QueryEscrowAddressResponse { escrow_address?: string; } /** * QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface V1QueryParamsResponse { /** params defines the parameters of the module. */ params?: Applicationstransferv1Params; } /** * 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; } /** * 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; } /** * 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 */ next_key?: string; /** @format uint64 */ total?: string; } export type QueryParamsType = Record; export 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 type RequestParams = Omit; export interface ApiConfig { baseUrl?: string; baseApiParams?: Omit; securityWorker?: (securityData: SecurityDataType) => RequestParams | void; } export interface HttpResponse extends Response { data: D; error: E; } 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 ibc/applications/transfer/v1/genesis.proto * @version version not set */ export declare class Api extends HttpClient { /** * No description * * @tags Query * @name QueryEscrowAddress * @summary EscrowAddress returns the escrow address for a particular port and channel id. * @request GET:/ibc/apps/transfer/v1/channels/{channel_id}/ports/{port_id}/escrow_address */ queryEscrowAddress: (channel_id: string, port_id: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryDenomHash * @summary DenomHash queries a denomination hash information. * @request GET:/ibc/apps/transfer/v1/denom_hashes/{trace} */ queryDenomHash: (trace: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryDenomTraces * @summary DenomTraces queries all denomination traces. * @request GET:/ibc/apps/transfer/v1/denom_traces */ queryDenomTraces: (query?: { "pagination.key"?: string; "pagination.offset"?: string; "pagination.limit"?: string; "pagination.count_total"?: boolean; }, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryDenomTrace * @summary DenomTrace queries a denomination trace information. * @request GET:/ibc/apps/transfer/v1/denom_traces/{hash} */ queryDenomTrace: (hash: string, params?: RequestParams) => Promise>; /** * No description * * @tags Query * @name QueryParams * @summary Params queries all parameters of the ibc-transfer module. * @request GET:/ibc/apps/transfer/v1/params */ queryParams: (params?: RequestParams) => Promise>; } export {};