/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { StdTxMsgSwapValue } from './StdTxMsgSwapValue'; /** * * @export * @interface StdTxMsgSwap */ export interface StdTxMsgSwap { /** * * @type {StdTxMsgSwapValue} * @memberof StdTxMsgSwap */ value: StdTxMsgSwapValue; /** * * @type {string} * @memberof StdTxMsgSwap */ type: StdTxMsgSwapTypeEnum; } /** * @export */ export declare const StdTxMsgSwapTypeEnum: { readonly osmosis_gamm_swap_exact_amount_in: "osmosis/gamm/swap-exact-amount-in"; }; export type StdTxMsgSwapTypeEnum = typeof StdTxMsgSwapTypeEnum[keyof typeof StdTxMsgSwapTypeEnum]; /** * Check if a given object implements the StdTxMsgSwap interface. */ export declare function instanceOfStdTxMsgSwap(value: object): boolean; export declare function StdTxMsgSwapFromJSON(json: any): StdTxMsgSwap; export declare function StdTxMsgSwapFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxMsgSwap; export declare function StdTxMsgSwapToJSON(value?: StdTxMsgSwap | null): any;