/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Chain } from "./chain"; /** * * @export * @interface TokenAmount */ export interface TokenAmount { /** * Magnitude of the amount, in units of the currency, with a `.`. * @type {string} * @memberof TokenAmount */ amount: string; /** * * @type {Chain} * @memberof TokenAmount */ chain: Chain; }