/** * 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 { TypesCosmosCoin } from './TypesCosmosCoin'; /** * * @export * @interface StdTxMsgLPAddValue */ export interface StdTxMsgLPAddValue { /** * * @type {string} * @memberof StdTxMsgLPAddValue */ pool_id: string; /** * * @type {string} * @memberof StdTxMsgLPAddValue */ sender: string; /** * * @type {string} * @memberof StdTxMsgLPAddValue */ share_out_amount: string; /** * * @type {Array} * @memberof StdTxMsgLPAddValue */ token_in_maxs: Array; } /** * Check if a given object implements the StdTxMsgLPAddValue interface. */ export declare function instanceOfStdTxMsgLPAddValue(value: object): boolean; export declare function StdTxMsgLPAddValueFromJSON(json: any): StdTxMsgLPAddValue; export declare function StdTxMsgLPAddValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): StdTxMsgLPAddValue; export declare function StdTxMsgLPAddValueToJSON(value?: StdTxMsgLPAddValue | null): any;