@xchainjs/xchain-thornode 0.3.7 → 0.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/generated/thornodeApi/base.ts","../src/generated/thornodeApi/common.ts","../src/generated/thornodeApi/api.ts","../src/generated/thornodeApi/configuration.ts","../src/config.ts"],"sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.121.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport { Configuration } from \"./configuration\";\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';\n\nexport const BASE_PATH = \"http://localhost\".replace(/\\/+$/, \"\");\n\n/**\n *\n * @export\n */\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n ssv: \" \",\n tsv: \"\\t\",\n pipes: \"|\",\n};\n\n/**\n *\n * @export\n * @interface RequestArgs\n */\nexport interface RequestArgs {\n url: string;\n options: AxiosRequestConfig;\n}\n\n/**\n *\n * @export\n * @class BaseAPI\n */\nexport class BaseAPI {\n protected configuration: Configuration | undefined;\n\n constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {\n if (configuration) {\n this.configuration = configuration;\n this.basePath = configuration.basePath || this.basePath;\n }\n }\n};\n\n/**\n *\n * @export\n * @class RequiredError\n * @extends {Error}\n */\nexport class RequiredError extends Error {\n name: \"RequiredError\" = \"RequiredError\";\n constructor(public field: string, msg?: string) {\n super(msg);\n }\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.121.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport { Configuration } from \"./configuration\";\nimport { RequiredError, RequestArgs } from \"./base\";\nimport { AxiosInstance, AxiosResponse } from 'axios';\n\n/**\n *\n * @export\n */\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n * @export\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\n/**\n *\n * @export\n */\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter)) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n } \n else {\n Object.keys(parameter).forEach(currentKey => \n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n } \n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n } \n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\n/**\n *\n * @export\n */\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n *\n * @export\n */\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {})\n : (value || \"\");\n}\n\n/**\n *\n * @export\n */\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\n/**\n *\n * @export\n */\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...axiosArgs.options, url: (configuration?.basePath || basePath) + axiosArgs.url};\n return axios.request<T, R>(axiosRequestArgs);\n };\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.121.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport { Configuration } from './configuration';\nimport globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';\n\n/**\n * \n * @export\n * @interface BanResponse\n */\nexport interface BanResponse {\n /**\n * \n * @type {string}\n * @memberof BanResponse\n */\n 'node_address'?: string;\n /**\n * \n * @type {number}\n * @memberof BanResponse\n */\n 'block_height'?: number;\n /**\n * \n * @type {Array<string>}\n * @memberof BanResponse\n */\n 'signers'?: Array<string>;\n}\n/**\n * \n * @export\n * @interface BaseQuoteResponse\n */\nexport interface BaseQuoteResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'outbound_delay_blocks'?: number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'outbound_delay_seconds'?: number;\n /**\n * \n * @type {QuoteFees}\n * @memberof BaseQuoteResponse\n */\n 'fees'?: QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'slippage_bps'?: number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'expiry'?: number;\n /**\n * static warning message\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'warning'?: string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'notes'?: string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'recommended_min_amount_in'?: string;\n}\n/**\n * \n * @export\n * @interface Borrower\n */\nexport interface Borrower {\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'owner': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'debt_issued': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'debt_repaid': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'debt_current': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'collateral_deposited': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'collateral_withdrawn': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'collateral_current': string;\n /**\n * \n * @type {number}\n * @memberof Borrower\n */\n 'last_open_height': number;\n /**\n * \n * @type {number}\n * @memberof Borrower\n */\n 'last_repay_height': number;\n}\n/**\n * \n * @export\n * @interface BorrowersResponse\n */\nexport interface BorrowersResponse extends Array<Borrower> {\n}\n/**\n * \n * @export\n * @interface ChainHeight\n */\nexport interface ChainHeight {\n /**\n * \n * @type {string}\n * @memberof ChainHeight\n */\n 'chain': string;\n /**\n * \n * @type {number}\n * @memberof ChainHeight\n */\n 'height': number;\n}\n/**\n * \n * @export\n * @interface Coin\n */\nexport interface Coin {\n /**\n * \n * @type {string}\n * @memberof Coin\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Coin\n */\n 'amount': string;\n /**\n * \n * @type {number}\n * @memberof Coin\n */\n 'decimals'?: number;\n}\n/**\n * \n * @export\n * @interface ConstantsResponse\n */\nexport interface ConstantsResponse {\n /**\n * \n * @type {{ [key: string]: string; }}\n * @memberof ConstantsResponse\n */\n 'int_64_values'?: { [key: string]: string; };\n /**\n * \n * @type {{ [key: string]: string; }}\n * @memberof ConstantsResponse\n */\n 'bool_values'?: { [key: string]: string; };\n /**\n * \n * @type {{ [key: string]: string; }}\n * @memberof ConstantsResponse\n */\n 'string_values'?: { [key: string]: string; };\n}\n/**\n * \n * @export\n * @interface DerivedPool\n */\nexport interface DerivedPool {\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'status': string;\n /**\n * \n * @type {number}\n * @memberof DerivedPool\n */\n 'decimals'?: number;\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'balance_asset': string;\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'balance_rune': string;\n /**\n * the depth of the derived virtual pool relative to L1 pool (in basis points)\n * @type {string}\n * @memberof DerivedPool\n */\n 'derived_depth_bps': string;\n}\n/**\n * \n * @export\n * @interface DerivedPoolsResponse\n */\nexport interface DerivedPoolsResponse extends Array<DerivedPool> {\n}\n/**\n * \n * @export\n * @interface InboundAddress\n */\nexport interface InboundAddress {\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'pub_key'?: string;\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'address'?: string;\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'router'?: string;\n /**\n * Returns true if trading is unavailable for this chain, either because trading is halted globally or specifically for this chain\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'halted': boolean;\n /**\n * Returns true if trading is paused globally\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'global_trading_paused'?: boolean;\n /**\n * Returns true if trading is paused for this chain\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'chain_trading_paused'?: boolean;\n /**\n * Returns true if LP actions are paused for this chain\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'chain_lp_actions_paused'?: boolean;\n /**\n * The minimum fee rate used by vaults to send outbound TXs. The actual fee rate may be higher. For EVM chains this is returned in gwei (1e9).\n * @type {string}\n * @memberof InboundAddress\n */\n 'gas_rate'?: string;\n /**\n * Units of the gas_rate.\n * @type {string}\n * @memberof InboundAddress\n */\n 'gas_rate_units'?: string;\n /**\n * Avg size of outbound TXs on each chain. For UTXO chains it may be larger than average, as it takes into account vault consolidation txs, which can have many vouts\n * @type {string}\n * @memberof InboundAddress\n */\n 'outbound_tx_size'?: string;\n /**\n * The total outbound fee charged to the user for outbound txs in the gas asset of the chain.\n * @type {string}\n * @memberof InboundAddress\n */\n 'outbound_fee'?: string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transactions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof InboundAddress\n */\n 'dust_threshold'?: string;\n}\n/**\n * \n * @export\n * @interface InboundAddressesResponse\n */\nexport interface InboundAddressesResponse extends Array<InboundAddress> {\n}\n/**\n * \n * @export\n * @interface InvariantResponse\n */\nexport interface InvariantResponse {\n /**\n * The name of the invariant.\n * @type {string}\n * @memberof InvariantResponse\n */\n 'invariant': string;\n /**\n * Returns true if the invariant is broken.\n * @type {boolean}\n * @memberof InvariantResponse\n */\n 'broken': boolean;\n /**\n * Informative message about the invariant result.\n * @type {Array<string>}\n * @memberof InvariantResponse\n */\n 'msg': Array<string>;\n}\n/**\n * \n * @export\n * @interface InvariantsResponse\n */\nexport interface InvariantsResponse {\n /**\n * \n * @type {Array<string>}\n * @memberof InvariantsResponse\n */\n 'invariants'?: Array<string>;\n}\n/**\n * \n * @export\n * @interface KeygenMetric\n */\nexport interface KeygenMetric {\n /**\n * \n * @type {string}\n * @memberof KeygenMetric\n */\n 'pub_key'?: string;\n /**\n * \n * @type {Array<NodeKeygenMetric>}\n * @memberof KeygenMetric\n */\n 'node_tss_times': Array<NodeKeygenMetric>;\n}\n/**\n * \n * @export\n * @interface KeygenMetricsResponse\n */\nexport interface KeygenMetricsResponse extends Array<KeygenMetric> {\n}\n/**\n * \n * @export\n * @interface KeysignInfo\n */\nexport interface KeysignInfo {\n /**\n * the block(s) in which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue\n * @type {number}\n * @memberof KeysignInfo\n */\n 'height'?: number;\n /**\n * \n * @type {Array<TxOutItem>}\n * @memberof KeysignInfo\n */\n 'tx_array': Array<TxOutItem>;\n}\n/**\n * \n * @export\n * @interface KeysignMetrics\n */\nexport interface KeysignMetrics {\n /**\n * \n * @type {string}\n * @memberof KeysignMetrics\n */\n 'tx_id'?: string;\n /**\n * \n * @type {Array<TssMetric>}\n * @memberof KeysignMetrics\n */\n 'node_tss_times'?: Array<TssMetric>;\n}\n/**\n * \n * @export\n * @interface KeysignResponse\n */\nexport interface KeysignResponse {\n /**\n * \n * @type {KeysignInfo}\n * @memberof KeysignResponse\n */\n 'keysign'?: KeysignInfo;\n /**\n * \n * @type {string}\n * @memberof KeysignResponse\n */\n 'signature'?: string;\n}\n/**\n * \n * @export\n * @interface LastBlock\n */\nexport interface LastBlock {\n /**\n * \n * @type {string}\n * @memberof LastBlock\n */\n 'chain': string;\n /**\n * \n * @type {number}\n * @memberof LastBlock\n */\n 'last_observed_in': number;\n /**\n * \n * @type {number}\n * @memberof LastBlock\n */\n 'last_signed_out': number;\n /**\n * \n * @type {number}\n * @memberof LastBlock\n */\n 'thorchain': number;\n}\n/**\n * \n * @export\n * @interface LastBlockResponse\n */\nexport interface LastBlockResponse extends Array<LastBlock> {\n}\n/**\n * \n * @export\n * @interface LiquidityProvider\n */\nexport interface LiquidityProvider {\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'rune_address'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset_address'?: string;\n /**\n * \n * @type {number}\n * @memberof LiquidityProvider\n */\n 'last_add_height'?: number;\n /**\n * \n * @type {number}\n * @memberof LiquidityProvider\n */\n 'last_withdraw_height'?: number;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'units': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'pending_rune': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'pending_asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'pending_tx_id'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'rune_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'rune_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'luvi_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'luvi_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'luvi_growth_pct': string;\n}\n/**\n * \n * @export\n * @interface LiquidityProviderSummary\n */\nexport interface LiquidityProviderSummary {\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'rune_address'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'asset_address'?: string;\n /**\n * \n * @type {number}\n * @memberof LiquidityProviderSummary\n */\n 'last_add_height'?: number;\n /**\n * \n * @type {number}\n * @memberof LiquidityProviderSummary\n */\n 'last_withdraw_height'?: number;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'units': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'pending_rune': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'pending_asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'pending_tx_id'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'rune_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'asset_deposit_value': string;\n}\n/**\n * \n * @export\n * @interface LiquidityProvidersResponse\n */\nexport interface LiquidityProvidersResponse extends Array<LiquidityProviderSummary> {\n}\n/**\n * \n * @export\n * @interface MetricsResponse\n */\nexport interface MetricsResponse {\n /**\n * \n * @type {KeygenMetricsResponse}\n * @memberof MetricsResponse\n */\n 'keygen'?: KeygenMetricsResponse;\n /**\n * \n * @type {KeysignMetrics}\n * @memberof MetricsResponse\n */\n 'keysign'?: KeysignMetrics;\n}\n/**\n * \n * @export\n * @interface MimirNodesResponse\n */\nexport interface MimirNodesResponse {\n /**\n * \n * @type {Array<MimirVote>}\n * @memberof MimirNodesResponse\n */\n 'mimirs'?: Array<MimirVote>;\n}\n/**\n * \n * @export\n * @interface MimirResponse\n */\nexport interface MimirResponse {\n [key: string]: string;\n\n}\n/**\n * \n * @export\n * @interface MimirVote\n */\nexport interface MimirVote {\n /**\n * \n * @type {string}\n * @memberof MimirVote\n */\n 'key'?: string;\n /**\n * \n * @type {number}\n * @memberof MimirVote\n */\n 'value'?: number;\n /**\n * \n * @type {string}\n * @memberof MimirVote\n */\n 'signer'?: string;\n}\n/**\n * \n * @export\n * @interface MsgSwap\n */\nexport interface MsgSwap {\n /**\n * \n * @type {Tx}\n * @memberof MsgSwap\n */\n 'tx': Tx;\n /**\n * the asset to be swapped to\n * @type {string}\n * @memberof MsgSwap\n */\n 'target_asset': string;\n /**\n * the destination address to receive the swap output\n * @type {string}\n * @memberof MsgSwap\n */\n 'destination'?: string;\n /**\n * the minimum amount of output asset to receive (else cancelling and refunding the swap)\n * @type {string}\n * @memberof MsgSwap\n */\n 'trade_target': string;\n /**\n * the affiliate address which will receive any affiliate fee\n * @type {string}\n * @memberof MsgSwap\n */\n 'affiliate_address'?: string;\n /**\n * the affiliate fee in basis points\n * @type {string}\n * @memberof MsgSwap\n */\n 'affiliate_basis_points': string;\n /**\n * the signer (sender) of the transaction\n * @type {string}\n * @memberof MsgSwap\n */\n 'signer'?: string;\n /**\n * the contract address if an aggregator is specified for a non-THORChain SwapOut\n * @type {string}\n * @memberof MsgSwap\n */\n 'aggregator'?: string;\n /**\n * the desired output asset of the aggregator SwapOut\n * @type {string}\n * @memberof MsgSwap\n */\n 'aggregator_target_address'?: string;\n /**\n * the minimum amount of SwapOut asset to receive (else cancelling the SwapOut and receiving THORChain\\'s output)\n * @type {string}\n * @memberof MsgSwap\n */\n 'aggregator_target_limit'?: string;\n /**\n * 0 if a market order (immediately completed or refunded), 1 if a limit order (held until fulfillable)\n * @type {number}\n * @memberof MsgSwap\n */\n 'order_type'?: number;\n /**\n * number of swaps to execute in a streaming swap\n * @type {number}\n * @memberof MsgSwap\n */\n 'stream_quantity'?: number;\n /**\n * the interval (in blocks) to execute the streaming swap\n * @type {number}\n * @memberof MsgSwap\n */\n 'stream_interval'?: number;\n}\n/**\n * \n * @export\n * @interface NetworkResponse\n */\nexport interface NetworkResponse {\n /**\n * total amount of RUNE awarded to node operators\n * @type {string}\n * @memberof NetworkResponse\n */\n 'bond_reward_rune': string;\n /**\n * total of burned BEP2 RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'burned_bep_2_rune': string;\n /**\n * total of burned ERC20 RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'burned_erc_20_rune': string;\n /**\n * total bonded RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'total_bond_units': string;\n /**\n * effective security bond used to determine maximum pooled RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'effective_security_bond': string;\n /**\n * total reserve RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'total_reserve': string;\n /**\n * Returns true if there exist RetiringVaults which have not finished migrating funds to new ActiveVaults\n * @type {boolean}\n * @memberof NetworkResponse\n */\n 'vaults_migrating': boolean;\n /**\n * Sum of the gas the network has spent to send outbounds\n * @type {string}\n * @memberof NetworkResponse\n */\n 'gas_spent_rune': string;\n /**\n * Sum of the gas withheld from users to cover outbound gas\n * @type {string}\n * @memberof NetworkResponse\n */\n 'gas_withheld_rune': string;\n /**\n * Current outbound fee multiplier, in basis points\n * @type {string}\n * @memberof NetworkResponse\n */\n 'outbound_fee_multiplier'?: string;\n /**\n * the outbound transaction fee in rune, converted from the NativeOutboundFeeUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'native_outbound_fee_rune': string;\n /**\n * the native transaction fee in rune, converted from the NativeTransactionFeeUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'native_tx_fee_rune': string;\n /**\n * the thorname register fee in rune, converted from the TNSRegisterFeeUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'tns_register_fee_rune': string;\n /**\n * the thorname fee per block in rune, converted from the TNSFeePerBlockUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'tns_fee_per_block_rune': string;\n /**\n * the rune price in tor\n * @type {string}\n * @memberof NetworkResponse\n */\n 'rune_price_in_tor': string;\n /**\n * the tor price in rune\n * @type {string}\n * @memberof NetworkResponse\n */\n 'tor_price_in_rune': string;\n}\n/**\n * \n * @export\n * @interface Node\n */\nexport interface Node {\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'node_address': string;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'status': NodeStatusEnum;\n /**\n * \n * @type {NodePubKeySet}\n * @memberof Node\n */\n 'pub_key_set': NodePubKeySet;\n /**\n * the consensus pub key for the node\n * @type {string}\n * @memberof Node\n */\n 'validator_cons_pub_key': string;\n /**\n * the P2PID (:6040/p2pid endpoint) of the node\n * @type {string}\n * @memberof Node\n */\n 'peer_id': string;\n /**\n * the block height at which the node became active\n * @type {number}\n * @memberof Node\n */\n 'active_block_height': number;\n /**\n * the block height of the current provided information for the node\n * @type {number}\n * @memberof Node\n */\n 'status_since': number;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'node_operator_address': string;\n /**\n * current node bond\n * @type {string}\n * @memberof Node\n */\n 'total_bond': string;\n /**\n * \n * @type {NodeBondProviders}\n * @memberof Node\n */\n 'bond_providers': NodeBondProviders;\n /**\n * the set of vault public keys of which the node is a member\n * @type {Array<string>}\n * @memberof Node\n */\n 'signer_membership': Array<string>;\n /**\n * \n * @type {boolean}\n * @memberof Node\n */\n 'requested_to_leave': boolean;\n /**\n * indicates whether the node has been forced to leave by the network, typically via ban\n * @type {boolean}\n * @memberof Node\n */\n 'forced_to_leave': boolean;\n /**\n * \n * @type {number}\n * @memberof Node\n */\n 'leave_height': number;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'ip_address': string;\n /**\n * the currently set version of the node\n * @type {string}\n * @memberof Node\n */\n 'version': string;\n /**\n * the accumlated slash points, reset at churn but excessive slash points may carry over\n * @type {number}\n * @memberof Node\n */\n 'slash_points': number;\n /**\n * \n * @type {NodeJail}\n * @memberof Node\n */\n 'jail': NodeJail;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'current_award': string;\n /**\n * the last observed heights for all chain by the node\n * @type {Array<ChainHeight>}\n * @memberof Node\n */\n 'observe_chains': Array<ChainHeight>;\n /**\n * \n * @type {NodePreflightStatus}\n * @memberof Node\n */\n 'preflight_status': NodePreflightStatus;\n}\n\nexport const NodeStatusEnum = {\n Active: 'Active',\n Whitelisted: 'Whitelisted',\n Standby: 'Standby',\n Disabled: 'Disabled'\n} as const;\n\nexport type NodeStatusEnum = typeof NodeStatusEnum[keyof typeof NodeStatusEnum];\n\n/**\n * \n * @export\n * @interface NodeBondProvider\n */\nexport interface NodeBondProvider {\n /**\n * \n * @type {string}\n * @memberof NodeBondProvider\n */\n 'bond_address'?: string;\n /**\n * \n * @type {string}\n * @memberof NodeBondProvider\n */\n 'bond'?: string;\n}\n/**\n * \n * @export\n * @interface NodeBondProviders\n */\nexport interface NodeBondProviders {\n /**\n * node operator fee in basis points\n * @type {string}\n * @memberof NodeBondProviders\n */\n 'node_operator_fee'?: string;\n /**\n * \n * @type {NodeBondProvider}\n * @memberof NodeBondProviders\n */\n 'providers'?: NodeBondProvider;\n}\n/**\n * \n * @export\n * @interface NodeJail\n */\nexport interface NodeJail {\n /**\n * \n * @type {number}\n * @memberof NodeJail\n */\n 'release_height'?: number;\n /**\n * \n * @type {string}\n * @memberof NodeJail\n */\n 'reason'?: string;\n}\n/**\n * \n * @export\n * @interface NodeKeygenMetric\n */\nexport interface NodeKeygenMetric {\n /**\n * \n * @type {string}\n * @memberof NodeKeygenMetric\n */\n 'address'?: string;\n /**\n * \n * @type {string}\n * @memberof NodeKeygenMetric\n */\n 'tss_time'?: string;\n}\n/**\n * \n * @export\n * @interface NodePreflightStatus\n */\nexport interface NodePreflightStatus {\n /**\n * the next status of the node\n * @type {string}\n * @memberof NodePreflightStatus\n */\n 'status': string;\n /**\n * the reason for the transition to the next status\n * @type {string}\n * @memberof NodePreflightStatus\n */\n 'reason': string;\n /**\n * \n * @type {number}\n * @memberof NodePreflightStatus\n */\n 'code': number;\n}\n/**\n * \n * @export\n * @interface NodePubKeySet\n */\nexport interface NodePubKeySet {\n /**\n * \n * @type {string}\n * @memberof NodePubKeySet\n */\n 'secp256k1'?: string;\n /**\n * \n * @type {string}\n * @memberof NodePubKeySet\n */\n 'ed25519'?: string;\n}\n/**\n * \n * @export\n * @interface NodesResponse\n */\nexport interface NodesResponse extends Array<Node> {\n}\n/**\n * \n * @export\n * @interface ObservedTx\n */\nexport interface ObservedTx {\n /**\n * \n * @type {Tx}\n * @memberof ObservedTx\n */\n 'tx': Tx;\n /**\n * \n * @type {string}\n * @memberof ObservedTx\n */\n 'status'?: ObservedTxStatusEnum;\n /**\n * \n * @type {Array<string>}\n * @memberof ObservedTx\n */\n 'out_hashes'?: Array<string>;\n /**\n * same as external_observed_height, to be deprecated in favour of external_observed_height\n * @type {number}\n * @memberof ObservedTx\n */\n 'block_height'?: number;\n /**\n * the block height on the external source chain when the transaction was observed, not provided if chain is THOR\n * @type {number}\n * @memberof ObservedTx\n */\n 'external_observed_height'?: number;\n /**\n * \n * @type {Array<string>}\n * @memberof ObservedTx\n */\n 'signers'?: Array<string>;\n /**\n * \n * @type {string}\n * @memberof ObservedTx\n */\n 'observed_pub_key'?: string;\n /**\n * \n * @type {number}\n * @memberof ObservedTx\n */\n 'keysign_ms'?: number;\n /**\n * same as external_confirmation_delay_height, to be deprecated in favour of external_confirmation_delay_height\n * @type {number}\n * @memberof ObservedTx\n */\n 'finalise_height'?: number;\n /**\n * the block height on the external source chain when confirmation counting will be complete, not provided if chain is THOR\n * @type {number}\n * @memberof ObservedTx\n */\n 'external_confirmation_delay_height'?: number;\n /**\n * the outbound aggregator to use, will also match a suffix\n * @type {string}\n * @memberof ObservedTx\n */\n 'aggregator'?: string;\n /**\n * the aggregator target asset provided to transferOutAndCall\n * @type {string}\n * @memberof ObservedTx\n */\n 'aggregator_target'?: string;\n /**\n * the aggregator target asset limit provided to transferOutAndCall\n * @type {string}\n * @memberof ObservedTx\n */\n 'aggregator_target_limit'?: string;\n}\n\nexport const ObservedTxStatusEnum = {\n Done: 'done',\n Incomplete: 'incomplete'\n} as const;\n\nexport type ObservedTxStatusEnum = typeof ObservedTxStatusEnum[keyof typeof ObservedTxStatusEnum];\n\n/**\n * \n * @export\n * @interface OutboundResponse\n */\nexport interface OutboundResponse extends Array<TxOutItem> {\n}\n/**\n * \n * @export\n * @interface POLResponse\n */\nexport interface POLResponse {\n /**\n * total amount of RUNE deposited into the pools\n * @type {string}\n * @memberof POLResponse\n */\n 'rune_deposited': string;\n /**\n * total amount of RUNE withdrawn from the pools\n * @type {string}\n * @memberof POLResponse\n */\n 'rune_withdrawn': string;\n /**\n * total value of protocol\\'s LP position in RUNE value\n * @type {string}\n * @memberof POLResponse\n */\n 'value': string;\n /**\n * profit and loss of protocol owned liquidity\n * @type {string}\n * @memberof POLResponse\n */\n 'pnl': string;\n /**\n * current amount of rune deposited\n * @type {string}\n * @memberof POLResponse\n */\n 'current_deposit': string;\n}\n/**\n * \n * @export\n * @interface Ping\n */\nexport interface Ping {\n /**\n * \n * @type {string}\n * @memberof Ping\n */\n 'ping'?: string;\n}\n/**\n * \n * @export\n * @interface Pool\n */\nexport interface Pool {\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'short_code'?: string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'status': string;\n /**\n * \n * @type {number}\n * @memberof Pool\n */\n 'decimals'?: number;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'pending_inbound_asset': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'pending_inbound_rune': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'balance_asset': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'balance_rune': string;\n /**\n * the total pool units, this is the sum of LP and synth units\n * @type {string}\n * @memberof Pool\n */\n 'pool_units': string;\n /**\n * the total pool liquidity provider units\n * @type {string}\n * @memberof Pool\n */\n 'LP_units': string;\n /**\n * the total synth units in the pool\n * @type {string}\n * @memberof Pool\n */\n 'synth_units': string;\n /**\n * the total supply of synths for the asset\n * @type {string}\n * @memberof Pool\n */\n 'synth_supply': string;\n /**\n * the balance of L1 asset deposited into the Savers Vault\n * @type {string}\n * @memberof Pool\n */\n 'savers_depth': string;\n /**\n * the number of units owned by Savers\n * @type {string}\n * @memberof Pool\n */\n 'savers_units': string;\n /**\n * whether additional synths cannot be minted\n * @type {boolean}\n * @memberof Pool\n */\n 'synth_mint_paused': boolean;\n /**\n * the amount of synth supply remaining before the current max supply is reached\n * @type {string}\n * @memberof Pool\n */\n 'synth_supply_remaining': string;\n /**\n * the amount of collateral collects for loans\n * @type {string}\n * @memberof Pool\n */\n 'loan_collateral': string;\n /**\n * the current loan collateralization ratio\n * @type {string}\n * @memberof Pool\n */\n 'loan_cr': string;\n /**\n * the depth of the derived virtual pool relative to L1 pool (in basis points)\n * @type {string}\n * @memberof Pool\n */\n 'derived_depth_bps': string;\n}\n/**\n * \n * @export\n * @interface PoolsResponse\n */\nexport interface PoolsResponse extends Array<Pool> {\n}\n/**\n * \n * @export\n * @interface QueueResponse\n */\nexport interface QueueResponse {\n /**\n * \n * @type {number}\n * @memberof QueueResponse\n */\n 'swap': number;\n /**\n * number of signed outbound tx in the queue\n * @type {number}\n * @memberof QueueResponse\n */\n 'outbound': number;\n /**\n * \n * @type {number}\n * @memberof QueueResponse\n */\n 'internal': number;\n /**\n * scheduled outbound value in RUNE\n * @type {string}\n * @memberof QueueResponse\n */\n 'scheduled_outbound_value': string;\n}\n/**\n * \n * @export\n * @interface QuoteFees\n */\nexport interface QuoteFees {\n /**\n * the target asset used for all fees\n * @type {string}\n * @memberof QuoteFees\n */\n 'asset': string;\n /**\n * affiliate fee in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'affiliate'?: string;\n /**\n * outbound fee in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'outbound'?: string;\n /**\n * liquidity fees paid to pools in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'liquidity': string;\n /**\n * total fees in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'total': string;\n /**\n * the swap slippage in basis points\n * @type {number}\n * @memberof QuoteFees\n */\n 'slippage_bps': number;\n /**\n * total basis points in fees relative to amount out\n * @type {number}\n * @memberof QuoteFees\n */\n 'total_bps': number;\n}\n/**\n * \n * @export\n * @interface QuoteLoanCloseResponse\n */\nexport interface QuoteLoanCloseResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteLoanCloseResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'slippage_bps'?: number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the loan close\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'memo': string;\n /**\n * the amount of collateral asset the user can expect to receive after fees in 1e8 decimals\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'expected_amount_out': string;\n /**\n * the expected amount of collateral decrease on the loan\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'expected_collateral_withdrawn': string;\n /**\n * the expected amount of TOR debt decrease on the loan\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'expected_debt_repaid': string;\n}\n/**\n * \n * @export\n * @interface QuoteLoanOpenResponse\n */\nexport interface QuoteLoanOpenResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteLoanOpenResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'slippage_bps'?: number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the loan open\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'memo'?: string;\n /**\n * the amount of the target asset the user can expect to receive after fees in 1e8 decimals\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_amount_out': string;\n /**\n * the expected collateralization ratio in basis points\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_collateralization_ratio': string;\n /**\n * the expected amount of collateral increase on the loan\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_collateral_deposited': string;\n /**\n * the expected amount of TOR debt increase on the loan\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_debt_issued': string;\n}\n/**\n * \n * @export\n * @interface QuoteSaverDepositResponse\n */\nexport interface QuoteSaverDepositResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'inbound_address': string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'outbound_delay_blocks'?: number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'outbound_delay_seconds'?: number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteSaverDepositResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'slippage_bps': number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the deposit\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'memo': string;\n /**\n * same as expected_amount_deposit, to be deprecated in favour of expected_amount_deposit\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'expected_amount_out'?: string;\n /**\n * the amount of the target asset the user can expect to deposit after fees\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'expected_amount_deposit': string;\n}\n/**\n * \n * @export\n * @interface QuoteSaverWithdrawResponse\n */\nexport interface QuoteSaverWithdrawResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'inbound_address': string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'slippage_bps': number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the withdraw, the client can use this OR send the dust amount\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'memo': string;\n /**\n * the dust amount of the target asset the user should send to initialize the withdraw, the client can send this OR provide the memo\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'dust_amount': string;\n /**\n * the amount of the target asset the user can expect to withdraw after fees in 1e8 decimals\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'expected_amount_out': string;\n}\n/**\n * \n * @export\n * @interface QuoteSwapResponse\n */\nexport interface QuoteSwapResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteSwapResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'slippage_bps': number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'streaming_slippage_bps': number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the swap\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'memo'?: string;\n /**\n * the amount of the target asset the user can expect to receive after fees\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'expected_amount_out': string;\n /**\n * Deprecated - expected_amount_out is streaming amount if interval provided.\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'expected_amount_out_streaming': string;\n /**\n * the maxiumum amount of trades a streaming swap can do for a trade\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'max_streaming_quantity'?: number;\n /**\n * the number of blocks the streaming swap will execute over\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'streaming_swap_blocks'?: number;\n /**\n * approx the number of seconds the streaming swap will execute over\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'streaming_swap_seconds'?: number;\n /**\n * total number of seconds a swap is expected to take (inbound conf + streaming swap + outbound delay)\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'total_swap_seconds'?: number;\n}\n/**\n * \n * @export\n * @interface Saver\n */\nexport interface Saver {\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset_address': string;\n /**\n * \n * @type {number}\n * @memberof Saver\n */\n 'last_add_height'?: number;\n /**\n * \n * @type {number}\n * @memberof Saver\n */\n 'last_withdraw_height'?: number;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'units': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'growth_pct': string;\n}\n/**\n * \n * @export\n * @interface SaversResponse\n */\nexport interface SaversResponse extends Array<Saver> {\n}\n/**\n * \n * @export\n * @interface ScheduledResponse\n */\nexport interface ScheduledResponse extends Array<TxOutItem> {\n}\n/**\n * \n * @export\n * @interface StreamingSwap\n */\nexport interface StreamingSwap {\n /**\n * the hash of a transaction\n * @type {string}\n * @memberof StreamingSwap\n */\n 'tx_id'?: string;\n /**\n * how often each swap is made, in blocks\n * @type {number}\n * @memberof StreamingSwap\n */\n 'interval'?: number;\n /**\n * the total number of swaps in a streaming swaps\n * @type {number}\n * @memberof StreamingSwap\n */\n 'quantity'?: number;\n /**\n * the amount of swap attempts so far\n * @type {number}\n * @memberof StreamingSwap\n */\n 'count'?: number;\n /**\n * the block height of the latest swap\n * @type {number}\n * @memberof StreamingSwap\n */\n 'last_height'?: number;\n /**\n * the total number of tokens the swapper wants to receive of the output asset\n * @type {string}\n * @memberof StreamingSwap\n */\n 'trade_target'?: string;\n /**\n * the number of input tokens the swapper has deposited\n * @type {string}\n * @memberof StreamingSwap\n */\n 'deposit'?: string;\n /**\n * the amount of input tokens that have been swapped so far\n * @type {string}\n * @memberof StreamingSwap\n */\n 'in'?: string;\n /**\n * the amount of output tokens that have been swapped so far\n * @type {string}\n * @memberof StreamingSwap\n */\n 'out'?: string;\n /**\n * the list of swap indexes that failed\n * @type {Array<number>}\n * @memberof StreamingSwap\n */\n 'failed_swaps'?: Array<number>;\n /**\n * the list of reasons that sub-swaps have failed\n * @type {Array<string>}\n * @memberof StreamingSwap\n */\n 'failed_swap_reasons'?: Array<string>;\n}\n/**\n * \n * @export\n * @interface StreamingSwapsResponse\n */\nexport interface StreamingSwapsResponse extends Array<StreamingSwap> {\n}\n/**\n * \n * @export\n * @interface SwapQueueResponse\n */\nexport interface SwapQueueResponse extends Array<MsgSwap> {\n}\n/**\n * \n * @export\n * @interface Thorname\n */\nexport interface Thorname {\n /**\n * \n * @type {string}\n * @memberof Thorname\n */\n 'name'?: string;\n /**\n * \n * @type {number}\n * @memberof Thorname\n */\n 'expire_block_height'?: number;\n /**\n * \n * @type {string}\n * @memberof Thorname\n */\n 'owner'?: string;\n /**\n * \n * @type {string}\n * @memberof Thorname\n */\n 'preferred_asset': string;\n /**\n * Amount of RUNE currently accrued by this thorname in affiliate fees waiting to be swapped to preferred asset.\n * @type {string}\n * @memberof Thorname\n */\n 'affiliate_collector_rune'?: string;\n /**\n * \n * @type {Array<ThornameAlias>}\n * @memberof Thorname\n */\n 'aliases': Array<ThornameAlias>;\n}\n/**\n * \n * @export\n * @interface ThornameAlias\n */\nexport interface ThornameAlias {\n /**\n * \n * @type {string}\n * @memberof ThornameAlias\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof ThornameAlias\n */\n 'address'?: string;\n}\n/**\n * \n * @export\n * @interface ThornameResponse\n */\nexport interface ThornameResponse extends Array<Thorname> {\n}\n/**\n * \n * @export\n * @interface TssKeysignMetric\n */\nexport interface TssKeysignMetric {\n /**\n * \n * @type {string}\n * @memberof TssKeysignMetric\n */\n 'tx_id'?: string;\n /**\n * \n * @type {Array<TssMetric>}\n * @memberof TssKeysignMetric\n */\n 'node_tss_times': Array<TssMetric>;\n}\n/**\n * \n * @export\n * @interface TssMetric\n */\nexport interface TssMetric {\n /**\n * \n * @type {string}\n * @memberof TssMetric\n */\n 'address'?: string;\n /**\n * \n * @type {number}\n * @memberof TssMetric\n */\n 'tss_time'?: number;\n}\n/**\n * \n * @export\n * @interface Tx\n */\nexport interface Tx {\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'id'?: string;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'from_address'?: string;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'to_address'?: string;\n /**\n * \n * @type {Array<Coin>}\n * @memberof Tx\n */\n 'coins': Array<Coin>;\n /**\n * \n * @type {Array<Coin>}\n * @memberof Tx\n */\n 'gas': Array<Coin>;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'memo'?: string;\n}\n/**\n * \n * @export\n * @interface TxDetailsResponse\n */\nexport interface TxDetailsResponse {\n /**\n * \n * @type {string}\n * @memberof TxDetailsResponse\n */\n 'tx_id'?: string;\n /**\n * \n * @type {ObservedTx}\n * @memberof TxDetailsResponse\n */\n 'tx': ObservedTx;\n /**\n * \n * @type {Array<ObservedTx>}\n * @memberof TxDetailsResponse\n */\n 'txs': Array<ObservedTx>;\n /**\n * \n * @type {Array<TxOutItem>}\n * @memberof TxDetailsResponse\n */\n 'actions': Array<TxOutItem>;\n /**\n * \n * @type {Array<Tx>}\n * @memberof TxDetailsResponse\n */\n 'out_txs': Array<Tx>;\n /**\n * the thorchain height at which the inbound reached consensus\n * @type {number}\n * @memberof TxDetailsResponse\n */\n 'consensus_height'?: number;\n /**\n * the thorchain height at which the outbound was finalised\n * @type {number}\n * @memberof TxDetailsResponse\n */\n 'finalised_height'?: number;\n /**\n * \n * @type {boolean}\n * @memberof TxDetailsResponse\n */\n 'updated_vault'?: boolean;\n /**\n * \n * @type {boolean}\n * @memberof TxDetailsResponse\n */\n 'reverted'?: boolean;\n /**\n * the thorchain height for which the outbound was scheduled\n * @type {number}\n * @memberof TxDetailsResponse\n */\n 'outbound_height'?: number;\n}\n/**\n * \n * @export\n * @interface TxOutItem\n */\nexport interface TxOutItem {\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'chain': string;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'to_address': string;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'vault_pub_key'?: string;\n /**\n * \n * @type {Coin}\n * @memberof TxOutItem\n */\n 'coin': Coin;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'memo'?: string;\n /**\n * \n * @type {Array<Coin>}\n * @memberof TxOutItem\n */\n 'max_gas': Array<Coin>;\n /**\n * \n * @type {number}\n * @memberof TxOutItem\n */\n 'gas_rate'?: number;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'in_hash'?: string;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'out_hash'?: string;\n /**\n * \n * @type {number}\n * @memberof TxOutItem\n */\n 'height': number;\n}\n/**\n * \n * @export\n * @interface TxResponse\n */\nexport interface TxResponse {\n /**\n * \n * @type {ObservedTx}\n * @memberof TxResponse\n */\n 'observed_tx'?: ObservedTx;\n /**\n * the thorchain height at which the inbound reached consensus\n * @type {number}\n * @memberof TxResponse\n */\n 'consensus_height'?: number;\n /**\n * the thorchain height at which the outbound was finalised\n * @type {number}\n * @memberof TxResponse\n */\n 'finalised_height'?: number;\n /**\n * the thorchain height for which the outbound was scheduled\n * @type {number}\n * @memberof TxResponse\n */\n 'outbound_height'?: number;\n /**\n * \n * @type {TssKeysignMetric}\n * @memberof TxResponse\n */\n 'keysign_metric'?: TssKeysignMetric;\n}\n/**\n * \n * @export\n * @interface TxSignersResponse\n */\nexport interface TxSignersResponse {\n /**\n * \n * @type {string}\n * @memberof TxSignersResponse\n */\n 'tx_id'?: string;\n /**\n * \n * @type {ObservedTx}\n * @memberof TxSignersResponse\n */\n 'tx': ObservedTx;\n /**\n * \n * @type {Array<ObservedTx>}\n * @memberof TxSignersResponse\n */\n 'txs': Array<ObservedTx>;\n /**\n * \n * @type {Array<TxOutItem>}\n * @memberof TxSignersResponse\n */\n 'actions': Array<TxOutItem>;\n /**\n * \n * @type {Array<Tx>}\n * @memberof TxSignersResponse\n */\n 'out_txs': Array<Tx>;\n /**\n * the thorchain height at which the inbound reached consensus\n * @type {number}\n * @memberof TxSignersResponse\n */\n 'consensus_height'?: number;\n /**\n * the thorchain height at which the outbound was finalised\n * @type {number}\n * @memberof TxSignersResponse\n */\n 'finalised_height'?: number;\n /**\n * \n * @type {boolean}\n * @memberof TxSignersResponse\n */\n 'updated_vault'?: boolean;\n /**\n * \n * @type {boolean}\n * @memberof TxSignersResponse\n */\n 'reverted'?: boolean;\n /**\n * the thorchain height for which the outbound was scheduled\n * @type {number}\n * @memberof TxSignersResponse\n */\n 'outbound_height'?: number;\n}\n/**\n * \n * @export\n * @interface TxStagesResponse\n */\nexport interface TxStagesResponse {\n /**\n * \n * @type {TxStagesResponseInboundObserved}\n * @memberof TxStagesResponse\n */\n 'inbound_observed': TxStagesResponseInboundObserved;\n /**\n * \n * @type {TxStagesResponseInboundConfirmationCounted}\n * @memberof TxStagesResponse\n */\n 'inbound_confirmation_counted'?: TxStagesResponseInboundConfirmationCounted;\n /**\n * \n * @type {TxStagesResponseInboundFinalised}\n * @memberof TxStagesResponse\n */\n 'inbound_finalised'?: TxStagesResponseInboundFinalised;\n /**\n * \n * @type {TxStagesResponseSwapStatus}\n * @memberof TxStagesResponse\n */\n 'swap_status'?: TxStagesResponseSwapStatus;\n /**\n * \n * @type {TxStagesResponseSwapFinalised}\n * @memberof TxStagesResponse\n */\n 'swap_finalised'?: TxStagesResponseSwapFinalised;\n /**\n * \n * @type {TxStagesResponseOutboundDelay}\n * @memberof TxStagesResponse\n */\n 'outbound_delay'?: TxStagesResponseOutboundDelay;\n /**\n * \n * @type {TxStagesResponseOutboundSigned}\n * @memberof TxStagesResponse\n */\n 'outbound_signed'?: TxStagesResponseOutboundSigned;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseInboundConfirmationCounted\n */\nexport interface TxStagesResponseInboundConfirmationCounted {\n /**\n * the THORChain block height when confirmation counting began\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'counting_start_height'?: number;\n /**\n * the external source chain for which confirmation counting takes place\n * @type {string}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'chain'?: string;\n /**\n * the block height on the external source chain when the transaction was observed\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'external_observed_height'?: number;\n /**\n * the block height on the external source chain when confirmation counting will be complete\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'external_confirmation_delay_height'?: number;\n /**\n * the estimated remaining seconds before confirmation counting completes\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'remaining_confirmation_seconds'?: number;\n /**\n * returns true if no transaction confirmation counting remains to be done\n * @type {boolean}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseInboundFinalised\n */\nexport interface TxStagesResponseInboundFinalised {\n /**\n * returns true if the inbound transaction has been finalised (THORChain agreeing it exists)\n * @type {boolean}\n * @memberof TxStagesResponseInboundFinalised\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseInboundObserved\n */\nexport interface TxStagesResponseInboundObserved {\n /**\n * returns true if any nodes have observed the transaction (to be deprecated in favour of counts)\n * @type {boolean}\n * @memberof TxStagesResponseInboundObserved\n */\n 'started'?: boolean;\n /**\n * number of signers for pre-confirmation-counting observations\n * @type {number}\n * @memberof TxStagesResponseInboundObserved\n */\n 'pre_confirmation_count'?: number;\n /**\n * number of signers for final observations, after any confirmation counting complete\n * @type {number}\n * @memberof TxStagesResponseInboundObserved\n */\n 'final_count'?: number;\n /**\n * returns true if no transaction observation remains to be done\n * @type {boolean}\n * @memberof TxStagesResponseInboundObserved\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseOutboundDelay\n */\nexport interface TxStagesResponseOutboundDelay {\n /**\n * the number of remaining THORChain blocks the outbound will be delayed\n * @type {number}\n * @memberof TxStagesResponseOutboundDelay\n */\n 'remaining_delay_blocks'?: number;\n /**\n * the estimated remaining seconds of the outbound delay before it will be sent\n * @type {number}\n * @memberof TxStagesResponseOutboundDelay\n */\n 'remaining_delay_seconds'?: number;\n /**\n * returns true if no transaction outbound delay remains\n * @type {boolean}\n * @memberof TxStagesResponseOutboundDelay\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseOutboundSigned\n */\nexport interface TxStagesResponseOutboundSigned {\n /**\n * THORChain height for which the external outbound is scheduled\n * @type {number}\n * @memberof TxStagesResponseOutboundSigned\n */\n 'scheduled_outbound_height'?: number;\n /**\n * THORChain blocks since the scheduled outbound height\n * @type {number}\n * @memberof TxStagesResponseOutboundSigned\n */\n 'blocks_since_scheduled'?: number;\n /**\n * returns true if an external transaction has been signed and broadcast (and observed in its mempool)\n * @type {boolean}\n * @memberof TxStagesResponseOutboundSigned\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseSwapFinalised\n */\nexport interface TxStagesResponseSwapFinalised {\n /**\n * (to be deprecated in favor of swap_status) returns true if an inbound transaction\\'s swap (successful or refunded) is no longer pending\n * @type {boolean}\n * @memberof TxStagesResponseSwapFinalised\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseSwapStatus\n */\nexport interface TxStagesResponseSwapStatus {\n /**\n * true when awaiting a swap\n * @type {boolean}\n * @memberof TxStagesResponseSwapStatus\n */\n 'pending': boolean;\n /**\n * \n * @type {TxStagesResponseSwapStatusStreaming}\n * @memberof TxStagesResponseSwapStatus\n */\n 'streaming'?: TxStagesResponseSwapStatusStreaming;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseSwapStatusStreaming\n */\nexport interface TxStagesResponseSwapStatusStreaming {\n /**\n * how often each swap is made, in blocks\n * @type {number}\n * @memberof TxStagesResponseSwapStatusStreaming\n */\n 'interval': number;\n /**\n * the total number of swaps in a streaming swaps\n * @type {number}\n * @memberof TxStagesResponseSwapStatusStreaming\n */\n 'quantity': number;\n /**\n * the amount of swap attempts so far\n * @type {number}\n * @memberof TxStagesResponseSwapStatusStreaming\n */\n 'count': number;\n}\n/**\n * \n * @export\n * @interface TxStatusResponse\n */\nexport interface TxStatusResponse {\n /**\n * \n * @type {Tx}\n * @memberof TxStatusResponse\n */\n 'tx'?: Tx;\n /**\n * \n * @type {Array<TxStatusResponsePlannedOutTxsInner>}\n * @memberof TxStatusResponse\n */\n 'planned_out_txs'?: Array<TxStatusResponsePlannedOutTxsInner>;\n /**\n * \n * @type {Array<Tx>}\n * @memberof TxStatusResponse\n */\n 'out_txs'?: Array<Tx>;\n /**\n * \n * @type {TxStagesResponse}\n * @memberof TxStatusResponse\n */\n 'stages': TxStagesResponse;\n}\n/**\n * \n * @export\n * @interface TxStatusResponsePlannedOutTxsInner\n */\nexport interface TxStatusResponsePlannedOutTxsInner {\n /**\n * \n * @type {string}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'chain': string;\n /**\n * \n * @type {string}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'to_address': string;\n /**\n * \n * @type {Coin}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'coin': Coin;\n /**\n * returns true if the planned transaction has a refund memo\n * @type {boolean}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'refund': boolean;\n}\n/**\n * \n * @export\n * @interface Vault\n */\nexport interface Vault {\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'block_height'?: number;\n /**\n * \n * @type {string}\n * @memberof Vault\n */\n 'pub_key'?: string;\n /**\n * \n * @type {Array<Coin>}\n * @memberof Vault\n */\n 'coins': Array<Coin>;\n /**\n * \n * @type {string}\n * @memberof Vault\n */\n 'type'?: VaultTypeEnum;\n /**\n * \n * @type {string}\n * @memberof Vault\n */\n 'status'?: string;\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'status_since'?: number;\n /**\n * the list of node public keys which are members of the vault\n * @type {Array<string>}\n * @memberof Vault\n */\n 'membership'?: Array<string>;\n /**\n * \n * @type {Array<string>}\n * @memberof Vault\n */\n 'chains'?: Array<string>;\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'inbound_tx_count'?: number;\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'outbound_tx_count'?: number;\n /**\n * \n * @type {Array<number>}\n * @memberof Vault\n */\n 'pending_tx_block_heights'?: Array<number>;\n /**\n * \n * @type {Array<VaultRouter>}\n * @memberof Vault\n */\n 'routers': Array<VaultRouter>;\n /**\n * \n * @type {Array<VaultAddress>}\n * @memberof Vault\n */\n 'addresses': Array<VaultAddress>;\n /**\n * \n * @type {Array<string>}\n * @memberof Vault\n */\n 'frozen'?: Array<string>;\n}\n\nexport const VaultTypeEnum = {\n AsgardVault: 'AsgardVault',\n YggdrasilVault: 'YggdrasilVault'\n} as const;\n\nexport type VaultTypeEnum = typeof VaultTypeEnum[keyof typeof VaultTypeEnum];\n\n/**\n * \n * @export\n * @interface VaultAddress\n */\nexport interface VaultAddress {\n /**\n * \n * @type {string}\n * @memberof VaultAddress\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof VaultAddress\n */\n 'address'?: string;\n}\n/**\n * \n * @export\n * @interface VaultInfo\n */\nexport interface VaultInfo {\n /**\n * \n * @type {string}\n * @memberof VaultInfo\n */\n 'pub_key': string;\n /**\n * \n * @type {Array<VaultRouter>}\n * @memberof VaultInfo\n */\n 'routers': Array<VaultRouter>;\n}\n/**\n * \n * @export\n * @interface VaultPubkeysResponse\n */\nexport interface VaultPubkeysResponse {\n /**\n * \n * @type {Array<VaultInfo>}\n * @memberof VaultPubkeysResponse\n */\n 'asgard': Array<VaultInfo>;\n /**\n * \n * @type {Array<VaultInfo>}\n * @memberof VaultPubkeysResponse\n */\n 'yggdrasil': Array<VaultInfo>;\n /**\n * \n * @type {Array<VaultInfo>}\n * @memberof VaultPubkeysResponse\n */\n 'inactive': Array<VaultInfo>;\n}\n/**\n * \n * @export\n * @interface VaultRouter\n */\nexport interface VaultRouter {\n /**\n * \n * @type {string}\n * @memberof VaultRouter\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof VaultRouter\n */\n 'router'?: string;\n}\n/**\n * \n * @export\n * @interface VaultsResponse\n */\nexport interface VaultsResponse extends Array<Vault> {\n}\n/**\n * \n * @export\n * @interface VersionResponse\n */\nexport interface VersionResponse {\n /**\n * current version\n * @type {string}\n * @memberof VersionResponse\n */\n 'current': string;\n /**\n * next version (minimum version for a node to become Active)\n * @type {string}\n * @memberof VersionResponse\n */\n 'next': string;\n /**\n * height at which the minimum joining version last changed\n * @type {number}\n * @memberof VersionResponse\n */\n 'next_since_height'?: number;\n /**\n * querier version\n * @type {string}\n * @memberof VersionResponse\n */\n 'querier': string;\n}\n\n/**\n * BorrowersApi - axios parameter creator\n * @export\n */\nexport const BorrowersApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrower: async (asset: string, address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('borrower', 'asset', asset)\n // verify required parameter 'address' is not null or undefined\n assertParamExists('borrower', 'address', address)\n const localVarPath = `/thorchain/pool/{asset}/borrower/{address}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)))\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrowers: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('borrowers', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}/borrowers`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * BorrowersApi - functional programming interface\n * @export\n */\nexport const BorrowersApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = BorrowersApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async borrower(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Borrower>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.borrower(asset, address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async borrowers(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BorrowersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.borrowers(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * BorrowersApi - factory interface\n * @export\n */\nexport const BorrowersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = BorrowersApiFp(configuration)\n return {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrower(asset: string, address: string, height?: number, options?: any): AxiosPromise<Borrower> {\n return localVarFp.borrower(asset, address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrowers(asset: string, height?: number, options?: any): AxiosPromise<BorrowersResponse> {\n return localVarFp.borrowers(asset, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * BorrowersApi - object-oriented interface\n * @export\n * @class BorrowersApi\n * @extends {BaseAPI}\n */\nexport class BorrowersApi extends BaseAPI {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof BorrowersApi\n */\n public borrower(asset: string, address: string, height?: number, options?: AxiosRequestConfig) {\n return BorrowersApiFp(this.configuration).borrower(asset, address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof BorrowersApi\n */\n public borrowers(asset: string, height?: number, options?: AxiosRequestConfig) {\n return BorrowersApiFp(this.configuration).borrowers(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * HealthApi - axios parameter creator\n * @export\n */\nexport const HealthApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ping: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/ping`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * HealthApi - functional programming interface\n * @export\n */\nexport const HealthApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = HealthApiAxiosParamCreator(configuration)\n return {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async ping(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Ping>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.ping(options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * HealthApi - factory interface\n * @export\n */\nexport const HealthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = HealthApiFp(configuration)\n return {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ping(options?: any): AxiosPromise<Ping> {\n return localVarFp.ping(options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * HealthApi - object-oriented interface\n * @export\n * @class HealthApi\n * @extends {BaseAPI}\n */\nexport class HealthApi extends BaseAPI {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof HealthApi\n */\n public ping(options?: AxiosRequestConfig) {\n return HealthApiFp(this.configuration).ping(options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * InvariantsApi - axios parameter creator\n * @export\n */\nexport const InvariantsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariant: async (invariant: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'invariant' is not null or undefined\n assertParamExists('invariant', 'invariant', invariant)\n const localVarPath = `/thorchain/invariant/{invariant}`\n .replace(`{${\"invariant\"}}`, encodeURIComponent(String(invariant)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariants: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/invariants`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * InvariantsApi - functional programming interface\n * @export\n */\nexport const InvariantsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = InvariantsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async invariant(invariant: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InvariantResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.invariant(invariant, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async invariants(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InvariantsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.invariants(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * InvariantsApi - factory interface\n * @export\n */\nexport const InvariantsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = InvariantsApiFp(configuration)\n return {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariant(invariant: string, height?: number, options?: any): AxiosPromise<InvariantResponse> {\n return localVarFp.invariant(invariant, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariants(height?: number, options?: any): AxiosPromise<InvariantsResponse> {\n return localVarFp.invariants(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * InvariantsApi - object-oriented interface\n * @export\n * @class InvariantsApi\n * @extends {BaseAPI}\n */\nexport class InvariantsApi extends BaseAPI {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof InvariantsApi\n */\n public invariant(invariant: string, height?: number, options?: AxiosRequestConfig) {\n return InvariantsApiFp(this.configuration).invariant(invariant, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof InvariantsApi\n */\n public invariants(height?: number, options?: AxiosRequestConfig) {\n return InvariantsApiFp(this.configuration).invariants(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * LiquidityProvidersApi - axios parameter creator\n * @export\n */\nexport const LiquidityProvidersApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProvider: async (asset: string, address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('liquidityProvider', 'asset', asset)\n // verify required parameter 'address' is not null or undefined\n assertParamExists('liquidityProvider', 'address', address)\n const localVarPath = `/thorchain/pool/{asset}/liquidity_provider/{address}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)))\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProviders: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('liquidityProviders', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}/liquidity_providers`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * LiquidityProvidersApi - functional programming interface\n * @export\n */\nexport const LiquidityProvidersApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = LiquidityProvidersApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async liquidityProvider(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LiquidityProvider>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.liquidityProvider(asset, address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async liquidityProviders(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LiquidityProvidersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.liquidityProviders(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * LiquidityProvidersApi - factory interface\n * @export\n */\nexport const LiquidityProvidersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = LiquidityProvidersApiFp(configuration)\n return {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProvider(asset: string, address: string, height?: number, options?: any): AxiosPromise<LiquidityProvider> {\n return localVarFp.liquidityProvider(asset, address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProviders(asset: string, height?: number, options?: any): AxiosPromise<LiquidityProvidersResponse> {\n return localVarFp.liquidityProviders(asset, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * LiquidityProvidersApi - object-oriented interface\n * @export\n * @class LiquidityProvidersApi\n * @extends {BaseAPI}\n */\nexport class LiquidityProvidersApi extends BaseAPI {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof LiquidityProvidersApi\n */\n public liquidityProvider(asset: string, address: string, height?: number, options?: AxiosRequestConfig) {\n return LiquidityProvidersApiFp(this.configuration).liquidityProvider(asset, address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof LiquidityProvidersApi\n */\n public liquidityProviders(asset: string, height?: number, options?: AxiosRequestConfig) {\n return LiquidityProvidersApiFp(this.configuration).liquidityProviders(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * MimirApi - axios parameter creator\n * @export\n */\nexport const MimirApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimir: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/mimir`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirAdmin: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/mimir/admin`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirKey: async (key: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'key' is not null or undefined\n assertParamExists('mimirKey', 'key', key)\n const localVarPath = `/thorchain/mimir/key/{key}`\n .replace(`{${\"key\"}}`, encodeURIComponent(String(key)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNode: async (address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'address' is not null or undefined\n assertParamExists('mimirNode', 'address', address)\n const localVarPath = `/thorchain/mimir/node/{address}`\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNodes: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/mimir/nodes_all`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * MimirApi - functional programming interface\n * @export\n */\nexport const MimirApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = MimirApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimir(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimir(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirAdmin(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirAdmin(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirKey(key: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirKey(key, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirNode(address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirNode(address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirNodes(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirNodesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirNodes(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * MimirApi - factory interface\n * @export\n */\nexport const MimirApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = MimirApiFp(configuration)\n return {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimir(height?: number, options?: any): AxiosPromise<MimirResponse> {\n return localVarFp.mimir(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirAdmin(height?: number, options?: any): AxiosPromise<MimirResponse> {\n return localVarFp.mimirAdmin(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirKey(key: string, height?: number, options?: any): AxiosPromise<number> {\n return localVarFp.mimirKey(key, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNode(address: string, height?: number, options?: any): AxiosPromise<MimirResponse> {\n return localVarFp.mimirNode(address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNodes(height?: number, options?: any): AxiosPromise<MimirNodesResponse> {\n return localVarFp.mimirNodes(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * MimirApi - object-oriented interface\n * @export\n * @class MimirApi\n * @extends {BaseAPI}\n */\nexport class MimirApi extends BaseAPI {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimir(height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimir(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirAdmin(height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirAdmin(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirKey(key: string, height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirKey(key, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirNode(address: string, height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirNode(address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirNodes(height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirNodes(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * NetworkApi - axios parameter creator\n * @export\n */\nexport const NetworkApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ban: async (address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'address' is not null or undefined\n assertParamExists('ban', 'address', address)\n const localVarPath = `/thorchain/ban/{address}`\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n constants: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/constants`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n inboundAddresses: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/inbound_addresses`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblock: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/lastblock`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblockChain: async (chain: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'chain' is not null or undefined\n assertParamExists('lastblockChain', 'chain', chain)\n const localVarPath = `/thorchain/lastblock/{chain}`\n .replace(`{${\"chain\"}}`, encodeURIComponent(String(chain)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n network: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/network`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ragnarok: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/ragnarok`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n version: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/version`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * NetworkApi - functional programming interface\n * @export\n */\nexport const NetworkApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = NetworkApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async ban(address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.ban(address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async constants(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConstantsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.constants(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async inboundAddresses(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundAddressesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.inboundAddresses(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async lastblock(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LastBlockResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.lastblock(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async lastblockChain(chain: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LastBlockResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.lastblockChain(chain, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async network(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NetworkResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.network(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async ragnarok(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.ragnarok(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async version(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.version(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * NetworkApi - factory interface\n * @export\n */\nexport const NetworkApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = NetworkApiFp(configuration)\n return {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ban(address: string, height?: number, options?: any): AxiosPromise<BanResponse> {\n return localVarFp.ban(address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n constants(height?: number, options?: any): AxiosPromise<ConstantsResponse> {\n return localVarFp.constants(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n inboundAddresses(height?: number, options?: any): AxiosPromise<InboundAddressesResponse> {\n return localVarFp.inboundAddresses(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblock(height?: number, options?: any): AxiosPromise<LastBlockResponse> {\n return localVarFp.lastblock(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblockChain(chain: string, height?: number, options?: any): AxiosPromise<LastBlockResponse> {\n return localVarFp.lastblockChain(chain, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n network(height?: number, options?: any): AxiosPromise<NetworkResponse> {\n return localVarFp.network(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ragnarok(height?: number, options?: any): AxiosPromise<boolean> {\n return localVarFp.ragnarok(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n version(height?: number, options?: any): AxiosPromise<VersionResponse> {\n return localVarFp.version(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * NetworkApi - object-oriented interface\n * @export\n * @class NetworkApi\n * @extends {BaseAPI}\n */\nexport class NetworkApi extends BaseAPI {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public ban(address: string, height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).ban(address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public constants(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).constants(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public inboundAddresses(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).inboundAddresses(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public lastblock(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).lastblock(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public lastblockChain(chain: string, height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).lastblockChain(chain, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public network(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).network(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public ragnarok(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).ragnarok(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public version(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).version(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * NodesApi - axios parameter creator\n * @export\n */\nexport const NodesApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n node: async (address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'address' is not null or undefined\n assertParamExists('node', 'address', address)\n const localVarPath = `/thorchain/node/{address}`\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n nodes: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/nodes`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * NodesApi - functional programming interface\n * @export\n */\nexport const NodesApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = NodesApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async node(address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Node>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.node(address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async nodes(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NodesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.nodes(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * NodesApi - factory interface\n * @export\n */\nexport const NodesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = NodesApiFp(configuration)\n return {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n node(address: string, height?: number, options?: any): AxiosPromise<Node> {\n return localVarFp.node(address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n nodes(height?: number, options?: any): AxiosPromise<NodesResponse> {\n return localVarFp.nodes(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * NodesApi - object-oriented interface\n * @export\n * @class NodesApi\n * @extends {BaseAPI}\n */\nexport class NodesApi extends BaseAPI {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NodesApi\n */\n public node(address: string, height?: number, options?: AxiosRequestConfig) {\n return NodesApiFp(this.configuration).node(address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NodesApi\n */\n public nodes(height?: number, options?: AxiosRequestConfig) {\n return NodesApiFp(this.configuration).nodes(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * POLApi - axios parameter creator\n * @export\n */\nexport const POLApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pol: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/pol`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * POLApi - functional programming interface\n * @export\n */\nexport const POLApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = POLApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async pol(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<POLResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.pol(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * POLApi - factory interface\n * @export\n */\nexport const POLApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = POLApiFp(configuration)\n return {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pol(height?: number, options?: any): AxiosPromise<POLResponse> {\n return localVarFp.pol(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * POLApi - object-oriented interface\n * @export\n * @class POLApi\n * @extends {BaseAPI}\n */\nexport class POLApi extends BaseAPI {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof POLApi\n */\n public pol(height?: number, options?: AxiosRequestConfig) {\n return POLApiFp(this.configuration).pol(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * PoolsApi - axios parameter creator\n * @export\n */\nexport const PoolsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpool: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('dpool', 'asset', asset)\n const localVarPath = `/thorchain/dpool/{asset}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpools: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/dpools`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pool: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('pool', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pools: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/pools`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * PoolsApi - functional programming interface\n * @export\n */\nexport const PoolsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = PoolsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async dpool(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DerivedPool>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.dpool(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async dpools(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DerivedPoolsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.dpools(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async pool(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pool>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.pool(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async pools(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoolsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.pools(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * PoolsApi - factory interface\n * @export\n */\nexport const PoolsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = PoolsApiFp(configuration)\n return {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpool(asset: string, height?: number, options?: any): AxiosPromise<DerivedPool> {\n return localVarFp.dpool(asset, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpools(height?: number, options?: any): AxiosPromise<DerivedPoolsResponse> {\n return localVarFp.dpools(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pool(asset: string, height?: number, options?: any): AxiosPromise<Pool> {\n return localVarFp.pool(asset, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pools(height?: number, options?: any): AxiosPromise<PoolsResponse> {\n return localVarFp.pools(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * PoolsApi - object-oriented interface\n * @export\n * @class PoolsApi\n * @extends {BaseAPI}\n */\nexport class PoolsApi extends BaseAPI {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public dpool(asset: string, height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).dpool(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public dpools(height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).dpools(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public pool(asset: string, height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).pool(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public pools(height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).pools(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * QueueApi - axios parameter creator\n * @export\n */\nexport const QueueApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queue: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueOutbound: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue/outbound`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueScheduled: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue/scheduled`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueSwap: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue/swap`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * QueueApi - functional programming interface\n * @export\n */\nexport const QueueApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = QueueApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queue(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QueueResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queue(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queueOutbound(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queueOutbound(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queueScheduled(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScheduledResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queueScheduled(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queueSwap(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SwapQueueResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queueSwap(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * QueueApi - factory interface\n * @export\n */\nexport const QueueApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = QueueApiFp(configuration)\n return {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queue(height?: number, options?: any): AxiosPromise<QueueResponse> {\n return localVarFp.queue(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueOutbound(height?: number, options?: any): AxiosPromise<OutboundResponse> {\n return localVarFp.queueOutbound(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueScheduled(height?: number, options?: any): AxiosPromise<ScheduledResponse> {\n return localVarFp.queueScheduled(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueSwap(height?: number, options?: any): AxiosPromise<SwapQueueResponse> {\n return localVarFp.queueSwap(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * QueueApi - object-oriented interface\n * @export\n * @class QueueApi\n * @extends {BaseAPI}\n */\nexport class QueueApi extends BaseAPI {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queue(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queue(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queueOutbound(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queueOutbound(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queueScheduled(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queueScheduled(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queueSwap(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queueSwap(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * QuoteApi - axios parameter creator\n * @export\n */\nexport const QuoteApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanclose: async (height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/loan/close`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (fromAsset !== undefined) {\n localVarQueryParameter['from_asset'] = fromAsset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n if (toAsset !== undefined) {\n localVarQueryParameter['to_asset'] = toAsset;\n }\n\n if (loanOwner !== undefined) {\n localVarQueryParameter['loan_owner'] = loanOwner;\n }\n\n if (minOut !== undefined) {\n localVarQueryParameter['min_out'] = minOut;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanopen: async (height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/loan/open`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (fromAsset !== undefined) {\n localVarQueryParameter['from_asset'] = fromAsset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n if (toAsset !== undefined) {\n localVarQueryParameter['to_asset'] = toAsset;\n }\n\n if (destination !== undefined) {\n localVarQueryParameter['destination'] = destination;\n }\n\n if (minOut !== undefined) {\n localVarQueryParameter['min_out'] = minOut;\n }\n\n if (affiliateBps !== undefined) {\n localVarQueryParameter['affiliate_bps'] = affiliateBps;\n }\n\n if (affiliate !== undefined) {\n localVarQueryParameter['affiliate'] = affiliate;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverdeposit: async (height?: number, asset?: string, amount?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/saver/deposit`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (asset !== undefined) {\n localVarQueryParameter['asset'] = asset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverwithdraw: async (height?: number, asset?: string, address?: string, withdrawBps?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/saver/withdraw`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (asset !== undefined) {\n localVarQueryParameter['asset'] = asset;\n }\n\n if (address !== undefined) {\n localVarQueryParameter['address'] = address;\n }\n\n if (withdrawBps !== undefined) {\n localVarQueryParameter['withdraw_bps'] = withdrawBps;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteswap: async (height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/swap`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (fromAsset !== undefined) {\n localVarQueryParameter['from_asset'] = fromAsset;\n }\n\n if (toAsset !== undefined) {\n localVarQueryParameter['to_asset'] = toAsset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n if (destination !== undefined) {\n localVarQueryParameter['destination'] = destination;\n }\n\n if (streamingInterval !== undefined) {\n localVarQueryParameter['streaming_interval'] = streamingInterval;\n }\n\n if (streamingQuantity !== undefined) {\n localVarQueryParameter['streaming_quantity'] = streamingQuantity;\n }\n\n if (fromAddress !== undefined) {\n localVarQueryParameter['from_address'] = fromAddress;\n }\n\n if (toleranceBps !== undefined) {\n localVarQueryParameter['tolerance_bps'] = toleranceBps;\n }\n\n if (affiliateBps !== undefined) {\n localVarQueryParameter['affiliate_bps'] = affiliateBps;\n }\n\n if (affiliate !== undefined) {\n localVarQueryParameter['affiliate'] = affiliate;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * QuoteApi - functional programming interface\n * @export\n */\nexport const QuoteApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = QuoteApiAxiosParamCreator(configuration)\n return {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quoteloanclose(height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteLoanCloseResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quoteloanclose(height, fromAsset, amount, toAsset, loanOwner, minOut, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quoteloanopen(height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteLoanOpenResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quoteloanopen(height, fromAsset, amount, toAsset, destination, minOut, affiliateBps, affiliate, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quotesaverdeposit(height?: number, asset?: string, amount?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteSaverDepositResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quotesaverdeposit(height, asset, amount, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quotesaverwithdraw(height?: number, asset?: string, address?: string, withdrawBps?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteSaverWithdrawResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quotesaverwithdraw(height, asset, address, withdrawBps, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quoteswap(height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteSwapResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quoteswap(height, fromAsset, toAsset, amount, destination, streamingInterval, streamingQuantity, fromAddress, toleranceBps, affiliateBps, affiliate, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * QuoteApi - factory interface\n * @export\n */\nexport const QuoteApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = QuoteApiFp(configuration)\n return {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanclose(height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options?: any): AxiosPromise<QuoteLoanCloseResponse> {\n return localVarFp.quoteloanclose(height, fromAsset, amount, toAsset, loanOwner, minOut, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanopen(height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options?: any): AxiosPromise<QuoteLoanOpenResponse> {\n return localVarFp.quoteloanopen(height, fromAsset, amount, toAsset, destination, minOut, affiliateBps, affiliate, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverdeposit(height?: number, asset?: string, amount?: number, options?: any): AxiosPromise<QuoteSaverDepositResponse> {\n return localVarFp.quotesaverdeposit(height, asset, amount, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverwithdraw(height?: number, asset?: string, address?: string, withdrawBps?: number, options?: any): AxiosPromise<QuoteSaverWithdrawResponse> {\n return localVarFp.quotesaverwithdraw(height, asset, address, withdrawBps, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteswap(height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options?: any): AxiosPromise<QuoteSwapResponse> {\n return localVarFp.quoteswap(height, fromAsset, toAsset, amount, destination, streamingInterval, streamingQuantity, fromAddress, toleranceBps, affiliateBps, affiliate, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * QuoteApi - object-oriented interface\n * @export\n * @class QuoteApi\n * @extends {BaseAPI}\n */\nexport class QuoteApi extends BaseAPI {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quoteloanclose(height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quoteloanclose(height, fromAsset, amount, toAsset, loanOwner, minOut, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quoteloanopen(height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quoteloanopen(height, fromAsset, amount, toAsset, destination, minOut, affiliateBps, affiliate, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quotesaverdeposit(height?: number, asset?: string, amount?: number, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quotesaverdeposit(height, asset, amount, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quotesaverwithdraw(height?: number, asset?: string, address?: string, withdrawBps?: number, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quotesaverwithdraw(height, asset, address, withdrawBps, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quoteswap(height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quoteswap(height, fromAsset, toAsset, amount, destination, streamingInterval, streamingQuantity, fromAddress, toleranceBps, affiliateBps, affiliate, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * SaversApi - axios parameter creator\n * @export\n */\nexport const SaversApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n saver: async (asset: string, address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('saver', 'asset', asset)\n // verify required parameter 'address' is not null or undefined\n assertParamExists('saver', 'address', address)\n const localVarPath = `/thorchain/pool/{asset}/saver/{address}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)))\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n savers: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('savers', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}/savers`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * SaversApi - functional programming interface\n * @export\n */\nexport const SaversApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = SaversApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async saver(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Saver>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.saver(asset, address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async savers(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SaversResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.savers(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * SaversApi - factory interface\n * @export\n */\nexport const SaversApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = SaversApiFp(configuration)\n return {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n saver(asset: string, address: string, height?: number, options?: any): AxiosPromise<Saver> {\n return localVarFp.saver(asset, address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n savers(asset: string, height?: number, options?: any): AxiosPromise<SaversResponse> {\n return localVarFp.savers(asset, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * SaversApi - object-oriented interface\n * @export\n * @class SaversApi\n * @extends {BaseAPI}\n */\nexport class SaversApi extends BaseAPI {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof SaversApi\n */\n public saver(asset: string, address: string, height?: number, options?: AxiosRequestConfig) {\n return SaversApiFp(this.configuration).saver(asset, address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof SaversApi\n */\n public savers(asset: string, height?: number, options?: AxiosRequestConfig) {\n return SaversApiFp(this.configuration).savers(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * StreamingSwapApi - axios parameter creator\n * @export\n */\nexport const StreamingSwapApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwap: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('streamSwap', 'hash', hash)\n const localVarPath = `/thorchain/swap/streaming/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwaps: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/swaps/streaming`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * StreamingSwapApi - functional programming interface\n * @export\n */\nexport const StreamingSwapApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = StreamingSwapApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async streamSwap(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StreamingSwap>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.streamSwap(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async streamSwaps(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StreamingSwapsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.streamSwaps(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * StreamingSwapApi - factory interface\n * @export\n */\nexport const StreamingSwapApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = StreamingSwapApiFp(configuration)\n return {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwap(hash: string, height?: number, options?: any): AxiosPromise<StreamingSwap> {\n return localVarFp.streamSwap(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwaps(height?: number, options?: any): AxiosPromise<StreamingSwapsResponse> {\n return localVarFp.streamSwaps(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * StreamingSwapApi - object-oriented interface\n * @export\n * @class StreamingSwapApi\n * @extends {BaseAPI}\n */\nexport class StreamingSwapApi extends BaseAPI {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof StreamingSwapApi\n */\n public streamSwap(hash: string, height?: number, options?: AxiosRequestConfig) {\n return StreamingSwapApiFp(this.configuration).streamSwap(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof StreamingSwapApi\n */\n public streamSwaps(height?: number, options?: AxiosRequestConfig) {\n return StreamingSwapApiFp(this.configuration).streamSwaps(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * TSSApi - axios parameter creator\n * @export\n */\nexport const TSSApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysign: async (height: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'height' is not null or undefined\n assertParamExists('keysign', 'height', height)\n const localVarPath = `/thorchain/keysign/{height}`\n .replace(`{${\"height\"}}`, encodeURIComponent(String(height)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysignPubkey: async (height: number, pubkey: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'height' is not null or undefined\n assertParamExists('keysignPubkey', 'height', height)\n // verify required parameter 'pubkey' is not null or undefined\n assertParamExists('keysignPubkey', 'pubkey', pubkey)\n const localVarPath = `/thorchain/keysign/{height}/{pubkey}`\n .replace(`{${\"height\"}}`, encodeURIComponent(String(height)))\n .replace(`{${\"pubkey\"}}`, encodeURIComponent(String(pubkey)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metrics: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/metrics`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metricsKeygen: async (pubkey: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'pubkey' is not null or undefined\n assertParamExists('metricsKeygen', 'pubkey', pubkey)\n const localVarPath = `/thorchain/metric/keygen/{pubkey}`\n .replace(`{${\"pubkey\"}}`, encodeURIComponent(String(pubkey)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * TSSApi - functional programming interface\n * @export\n */\nexport const TSSApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = TSSApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async keysign(height: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeysignResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.keysign(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeysignResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.keysignPubkey(height, pubkey, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async metrics(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetricsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.metrics(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async metricsKeygen(pubkey: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeygenMetricsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.metricsKeygen(pubkey, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * TSSApi - factory interface\n * @export\n */\nexport const TSSApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = TSSApiFp(configuration)\n return {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysign(height: number, options?: any): AxiosPromise<KeysignResponse> {\n return localVarFp.keysign(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysignPubkey(height: number, pubkey: string, options?: any): AxiosPromise<KeysignResponse> {\n return localVarFp.keysignPubkey(height, pubkey, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metrics(height?: number, options?: any): AxiosPromise<MetricsResponse> {\n return localVarFp.metrics(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metricsKeygen(pubkey: string, height?: number, options?: any): AxiosPromise<KeygenMetricsResponse> {\n return localVarFp.metricsKeygen(pubkey, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * TSSApi - object-oriented interface\n * @export\n * @class TSSApi\n * @extends {BaseAPI}\n */\nexport class TSSApi extends BaseAPI {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public keysign(height: number, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).keysign(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).keysignPubkey(height, pubkey, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public metrics(height?: number, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).metrics(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public metricsKeygen(pubkey: string, height?: number, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).metricsKeygen(pubkey, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * ThornamesApi - axios parameter creator\n * @export\n */\nexport const ThornamesApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n thorname: async (name: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'name' is not null or undefined\n assertParamExists('thorname', 'name', name)\n const localVarPath = `/thorchain/thorname/{name}`\n .replace(`{${\"name\"}}`, encodeURIComponent(String(name)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * ThornamesApi - functional programming interface\n * @export\n */\nexport const ThornamesApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = ThornamesApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async thorname(name: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ThornameResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.thorname(name, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * ThornamesApi - factory interface\n * @export\n */\nexport const ThornamesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = ThornamesApiFp(configuration)\n return {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n thorname(name: string, height?: number, options?: any): AxiosPromise<ThornameResponse> {\n return localVarFp.thorname(name, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * ThornamesApi - object-oriented interface\n * @export\n * @class ThornamesApi\n * @extends {BaseAPI}\n */\nexport class ThornamesApi extends BaseAPI {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof ThornamesApi\n */\n public thorname(name: string, height?: number, options?: AxiosRequestConfig) {\n return ThornamesApiFp(this.configuration).thorname(name, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * TransactionsApi - axios parameter creator\n * @export\n */\nexport const TransactionsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n tx: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('tx', 'hash', hash)\n const localVarPath = `/thorchain/tx/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSigners: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txSigners', 'hash', hash)\n const localVarPath = `/thorchain/tx/details/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSignersOld: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txSignersOld', 'hash', hash)\n const localVarPath = `/thorchain/tx/{hash}/signers`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStages: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txStages', 'hash', hash)\n const localVarPath = `/thorchain/tx/stages/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStatus: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txStatus', 'hash', hash)\n const localVarPath = `/thorchain/tx/status/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * TransactionsApi - functional programming interface\n * @export\n */\nexport const TransactionsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = TransactionsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async tx(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.tx(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txSigners(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxDetailsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txSigners(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txSignersOld(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxSignersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txSignersOld(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txStages(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxStagesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txStages(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txStatus(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxStatusResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txStatus(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * TransactionsApi - factory interface\n * @export\n */\nexport const TransactionsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = TransactionsApiFp(configuration)\n return {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n tx(hash: string, height?: number, options?: any): AxiosPromise<TxResponse> {\n return localVarFp.tx(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSigners(hash: string, height?: number, options?: any): AxiosPromise<TxDetailsResponse> {\n return localVarFp.txSigners(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSignersOld(hash: string, height?: number, options?: any): AxiosPromise<TxSignersResponse> {\n return localVarFp.txSignersOld(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStages(hash: string, height?: number, options?: any): AxiosPromise<TxStagesResponse> {\n return localVarFp.txStages(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStatus(hash: string, height?: number, options?: any): AxiosPromise<TxStatusResponse> {\n return localVarFp.txStatus(hash, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * TransactionsApi - object-oriented interface\n * @export\n * @class TransactionsApi\n * @extends {BaseAPI}\n */\nexport class TransactionsApi extends BaseAPI {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public tx(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).tx(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txSigners(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txSigners(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txSignersOld(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txSignersOld(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txStages(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txStages(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txStatus(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txStatus(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * VaultsApi - axios parameter creator\n * @export\n */\nexport const VaultsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n asgard: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/vaults/asgard`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vault: async (pubkey: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'pubkey' is not null or undefined\n assertParamExists('vault', 'pubkey', pubkey)\n const localVarPath = `/thorchain/vault/{pubkey}`\n .replace(`{${\"pubkey\"}}`, encodeURIComponent(String(pubkey)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vaultPubkeys: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/vaults/pubkeys`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n yggdrasil: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/vaults/yggdrasil`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * VaultsApi - functional programming interface\n * @export\n */\nexport const VaultsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = VaultsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async asgard(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VaultsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.asgard(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async vault(pubkey: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Vault>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.vault(pubkey, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async vaultPubkeys(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VaultPubkeysResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.vaultPubkeys(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async yggdrasil(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VaultsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.yggdrasil(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * VaultsApi - factory interface\n * @export\n */\nexport const VaultsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = VaultsApiFp(configuration)\n return {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n asgard(height?: number, options?: any): AxiosPromise<VaultsResponse> {\n return localVarFp.asgard(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vault(pubkey: string, height?: number, options?: any): AxiosPromise<Vault> {\n return localVarFp.vault(pubkey, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vaultPubkeys(height?: number, options?: any): AxiosPromise<VaultPubkeysResponse> {\n return localVarFp.vaultPubkeys(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n yggdrasil(height?: number, options?: any): AxiosPromise<VaultsResponse> {\n return localVarFp.yggdrasil(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * VaultsApi - object-oriented interface\n * @export\n * @class VaultsApi\n * @extends {BaseAPI}\n */\nexport class VaultsApi extends BaseAPI {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public asgard(height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).asgard(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public vault(pubkey: string, height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).vault(pubkey, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public vaultPubkeys(height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).vaultPubkeys(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public yggdrasil(height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).yggdrasil(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.121.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface ConfigurationParameters {\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n username?: string;\n password?: string;\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n basePath?: string;\n baseOptions?: any;\n formDataCtor?: new () => any;\n}\n\nexport class Configuration {\n /**\n * parameter for apiKey security\n * @param name security name\n * @memberof Configuration\n */\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n /**\n * parameter for basic security\n *\n * @type {string}\n * @memberof Configuration\n */\n username?: string;\n /**\n * parameter for basic security\n *\n * @type {string}\n * @memberof Configuration\n */\n password?: string;\n /**\n * parameter for oauth2 security\n * @param name security name\n * @param scopes oauth2 scope\n * @memberof Configuration\n */\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n /**\n * override base path\n *\n * @type {string}\n * @memberof Configuration\n */\n basePath?: string;\n /**\n * base options for axios calls\n *\n * @type {any}\n * @memberof Configuration\n */\n baseOptions?: any;\n /**\n * The FormData constructor that will be used to create multipart form data\n * requests. You can inject this here so that execution environments that\n * do not support the FormData class can still run the generated client.\n *\n * @type {new () => FormData}\n */\n formDataCtor?: new () => any;\n\n constructor(param: ConfigurationParameters = {}) {\n this.apiKey = param.apiKey;\n this.username = param.username;\n this.password = param.password;\n this.accessToken = param.accessToken;\n this.basePath = param.basePath;\n this.baseOptions = param.baseOptions;\n this.formDataCtor = param.formDataCtor;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp('^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\n return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\n }\n}\n","export const THORNODE_API_9R_URL = 'https://thornode.ninerealms.com/'\n"],"names":["globalAxios"],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sources":["../src/generated/thornodeApi/base.ts","../src/generated/thornodeApi/common.ts","../src/generated/thornodeApi/api.ts","../src/generated/thornodeApi/configuration.ts","../src/config.ts"],"sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.122.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport { Configuration } from \"./configuration\";\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';\n\nexport const BASE_PATH = \"http://localhost\".replace(/\\/+$/, \"\");\n\n/**\n *\n * @export\n */\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n ssv: \" \",\n tsv: \"\\t\",\n pipes: \"|\",\n};\n\n/**\n *\n * @export\n * @interface RequestArgs\n */\nexport interface RequestArgs {\n url: string;\n options: AxiosRequestConfig;\n}\n\n/**\n *\n * @export\n * @class BaseAPI\n */\nexport class BaseAPI {\n protected configuration: Configuration | undefined;\n\n constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {\n if (configuration) {\n this.configuration = configuration;\n this.basePath = configuration.basePath || this.basePath;\n }\n }\n};\n\n/**\n *\n * @export\n * @class RequiredError\n * @extends {Error}\n */\nexport class RequiredError extends Error {\n name: \"RequiredError\" = \"RequiredError\";\n constructor(public field: string, msg?: string) {\n super(msg);\n }\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.122.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport { Configuration } from \"./configuration\";\nimport { RequiredError, RequestArgs } from \"./base\";\nimport { AxiosInstance, AxiosResponse } from 'axios';\n\n/**\n *\n * @export\n */\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n * @export\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\n/**\n *\n * @export\n */\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter)) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n } \n else {\n Object.keys(parameter).forEach(currentKey => \n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n } \n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n } \n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\n/**\n *\n * @export\n */\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n *\n * @export\n */\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {})\n : (value || \"\");\n}\n\n/**\n *\n * @export\n */\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\n/**\n *\n * @export\n */\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const axiosRequestArgs = {...axiosArgs.options, url: (configuration?.basePath || basePath) + axiosArgs.url};\n return axios.request<T, R>(axiosRequestArgs);\n };\n}\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.122.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport { Configuration } from './configuration';\nimport globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from './base';\n\n/**\n * \n * @export\n * @interface BanResponse\n */\nexport interface BanResponse {\n /**\n * \n * @type {string}\n * @memberof BanResponse\n */\n 'node_address'?: string;\n /**\n * \n * @type {number}\n * @memberof BanResponse\n */\n 'block_height'?: number;\n /**\n * \n * @type {Array<string>}\n * @memberof BanResponse\n */\n 'signers'?: Array<string>;\n}\n/**\n * \n * @export\n * @interface BaseQuoteResponse\n */\nexport interface BaseQuoteResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'outbound_delay_blocks'?: number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'outbound_delay_seconds'?: number;\n /**\n * \n * @type {QuoteFees}\n * @memberof BaseQuoteResponse\n */\n 'fees'?: QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'slippage_bps'?: number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof BaseQuoteResponse\n */\n 'expiry'?: number;\n /**\n * static warning message\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'warning'?: string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'notes'?: string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof BaseQuoteResponse\n */\n 'recommended_min_amount_in'?: string;\n}\n/**\n * \n * @export\n * @interface BlockResponse\n */\nexport interface BlockResponse {\n /**\n * \n * @type {BlockResponseId}\n * @memberof BlockResponse\n */\n 'id': BlockResponseId;\n /**\n * \n * @type {BlockResponseHeader}\n * @memberof BlockResponse\n */\n 'header': BlockResponseHeader;\n /**\n * \n * @type {Array<{ [key: string]: string; }>}\n * @memberof BlockResponse\n */\n 'begin_block_events': Array<{ [key: string]: string; }>;\n /**\n * \n * @type {Array<{ [key: string]: string; }>}\n * @memberof BlockResponse\n */\n 'end_block_events': Array<{ [key: string]: string; }>;\n /**\n * \n * @type {Array<BlockTx>}\n * @memberof BlockResponse\n */\n 'txs': Array<BlockTx> | null;\n}\n/**\n * \n * @export\n * @interface BlockResponseHeader\n */\nexport interface BlockResponseHeader {\n /**\n * \n * @type {BlockResponseHeaderVersion}\n * @memberof BlockResponseHeader\n */\n 'version': BlockResponseHeaderVersion;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'chain_id': string;\n /**\n * \n * @type {number}\n * @memberof BlockResponseHeader\n */\n 'height': number;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'time': string;\n /**\n * \n * @type {BlockResponseId}\n * @memberof BlockResponseHeader\n */\n 'last_block_id': BlockResponseId;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'last_commit_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'data_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'validators_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'next_validators_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'consensus_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'app_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'last_results_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'evidence_hash': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeader\n */\n 'proposer_address': string;\n}\n/**\n * \n * @export\n * @interface BlockResponseHeaderVersion\n */\nexport interface BlockResponseHeaderVersion {\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeaderVersion\n */\n 'block': string;\n /**\n * \n * @type {string}\n * @memberof BlockResponseHeaderVersion\n */\n 'app': string;\n}\n/**\n * \n * @export\n * @interface BlockResponseId\n */\nexport interface BlockResponseId {\n /**\n * \n * @type {string}\n * @memberof BlockResponseId\n */\n 'hash': string;\n /**\n * \n * @type {BlockResponseIdParts}\n * @memberof BlockResponseId\n */\n 'parts': BlockResponseIdParts;\n}\n/**\n * \n * @export\n * @interface BlockResponseIdParts\n */\nexport interface BlockResponseIdParts {\n /**\n * \n * @type {number}\n * @memberof BlockResponseIdParts\n */\n 'total': number;\n /**\n * \n * @type {string}\n * @memberof BlockResponseIdParts\n */\n 'hash': string;\n}\n/**\n * \n * @export\n * @interface BlockTx\n */\nexport interface BlockTx {\n /**\n * \n * @type {string}\n * @memberof BlockTx\n */\n 'hash': string;\n /**\n * \n * @type {{ [key: string]: any; }}\n * @memberof BlockTx\n */\n 'tx': { [key: string]: any; };\n /**\n * \n * @type {BlockTxResult}\n * @memberof BlockTx\n */\n 'result': BlockTxResult;\n}\n/**\n * \n * @export\n * @interface BlockTxResult\n */\nexport interface BlockTxResult {\n /**\n * \n * @type {number}\n * @memberof BlockTxResult\n */\n 'code'?: number;\n /**\n * \n * @type {string}\n * @memberof BlockTxResult\n */\n 'data'?: string;\n /**\n * \n * @type {string}\n * @memberof BlockTxResult\n */\n 'log'?: string;\n /**\n * \n * @type {string}\n * @memberof BlockTxResult\n */\n 'info'?: string;\n /**\n * \n * @type {string}\n * @memberof BlockTxResult\n */\n 'gas_wanted'?: string;\n /**\n * \n * @type {string}\n * @memberof BlockTxResult\n */\n 'gas_used'?: string;\n /**\n * \n * @type {Array<{ [key: string]: string; }>}\n * @memberof BlockTxResult\n */\n 'events'?: Array<{ [key: string]: string; }> | null;\n /**\n * \n * @type {string}\n * @memberof BlockTxResult\n */\n 'codespace'?: string;\n}\n/**\n * \n * @export\n * @interface Borrower\n */\nexport interface Borrower {\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'owner': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'debt_issued': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'debt_repaid': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'debt_current': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'collateral_deposited': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'collateral_withdrawn': string;\n /**\n * \n * @type {string}\n * @memberof Borrower\n */\n 'collateral_current': string;\n /**\n * \n * @type {number}\n * @memberof Borrower\n */\n 'last_open_height': number;\n /**\n * \n * @type {number}\n * @memberof Borrower\n */\n 'last_repay_height': number;\n}\n/**\n * \n * @export\n * @interface BorrowersResponse\n */\nexport interface BorrowersResponse extends Array<Borrower> {\n}\n/**\n * \n * @export\n * @interface ChainHeight\n */\nexport interface ChainHeight {\n /**\n * \n * @type {string}\n * @memberof ChainHeight\n */\n 'chain': string;\n /**\n * \n * @type {number}\n * @memberof ChainHeight\n */\n 'height': number;\n}\n/**\n * \n * @export\n * @interface Coin\n */\nexport interface Coin {\n /**\n * \n * @type {string}\n * @memberof Coin\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Coin\n */\n 'amount': string;\n /**\n * \n * @type {number}\n * @memberof Coin\n */\n 'decimals'?: number;\n}\n/**\n * \n * @export\n * @interface ConstantsResponse\n */\nexport interface ConstantsResponse {\n /**\n * \n * @type {{ [key: string]: string; }}\n * @memberof ConstantsResponse\n */\n 'int_64_values'?: { [key: string]: string; };\n /**\n * \n * @type {{ [key: string]: string; }}\n * @memberof ConstantsResponse\n */\n 'bool_values'?: { [key: string]: string; };\n /**\n * \n * @type {{ [key: string]: string; }}\n * @memberof ConstantsResponse\n */\n 'string_values'?: { [key: string]: string; };\n}\n/**\n * \n * @export\n * @interface DerivedPool\n */\nexport interface DerivedPool {\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'status': string;\n /**\n * \n * @type {number}\n * @memberof DerivedPool\n */\n 'decimals'?: number;\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'balance_asset': string;\n /**\n * \n * @type {string}\n * @memberof DerivedPool\n */\n 'balance_rune': string;\n /**\n * the depth of the derived virtual pool relative to L1 pool (in basis points)\n * @type {string}\n * @memberof DerivedPool\n */\n 'derived_depth_bps': string;\n}\n/**\n * \n * @export\n * @interface DerivedPoolsResponse\n */\nexport interface DerivedPoolsResponse extends Array<DerivedPool> {\n}\n/**\n * \n * @export\n * @interface InboundAddress\n */\nexport interface InboundAddress {\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'pub_key'?: string;\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'address'?: string;\n /**\n * \n * @type {string}\n * @memberof InboundAddress\n */\n 'router'?: string;\n /**\n * Returns true if trading is unavailable for this chain, either because trading is halted globally or specifically for this chain\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'halted': boolean;\n /**\n * Returns true if trading is paused globally\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'global_trading_paused'?: boolean;\n /**\n * Returns true if trading is paused for this chain\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'chain_trading_paused'?: boolean;\n /**\n * Returns true if LP actions are paused for this chain\n * @type {boolean}\n * @memberof InboundAddress\n */\n 'chain_lp_actions_paused'?: boolean;\n /**\n * The minimum fee rate used by vaults to send outbound TXs. The actual fee rate may be higher. For EVM chains this is returned in gwei (1e9).\n * @type {string}\n * @memberof InboundAddress\n */\n 'gas_rate'?: string;\n /**\n * Units of the gas_rate.\n * @type {string}\n * @memberof InboundAddress\n */\n 'gas_rate_units'?: string;\n /**\n * Avg size of outbound TXs on each chain. For UTXO chains it may be larger than average, as it takes into account vault consolidation txs, which can have many vouts\n * @type {string}\n * @memberof InboundAddress\n */\n 'outbound_tx_size'?: string;\n /**\n * The total outbound fee charged to the user for outbound txs in the gas asset of the chain.\n * @type {string}\n * @memberof InboundAddress\n */\n 'outbound_fee'?: string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transactions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof InboundAddress\n */\n 'dust_threshold'?: string;\n}\n/**\n * \n * @export\n * @interface InboundAddressesResponse\n */\nexport interface InboundAddressesResponse extends Array<InboundAddress> {\n}\n/**\n * \n * @export\n * @interface InvariantResponse\n */\nexport interface InvariantResponse {\n /**\n * The name of the invariant.\n * @type {string}\n * @memberof InvariantResponse\n */\n 'invariant': string;\n /**\n * Returns true if the invariant is broken.\n * @type {boolean}\n * @memberof InvariantResponse\n */\n 'broken': boolean;\n /**\n * Informative message about the invariant result.\n * @type {Array<string>}\n * @memberof InvariantResponse\n */\n 'msg': Array<string>;\n}\n/**\n * \n * @export\n * @interface InvariantsResponse\n */\nexport interface InvariantsResponse {\n /**\n * \n * @type {Array<string>}\n * @memberof InvariantsResponse\n */\n 'invariants'?: Array<string>;\n}\n/**\n * \n * @export\n * @interface KeygenMetric\n */\nexport interface KeygenMetric {\n /**\n * \n * @type {string}\n * @memberof KeygenMetric\n */\n 'pub_key'?: string;\n /**\n * \n * @type {Array<NodeKeygenMetric>}\n * @memberof KeygenMetric\n */\n 'node_tss_times': Array<NodeKeygenMetric>;\n}\n/**\n * \n * @export\n * @interface KeygenMetricsResponse\n */\nexport interface KeygenMetricsResponse extends Array<KeygenMetric> {\n}\n/**\n * \n * @export\n * @interface KeysignInfo\n */\nexport interface KeysignInfo {\n /**\n * the block(s) in which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue\n * @type {number}\n * @memberof KeysignInfo\n */\n 'height'?: number;\n /**\n * \n * @type {Array<TxOutItem>}\n * @memberof KeysignInfo\n */\n 'tx_array': Array<TxOutItem>;\n}\n/**\n * \n * @export\n * @interface KeysignMetrics\n */\nexport interface KeysignMetrics {\n /**\n * \n * @type {string}\n * @memberof KeysignMetrics\n */\n 'tx_id'?: string;\n /**\n * \n * @type {Array<TssMetric>}\n * @memberof KeysignMetrics\n */\n 'node_tss_times'?: Array<TssMetric>;\n}\n/**\n * \n * @export\n * @interface KeysignResponse\n */\nexport interface KeysignResponse {\n /**\n * \n * @type {KeysignInfo}\n * @memberof KeysignResponse\n */\n 'keysign'?: KeysignInfo;\n /**\n * \n * @type {string}\n * @memberof KeysignResponse\n */\n 'signature'?: string;\n}\n/**\n * \n * @export\n * @interface LastBlock\n */\nexport interface LastBlock {\n /**\n * \n * @type {string}\n * @memberof LastBlock\n */\n 'chain': string;\n /**\n * \n * @type {number}\n * @memberof LastBlock\n */\n 'last_observed_in': number;\n /**\n * \n * @type {number}\n * @memberof LastBlock\n */\n 'last_signed_out': number;\n /**\n * \n * @type {number}\n * @memberof LastBlock\n */\n 'thorchain': number;\n}\n/**\n * \n * @export\n * @interface LastBlockResponse\n */\nexport interface LastBlockResponse extends Array<LastBlock> {\n}\n/**\n * \n * @export\n * @interface LiquidityProvider\n */\nexport interface LiquidityProvider {\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'rune_address'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset_address'?: string;\n /**\n * \n * @type {number}\n * @memberof LiquidityProvider\n */\n 'last_add_height'?: number;\n /**\n * \n * @type {number}\n * @memberof LiquidityProvider\n */\n 'last_withdraw_height'?: number;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'units': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'pending_rune': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'pending_asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'pending_tx_id'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'rune_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'rune_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'asset_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'luvi_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'luvi_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProvider\n */\n 'luvi_growth_pct': string;\n}\n/**\n * \n * @export\n * @interface LiquidityProviderSummary\n */\nexport interface LiquidityProviderSummary {\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'rune_address'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'asset_address'?: string;\n /**\n * \n * @type {number}\n * @memberof LiquidityProviderSummary\n */\n 'last_add_height'?: number;\n /**\n * \n * @type {number}\n * @memberof LiquidityProviderSummary\n */\n 'last_withdraw_height'?: number;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'units': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'pending_rune': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'pending_asset': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'pending_tx_id'?: string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'rune_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof LiquidityProviderSummary\n */\n 'asset_deposit_value': string;\n}\n/**\n * \n * @export\n * @interface LiquidityProvidersResponse\n */\nexport interface LiquidityProvidersResponse extends Array<LiquidityProviderSummary> {\n}\n/**\n * \n * @export\n * @interface MetricsResponse\n */\nexport interface MetricsResponse {\n /**\n * \n * @type {KeygenMetricsResponse}\n * @memberof MetricsResponse\n */\n 'keygen'?: KeygenMetricsResponse;\n /**\n * \n * @type {KeysignMetrics}\n * @memberof MetricsResponse\n */\n 'keysign'?: KeysignMetrics;\n}\n/**\n * \n * @export\n * @interface MimirNodesResponse\n */\nexport interface MimirNodesResponse {\n /**\n * \n * @type {Array<MimirVote>}\n * @memberof MimirNodesResponse\n */\n 'mimirs'?: Array<MimirVote>;\n}\n/**\n * \n * @export\n * @interface MimirResponse\n */\nexport interface MimirResponse {\n [key: string]: string;\n\n}\n/**\n * \n * @export\n * @interface MimirVote\n */\nexport interface MimirVote {\n /**\n * \n * @type {string}\n * @memberof MimirVote\n */\n 'key'?: string;\n /**\n * \n * @type {number}\n * @memberof MimirVote\n */\n 'value'?: number;\n /**\n * \n * @type {string}\n * @memberof MimirVote\n */\n 'signer'?: string;\n}\n/**\n * \n * @export\n * @interface MsgSwap\n */\nexport interface MsgSwap {\n /**\n * \n * @type {Tx}\n * @memberof MsgSwap\n */\n 'tx': Tx;\n /**\n * the asset to be swapped to\n * @type {string}\n * @memberof MsgSwap\n */\n 'target_asset': string;\n /**\n * the destination address to receive the swap output\n * @type {string}\n * @memberof MsgSwap\n */\n 'destination'?: string;\n /**\n * the minimum amount of output asset to receive (else cancelling and refunding the swap)\n * @type {string}\n * @memberof MsgSwap\n */\n 'trade_target': string;\n /**\n * the affiliate address which will receive any affiliate fee\n * @type {string}\n * @memberof MsgSwap\n */\n 'affiliate_address'?: string;\n /**\n * the affiliate fee in basis points\n * @type {string}\n * @memberof MsgSwap\n */\n 'affiliate_basis_points': string;\n /**\n * the signer (sender) of the transaction\n * @type {string}\n * @memberof MsgSwap\n */\n 'signer'?: string;\n /**\n * the contract address if an aggregator is specified for a non-THORChain SwapOut\n * @type {string}\n * @memberof MsgSwap\n */\n 'aggregator'?: string;\n /**\n * the desired output asset of the aggregator SwapOut\n * @type {string}\n * @memberof MsgSwap\n */\n 'aggregator_target_address'?: string;\n /**\n * the minimum amount of SwapOut asset to receive (else cancelling the SwapOut and receiving THORChain\\'s output)\n * @type {string}\n * @memberof MsgSwap\n */\n 'aggregator_target_limit'?: string;\n /**\n * 0 if a market order (immediately completed or refunded), 1 if a limit order (held until fulfillable)\n * @type {number}\n * @memberof MsgSwap\n */\n 'order_type'?: number;\n /**\n * number of swaps to execute in a streaming swap\n * @type {number}\n * @memberof MsgSwap\n */\n 'stream_quantity'?: number;\n /**\n * the interval (in blocks) to execute the streaming swap\n * @type {number}\n * @memberof MsgSwap\n */\n 'stream_interval'?: number;\n}\n/**\n * \n * @export\n * @interface NetworkResponse\n */\nexport interface NetworkResponse {\n /**\n * total amount of RUNE awarded to node operators\n * @type {string}\n * @memberof NetworkResponse\n */\n 'bond_reward_rune': string;\n /**\n * total of burned BEP2 RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'burned_bep_2_rune': string;\n /**\n * total of burned ERC20 RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'burned_erc_20_rune': string;\n /**\n * total bonded RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'total_bond_units': string;\n /**\n * effective security bond used to determine maximum pooled RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'effective_security_bond': string;\n /**\n * total reserve RUNE\n * @type {string}\n * @memberof NetworkResponse\n */\n 'total_reserve': string;\n /**\n * Returns true if there exist RetiringVaults which have not finished migrating funds to new ActiveVaults\n * @type {boolean}\n * @memberof NetworkResponse\n */\n 'vaults_migrating': boolean;\n /**\n * Sum of the gas the network has spent to send outbounds\n * @type {string}\n * @memberof NetworkResponse\n */\n 'gas_spent_rune': string;\n /**\n * Sum of the gas withheld from users to cover outbound gas\n * @type {string}\n * @memberof NetworkResponse\n */\n 'gas_withheld_rune': string;\n /**\n * Current outbound fee multiplier, in basis points\n * @type {string}\n * @memberof NetworkResponse\n */\n 'outbound_fee_multiplier'?: string;\n /**\n * the outbound transaction fee in rune, converted from the NativeOutboundFeeUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'native_outbound_fee_rune': string;\n /**\n * the native transaction fee in rune, converted from the NativeTransactionFeeUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'native_tx_fee_rune': string;\n /**\n * the thorname register fee in rune, converted from the TNSRegisterFeeUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'tns_register_fee_rune': string;\n /**\n * the thorname fee per block in rune, converted from the TNSFeePerBlockUSD mimir (after USD fees are enabled)\n * @type {string}\n * @memberof NetworkResponse\n */\n 'tns_fee_per_block_rune': string;\n /**\n * the rune price in tor\n * @type {string}\n * @memberof NetworkResponse\n */\n 'rune_price_in_tor': string;\n /**\n * the tor price in rune\n * @type {string}\n * @memberof NetworkResponse\n */\n 'tor_price_in_rune': string;\n}\n/**\n * \n * @export\n * @interface Node\n */\nexport interface Node {\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'node_address': string;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'status': NodeStatusEnum;\n /**\n * \n * @type {NodePubKeySet}\n * @memberof Node\n */\n 'pub_key_set': NodePubKeySet;\n /**\n * the consensus pub key for the node\n * @type {string}\n * @memberof Node\n */\n 'validator_cons_pub_key': string;\n /**\n * the P2PID (:6040/p2pid endpoint) of the node\n * @type {string}\n * @memberof Node\n */\n 'peer_id': string;\n /**\n * the block height at which the node became active\n * @type {number}\n * @memberof Node\n */\n 'active_block_height': number;\n /**\n * the block height of the current provided information for the node\n * @type {number}\n * @memberof Node\n */\n 'status_since': number;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'node_operator_address': string;\n /**\n * current node bond\n * @type {string}\n * @memberof Node\n */\n 'total_bond': string;\n /**\n * \n * @type {NodeBondProviders}\n * @memberof Node\n */\n 'bond_providers': NodeBondProviders;\n /**\n * the set of vault public keys of which the node is a member\n * @type {Array<string>}\n * @memberof Node\n */\n 'signer_membership': Array<string>;\n /**\n * \n * @type {boolean}\n * @memberof Node\n */\n 'requested_to_leave': boolean;\n /**\n * indicates whether the node has been forced to leave by the network, typically via ban\n * @type {boolean}\n * @memberof Node\n */\n 'forced_to_leave': boolean;\n /**\n * \n * @type {number}\n * @memberof Node\n */\n 'leave_height': number;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'ip_address': string;\n /**\n * the currently set version of the node\n * @type {string}\n * @memberof Node\n */\n 'version': string;\n /**\n * the accumlated slash points, reset at churn but excessive slash points may carry over\n * @type {number}\n * @memberof Node\n */\n 'slash_points': number;\n /**\n * \n * @type {NodeJail}\n * @memberof Node\n */\n 'jail': NodeJail;\n /**\n * \n * @type {string}\n * @memberof Node\n */\n 'current_award': string;\n /**\n * the last observed heights for all chain by the node\n * @type {Array<ChainHeight>}\n * @memberof Node\n */\n 'observe_chains': Array<ChainHeight>;\n /**\n * \n * @type {NodePreflightStatus}\n * @memberof Node\n */\n 'preflight_status': NodePreflightStatus;\n}\n\nexport const NodeStatusEnum = {\n Active: 'Active',\n Whitelisted: 'Whitelisted',\n Standby: 'Standby',\n Disabled: 'Disabled'\n} as const;\n\nexport type NodeStatusEnum = typeof NodeStatusEnum[keyof typeof NodeStatusEnum];\n\n/**\n * \n * @export\n * @interface NodeBondProvider\n */\nexport interface NodeBondProvider {\n /**\n * \n * @type {string}\n * @memberof NodeBondProvider\n */\n 'bond_address'?: string;\n /**\n * \n * @type {string}\n * @memberof NodeBondProvider\n */\n 'bond'?: string;\n}\n/**\n * \n * @export\n * @interface NodeBondProviders\n */\nexport interface NodeBondProviders {\n /**\n * node operator fee in basis points\n * @type {string}\n * @memberof NodeBondProviders\n */\n 'node_operator_fee'?: string;\n /**\n * \n * @type {NodeBondProvider}\n * @memberof NodeBondProviders\n */\n 'providers'?: NodeBondProvider;\n}\n/**\n * \n * @export\n * @interface NodeJail\n */\nexport interface NodeJail {\n /**\n * \n * @type {number}\n * @memberof NodeJail\n */\n 'release_height'?: number;\n /**\n * \n * @type {string}\n * @memberof NodeJail\n */\n 'reason'?: string;\n}\n/**\n * \n * @export\n * @interface NodeKeygenMetric\n */\nexport interface NodeKeygenMetric {\n /**\n * \n * @type {string}\n * @memberof NodeKeygenMetric\n */\n 'address'?: string;\n /**\n * \n * @type {string}\n * @memberof NodeKeygenMetric\n */\n 'tss_time'?: string;\n}\n/**\n * \n * @export\n * @interface NodePreflightStatus\n */\nexport interface NodePreflightStatus {\n /**\n * the next status of the node\n * @type {string}\n * @memberof NodePreflightStatus\n */\n 'status': string;\n /**\n * the reason for the transition to the next status\n * @type {string}\n * @memberof NodePreflightStatus\n */\n 'reason': string;\n /**\n * \n * @type {number}\n * @memberof NodePreflightStatus\n */\n 'code': number;\n}\n/**\n * \n * @export\n * @interface NodePubKeySet\n */\nexport interface NodePubKeySet {\n /**\n * \n * @type {string}\n * @memberof NodePubKeySet\n */\n 'secp256k1'?: string;\n /**\n * \n * @type {string}\n * @memberof NodePubKeySet\n */\n 'ed25519'?: string;\n}\n/**\n * \n * @export\n * @interface NodesResponse\n */\nexport interface NodesResponse extends Array<Node> {\n}\n/**\n * \n * @export\n * @interface ObservedTx\n */\nexport interface ObservedTx {\n /**\n * \n * @type {Tx}\n * @memberof ObservedTx\n */\n 'tx': Tx;\n /**\n * \n * @type {string}\n * @memberof ObservedTx\n */\n 'observed_pub_key'?: string;\n /**\n * the block height on the external source chain when the transaction was observed, not provided if chain is THOR\n * @type {number}\n * @memberof ObservedTx\n */\n 'external_observed_height'?: number;\n /**\n * the block height on the external source chain when confirmation counting will be complete, not provided if chain is THOR\n * @type {number}\n * @memberof ObservedTx\n */\n 'external_confirmation_delay_height'?: number;\n /**\n * the outbound aggregator to use, will also match a suffix\n * @type {string}\n * @memberof ObservedTx\n */\n 'aggregator'?: string;\n /**\n * the aggregator target asset provided to transferOutAndCall\n * @type {string}\n * @memberof ObservedTx\n */\n 'aggregator_target'?: string;\n /**\n * the aggregator target asset limit provided to transferOutAndCall\n * @type {string}\n * @memberof ObservedTx\n */\n 'aggregator_target_limit'?: string;\n /**\n * \n * @type {Array<string>}\n * @memberof ObservedTx\n */\n 'signers'?: Array<string>;\n /**\n * \n * @type {number}\n * @memberof ObservedTx\n */\n 'keysign_ms'?: number;\n /**\n * \n * @type {Array<string>}\n * @memberof ObservedTx\n */\n 'out_hashes'?: Array<string>;\n /**\n * \n * @type {string}\n * @memberof ObservedTx\n */\n 'status'?: ObservedTxStatusEnum;\n}\n\nexport const ObservedTxStatusEnum = {\n Done: 'done',\n Incomplete: 'incomplete'\n} as const;\n\nexport type ObservedTxStatusEnum = typeof ObservedTxStatusEnum[keyof typeof ObservedTxStatusEnum];\n\n/**\n * \n * @export\n * @interface OutboundResponse\n */\nexport interface OutboundResponse extends Array<TxOutItem> {\n}\n/**\n * \n * @export\n * @interface POLResponse\n */\nexport interface POLResponse {\n /**\n * total amount of RUNE deposited into the pools\n * @type {string}\n * @memberof POLResponse\n */\n 'rune_deposited': string;\n /**\n * total amount of RUNE withdrawn from the pools\n * @type {string}\n * @memberof POLResponse\n */\n 'rune_withdrawn': string;\n /**\n * total value of protocol\\'s LP position in RUNE value\n * @type {string}\n * @memberof POLResponse\n */\n 'value': string;\n /**\n * profit and loss of protocol owned liquidity\n * @type {string}\n * @memberof POLResponse\n */\n 'pnl': string;\n /**\n * current amount of rune deposited\n * @type {string}\n * @memberof POLResponse\n */\n 'current_deposit': string;\n}\n/**\n * \n * @export\n * @interface Ping\n */\nexport interface Ping {\n /**\n * \n * @type {string}\n * @memberof Ping\n */\n 'ping'?: string;\n}\n/**\n * \n * @export\n * @interface Pool\n */\nexport interface Pool {\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'short_code'?: string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'status': string;\n /**\n * \n * @type {number}\n * @memberof Pool\n */\n 'decimals'?: number;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'pending_inbound_asset': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'pending_inbound_rune': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'balance_asset': string;\n /**\n * \n * @type {string}\n * @memberof Pool\n */\n 'balance_rune': string;\n /**\n * the total pool units, this is the sum of LP and synth units\n * @type {string}\n * @memberof Pool\n */\n 'pool_units': string;\n /**\n * the total pool liquidity provider units\n * @type {string}\n * @memberof Pool\n */\n 'LP_units': string;\n /**\n * the total synth units in the pool\n * @type {string}\n * @memberof Pool\n */\n 'synth_units': string;\n /**\n * the total supply of synths for the asset\n * @type {string}\n * @memberof Pool\n */\n 'synth_supply': string;\n /**\n * the balance of L1 asset deposited into the Savers Vault\n * @type {string}\n * @memberof Pool\n */\n 'savers_depth': string;\n /**\n * the number of units owned by Savers\n * @type {string}\n * @memberof Pool\n */\n 'savers_units': string;\n /**\n * whether additional synths cannot be minted\n * @type {boolean}\n * @memberof Pool\n */\n 'synth_mint_paused': boolean;\n /**\n * the amount of synth supply remaining before the current max supply is reached\n * @type {string}\n * @memberof Pool\n */\n 'synth_supply_remaining': string;\n /**\n * the amount of collateral collects for loans\n * @type {string}\n * @memberof Pool\n */\n 'loan_collateral': string;\n /**\n * the current loan collateralization ratio\n * @type {string}\n * @memberof Pool\n */\n 'loan_cr': string;\n /**\n * the depth of the derived virtual pool relative to L1 pool (in basis points)\n * @type {string}\n * @memberof Pool\n */\n 'derived_depth_bps': string;\n}\n/**\n * \n * @export\n * @interface PoolsResponse\n */\nexport interface PoolsResponse extends Array<Pool> {\n}\n/**\n * \n * @export\n * @interface QueueResponse\n */\nexport interface QueueResponse {\n /**\n * \n * @type {number}\n * @memberof QueueResponse\n */\n 'swap': number;\n /**\n * number of signed outbound tx in the queue\n * @type {number}\n * @memberof QueueResponse\n */\n 'outbound': number;\n /**\n * \n * @type {number}\n * @memberof QueueResponse\n */\n 'internal': number;\n /**\n * scheduled outbound value in RUNE\n * @type {string}\n * @memberof QueueResponse\n */\n 'scheduled_outbound_value': string;\n}\n/**\n * \n * @export\n * @interface QuoteFees\n */\nexport interface QuoteFees {\n /**\n * the target asset used for all fees\n * @type {string}\n * @memberof QuoteFees\n */\n 'asset': string;\n /**\n * affiliate fee in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'affiliate'?: string;\n /**\n * outbound fee in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'outbound'?: string;\n /**\n * liquidity fees paid to pools in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'liquidity': string;\n /**\n * total fees in the target asset\n * @type {string}\n * @memberof QuoteFees\n */\n 'total': string;\n /**\n * the swap slippage in basis points\n * @type {number}\n * @memberof QuoteFees\n */\n 'slippage_bps': number;\n /**\n * total basis points in fees relative to amount out\n * @type {number}\n * @memberof QuoteFees\n */\n 'total_bps': number;\n}\n/**\n * \n * @export\n * @interface QuoteLoanCloseResponse\n */\nexport interface QuoteLoanCloseResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteLoanCloseResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'slippage_bps'?: number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteLoanCloseResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the loan close\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'memo': string;\n /**\n * the amount of collateral asset the user can expect to receive after fees in 1e8 decimals\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'expected_amount_out': string;\n /**\n * the expected amount of collateral decrease on the loan\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'expected_collateral_withdrawn': string;\n /**\n * the expected amount of TOR debt decrease on the loan\n * @type {string}\n * @memberof QuoteLoanCloseResponse\n */\n 'expected_debt_repaid': string;\n}\n/**\n * \n * @export\n * @interface QuoteLoanOpenResponse\n */\nexport interface QuoteLoanOpenResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteLoanOpenResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'slippage_bps'?: number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteLoanOpenResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the loan open\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'memo'?: string;\n /**\n * the amount of the target asset the user can expect to receive after fees in 1e8 decimals\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_amount_out': string;\n /**\n * the expected collateralization ratio in basis points\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_collateralization_ratio': string;\n /**\n * the expected amount of collateral increase on the loan\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_collateral_deposited': string;\n /**\n * the expected amount of TOR debt increase on the loan\n * @type {string}\n * @memberof QuoteLoanOpenResponse\n */\n 'expected_debt_issued': string;\n}\n/**\n * \n * @export\n * @interface QuoteSaverDepositResponse\n */\nexport interface QuoteSaverDepositResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'inbound_address': string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'outbound_delay_blocks'?: number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'outbound_delay_seconds'?: number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteSaverDepositResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'slippage_bps': number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteSaverDepositResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the deposit\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'memo': string;\n /**\n * same as expected_amount_deposit, to be deprecated in favour of expected_amount_deposit\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'expected_amount_out'?: string;\n /**\n * the amount of the target asset the user can expect to deposit after fees\n * @type {string}\n * @memberof QuoteSaverDepositResponse\n */\n 'expected_amount_deposit': string;\n}\n/**\n * \n * @export\n * @interface QuoteSaverWithdrawResponse\n */\nexport interface QuoteSaverWithdrawResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'inbound_address': string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'slippage_bps': number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'streaming_slippage_bps'?: number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the withdraw, the client can use this OR send the dust amount\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'memo': string;\n /**\n * the dust amount of the target asset the user should send to initialize the withdraw, the client can send this OR provide the memo\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'dust_amount': string;\n /**\n * the amount of the target asset the user can expect to withdraw after fees in 1e8 decimals\n * @type {string}\n * @memberof QuoteSaverWithdrawResponse\n */\n 'expected_amount_out': string;\n}\n/**\n * \n * @export\n * @interface QuoteSwapResponse\n */\nexport interface QuoteSwapResponse {\n /**\n * the inbound address for the transaction on the source chain\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'inbound_address'?: string;\n /**\n * the approximate number of source chain blocks required before processing\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'inbound_confirmation_blocks'?: number;\n /**\n * the approximate seconds for block confirmations required before processing\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'inbound_confirmation_seconds'?: number;\n /**\n * the number of thorchain blocks the outbound will be delayed\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'outbound_delay_blocks': number;\n /**\n * the approximate seconds for the outbound delay before it will be sent\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'outbound_delay_seconds': number;\n /**\n * \n * @type {QuoteFees}\n * @memberof QuoteSwapResponse\n */\n 'fees': QuoteFees;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'slippage_bps': number;\n /**\n * Deprecated - migrate to fees object.\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'streaming_slippage_bps': number;\n /**\n * the EVM chain router contract address\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'router'?: string;\n /**\n * expiration timestamp in unix seconds\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'expiry': number;\n /**\n * static warning message\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'warning': string;\n /**\n * chain specific quote notes\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'notes': string;\n /**\n * Defines the minimum transaction size for the chain in base units (sats, wei, uatom). Transctions with asset amounts lower than the dust_threshold are ignored.\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'dust_threshold'?: string;\n /**\n * The recommended minimum inbound amount for this transaction type & inbound asset. Sending less than this amount could result in failed refunds.\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'recommended_min_amount_in'?: string;\n /**\n * generated memo for the swap\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'memo'?: string;\n /**\n * the amount of the target asset the user can expect to receive after fees\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'expected_amount_out': string;\n /**\n * Deprecated - expected_amount_out is streaming amount if interval provided.\n * @type {string}\n * @memberof QuoteSwapResponse\n */\n 'expected_amount_out_streaming': string;\n /**\n * the maxiumum amount of trades a streaming swap can do for a trade\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'max_streaming_quantity'?: number;\n /**\n * the number of blocks the streaming swap will execute over\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'streaming_swap_blocks'?: number;\n /**\n * approx the number of seconds the streaming swap will execute over\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'streaming_swap_seconds'?: number;\n /**\n * total number of seconds a swap is expected to take (inbound conf + streaming swap + outbound delay)\n * @type {number}\n * @memberof QuoteSwapResponse\n */\n 'total_swap_seconds'?: number;\n}\n/**\n * \n * @export\n * @interface Saver\n */\nexport interface Saver {\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset_address': string;\n /**\n * \n * @type {number}\n * @memberof Saver\n */\n 'last_add_height'?: number;\n /**\n * \n * @type {number}\n * @memberof Saver\n */\n 'last_withdraw_height'?: number;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'units': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset_deposit_value': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'asset_redeem_value': string;\n /**\n * \n * @type {string}\n * @memberof Saver\n */\n 'growth_pct': string;\n}\n/**\n * \n * @export\n * @interface SaversResponse\n */\nexport interface SaversResponse extends Array<Saver> {\n}\n/**\n * \n * @export\n * @interface ScheduledResponse\n */\nexport interface ScheduledResponse extends Array<TxOutItem> {\n}\n/**\n * \n * @export\n * @interface StreamingSwap\n */\nexport interface StreamingSwap {\n /**\n * the hash of a transaction\n * @type {string}\n * @memberof StreamingSwap\n */\n 'tx_id'?: string;\n /**\n * how often each swap is made, in blocks\n * @type {number}\n * @memberof StreamingSwap\n */\n 'interval'?: number;\n /**\n * the total number of swaps in a streaming swaps\n * @type {number}\n * @memberof StreamingSwap\n */\n 'quantity'?: number;\n /**\n * the amount of swap attempts so far\n * @type {number}\n * @memberof StreamingSwap\n */\n 'count'?: number;\n /**\n * the block height of the latest swap\n * @type {number}\n * @memberof StreamingSwap\n */\n 'last_height'?: number;\n /**\n * the total number of tokens the swapper wants to receive of the output asset\n * @type {string}\n * @memberof StreamingSwap\n */\n 'trade_target'?: string;\n /**\n * the number of input tokens the swapper has deposited\n * @type {string}\n * @memberof StreamingSwap\n */\n 'deposit'?: string;\n /**\n * the amount of input tokens that have been swapped so far\n * @type {string}\n * @memberof StreamingSwap\n */\n 'in'?: string;\n /**\n * the amount of output tokens that have been swapped so far\n * @type {string}\n * @memberof StreamingSwap\n */\n 'out'?: string;\n /**\n * the list of swap indexes that failed\n * @type {Array<number>}\n * @memberof StreamingSwap\n */\n 'failed_swaps'?: Array<number>;\n /**\n * the list of reasons that sub-swaps have failed\n * @type {Array<string>}\n * @memberof StreamingSwap\n */\n 'failed_swap_reasons'?: Array<string>;\n}\n/**\n * \n * @export\n * @interface StreamingSwapsResponse\n */\nexport interface StreamingSwapsResponse extends Array<StreamingSwap> {\n}\n/**\n * \n * @export\n * @interface SwapQueueResponse\n */\nexport interface SwapQueueResponse extends Array<MsgSwap> {\n}\n/**\n * \n * @export\n * @interface Thorname\n */\nexport interface Thorname {\n /**\n * \n * @type {string}\n * @memberof Thorname\n */\n 'name'?: string;\n /**\n * \n * @type {number}\n * @memberof Thorname\n */\n 'expire_block_height'?: number;\n /**\n * \n * @type {string}\n * @memberof Thorname\n */\n 'owner'?: string;\n /**\n * \n * @type {string}\n * @memberof Thorname\n */\n 'preferred_asset': string;\n /**\n * Amount of RUNE currently accrued by this thorname in affiliate fees waiting to be swapped to preferred asset.\n * @type {string}\n * @memberof Thorname\n */\n 'affiliate_collector_rune'?: string;\n /**\n * \n * @type {Array<ThornameAlias>}\n * @memberof Thorname\n */\n 'aliases': Array<ThornameAlias>;\n}\n/**\n * \n * @export\n * @interface ThornameAlias\n */\nexport interface ThornameAlias {\n /**\n * \n * @type {string}\n * @memberof ThornameAlias\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof ThornameAlias\n */\n 'address'?: string;\n}\n/**\n * \n * @export\n * @interface TssKeysignMetric\n */\nexport interface TssKeysignMetric {\n /**\n * \n * @type {string}\n * @memberof TssKeysignMetric\n */\n 'tx_id'?: string;\n /**\n * \n * @type {Array<TssMetric>}\n * @memberof TssKeysignMetric\n */\n 'node_tss_times': Array<TssMetric>;\n}\n/**\n * \n * @export\n * @interface TssMetric\n */\nexport interface TssMetric {\n /**\n * \n * @type {string}\n * @memberof TssMetric\n */\n 'address'?: string;\n /**\n * \n * @type {number}\n * @memberof TssMetric\n */\n 'tss_time'?: number;\n}\n/**\n * \n * @export\n * @interface Tx\n */\nexport interface Tx {\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'id'?: string;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'from_address'?: string;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'to_address'?: string;\n /**\n * \n * @type {Array<Coin>}\n * @memberof Tx\n */\n 'coins': Array<Coin>;\n /**\n * \n * @type {Array<Coin>}\n * @memberof Tx\n */\n 'gas': Array<Coin>;\n /**\n * \n * @type {string}\n * @memberof Tx\n */\n 'memo'?: string;\n}\n/**\n * \n * @export\n * @interface TxDetailsResponse\n */\nexport interface TxDetailsResponse {\n /**\n * \n * @type {string}\n * @memberof TxDetailsResponse\n */\n 'tx_id'?: string;\n /**\n * \n * @type {ObservedTx}\n * @memberof TxDetailsResponse\n */\n 'tx': ObservedTx;\n /**\n * \n * @type {Array<ObservedTx>}\n * @memberof TxDetailsResponse\n */\n 'txs': Array<ObservedTx>;\n /**\n * \n * @type {Array<TxOutItem>}\n * @memberof TxDetailsResponse\n */\n 'actions': Array<TxOutItem>;\n /**\n * \n * @type {Array<Tx>}\n * @memberof TxDetailsResponse\n */\n 'out_txs': Array<Tx>;\n /**\n * the thorchain height at which the inbound reached consensus\n * @type {number}\n * @memberof TxDetailsResponse\n */\n 'consensus_height'?: number;\n /**\n * the thorchain height at which the outbound was finalised\n * @type {number}\n * @memberof TxDetailsResponse\n */\n 'finalised_height'?: number;\n /**\n * \n * @type {boolean}\n * @memberof TxDetailsResponse\n */\n 'updated_vault'?: boolean;\n /**\n * \n * @type {boolean}\n * @memberof TxDetailsResponse\n */\n 'reverted'?: boolean;\n /**\n * the thorchain height for which the outbound was scheduled\n * @type {number}\n * @memberof TxDetailsResponse\n */\n 'outbound_height'?: number;\n}\n/**\n * \n * @export\n * @interface TxOutItem\n */\nexport interface TxOutItem {\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'chain': string;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'to_address': string;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'vault_pub_key'?: string;\n /**\n * \n * @type {Coin}\n * @memberof TxOutItem\n */\n 'coin': Coin;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'memo'?: string;\n /**\n * \n * @type {Array<Coin>}\n * @memberof TxOutItem\n */\n 'max_gas': Array<Coin>;\n /**\n * \n * @type {number}\n * @memberof TxOutItem\n */\n 'gas_rate'?: number;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'in_hash'?: string;\n /**\n * \n * @type {string}\n * @memberof TxOutItem\n */\n 'out_hash'?: string;\n /**\n * \n * @type {number}\n * @memberof TxOutItem\n */\n 'height': number;\n}\n/**\n * \n * @export\n * @interface TxResponse\n */\nexport interface TxResponse {\n /**\n * \n * @type {ObservedTx}\n * @memberof TxResponse\n */\n 'observed_tx'?: ObservedTx;\n /**\n * the thorchain height at which the inbound reached consensus\n * @type {number}\n * @memberof TxResponse\n */\n 'consensus_height'?: number;\n /**\n * the thorchain height at which the outbound was finalised\n * @type {number}\n * @memberof TxResponse\n */\n 'finalised_height'?: number;\n /**\n * the thorchain height for which the outbound was scheduled\n * @type {number}\n * @memberof TxResponse\n */\n 'outbound_height'?: number;\n /**\n * \n * @type {TssKeysignMetric}\n * @memberof TxResponse\n */\n 'keysign_metric'?: TssKeysignMetric;\n}\n/**\n * \n * @export\n * @interface TxSignersResponse\n */\nexport interface TxSignersResponse {\n /**\n * \n * @type {string}\n * @memberof TxSignersResponse\n */\n 'tx_id'?: string;\n /**\n * \n * @type {ObservedTx}\n * @memberof TxSignersResponse\n */\n 'tx': ObservedTx;\n /**\n * \n * @type {Array<ObservedTx>}\n * @memberof TxSignersResponse\n */\n 'txs': Array<ObservedTx>;\n /**\n * \n * @type {Array<TxOutItem>}\n * @memberof TxSignersResponse\n */\n 'actions': Array<TxOutItem>;\n /**\n * \n * @type {Array<Tx>}\n * @memberof TxSignersResponse\n */\n 'out_txs': Array<Tx>;\n /**\n * the thorchain height at which the inbound reached consensus\n * @type {number}\n * @memberof TxSignersResponse\n */\n 'consensus_height'?: number;\n /**\n * the thorchain height at which the outbound was finalised\n * @type {number}\n * @memberof TxSignersResponse\n */\n 'finalised_height'?: number;\n /**\n * \n * @type {boolean}\n * @memberof TxSignersResponse\n */\n 'updated_vault'?: boolean;\n /**\n * \n * @type {boolean}\n * @memberof TxSignersResponse\n */\n 'reverted'?: boolean;\n /**\n * the thorchain height for which the outbound was scheduled\n * @type {number}\n * @memberof TxSignersResponse\n */\n 'outbound_height'?: number;\n}\n/**\n * \n * @export\n * @interface TxStagesResponse\n */\nexport interface TxStagesResponse {\n /**\n * \n * @type {TxStagesResponseInboundObserved}\n * @memberof TxStagesResponse\n */\n 'inbound_observed': TxStagesResponseInboundObserved;\n /**\n * \n * @type {TxStagesResponseInboundConfirmationCounted}\n * @memberof TxStagesResponse\n */\n 'inbound_confirmation_counted'?: TxStagesResponseInboundConfirmationCounted;\n /**\n * \n * @type {TxStagesResponseInboundFinalised}\n * @memberof TxStagesResponse\n */\n 'inbound_finalised'?: TxStagesResponseInboundFinalised;\n /**\n * \n * @type {TxStagesResponseSwapStatus}\n * @memberof TxStagesResponse\n */\n 'swap_status'?: TxStagesResponseSwapStatus;\n /**\n * \n * @type {TxStagesResponseSwapFinalised}\n * @memberof TxStagesResponse\n */\n 'swap_finalised'?: TxStagesResponseSwapFinalised;\n /**\n * \n * @type {TxStagesResponseOutboundDelay}\n * @memberof TxStagesResponse\n */\n 'outbound_delay'?: TxStagesResponseOutboundDelay;\n /**\n * \n * @type {TxStagesResponseOutboundSigned}\n * @memberof TxStagesResponse\n */\n 'outbound_signed'?: TxStagesResponseOutboundSigned;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseInboundConfirmationCounted\n */\nexport interface TxStagesResponseInboundConfirmationCounted {\n /**\n * the THORChain block height when confirmation counting began\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'counting_start_height'?: number;\n /**\n * the external source chain for which confirmation counting takes place\n * @type {string}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'chain'?: string;\n /**\n * the block height on the external source chain when the transaction was observed\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'external_observed_height'?: number;\n /**\n * the block height on the external source chain when confirmation counting will be complete\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'external_confirmation_delay_height'?: number;\n /**\n * the estimated remaining seconds before confirmation counting completes\n * @type {number}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'remaining_confirmation_seconds'?: number;\n /**\n * returns true if no transaction confirmation counting remains to be done\n * @type {boolean}\n * @memberof TxStagesResponseInboundConfirmationCounted\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseInboundFinalised\n */\nexport interface TxStagesResponseInboundFinalised {\n /**\n * returns true if the inbound transaction has been finalised (THORChain agreeing it exists)\n * @type {boolean}\n * @memberof TxStagesResponseInboundFinalised\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseInboundObserved\n */\nexport interface TxStagesResponseInboundObserved {\n /**\n * returns true if any nodes have observed the transaction (to be deprecated in favour of counts)\n * @type {boolean}\n * @memberof TxStagesResponseInboundObserved\n */\n 'started'?: boolean;\n /**\n * number of signers for pre-confirmation-counting observations\n * @type {number}\n * @memberof TxStagesResponseInboundObserved\n */\n 'pre_confirmation_count'?: number;\n /**\n * number of signers for final observations, after any confirmation counting complete\n * @type {number}\n * @memberof TxStagesResponseInboundObserved\n */\n 'final_count'?: number;\n /**\n * returns true if no transaction observation remains to be done\n * @type {boolean}\n * @memberof TxStagesResponseInboundObserved\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseOutboundDelay\n */\nexport interface TxStagesResponseOutboundDelay {\n /**\n * the number of remaining THORChain blocks the outbound will be delayed\n * @type {number}\n * @memberof TxStagesResponseOutboundDelay\n */\n 'remaining_delay_blocks'?: number;\n /**\n * the estimated remaining seconds of the outbound delay before it will be sent\n * @type {number}\n * @memberof TxStagesResponseOutboundDelay\n */\n 'remaining_delay_seconds'?: number;\n /**\n * returns true if no transaction outbound delay remains\n * @type {boolean}\n * @memberof TxStagesResponseOutboundDelay\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseOutboundSigned\n */\nexport interface TxStagesResponseOutboundSigned {\n /**\n * THORChain height for which the external outbound is scheduled\n * @type {number}\n * @memberof TxStagesResponseOutboundSigned\n */\n 'scheduled_outbound_height'?: number;\n /**\n * THORChain blocks since the scheduled outbound height\n * @type {number}\n * @memberof TxStagesResponseOutboundSigned\n */\n 'blocks_since_scheduled'?: number;\n /**\n * returns true if an external transaction has been signed and broadcast (and observed in its mempool)\n * @type {boolean}\n * @memberof TxStagesResponseOutboundSigned\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseSwapFinalised\n */\nexport interface TxStagesResponseSwapFinalised {\n /**\n * (to be deprecated in favor of swap_status) returns true if an inbound transaction\\'s swap (successful or refunded) is no longer pending\n * @type {boolean}\n * @memberof TxStagesResponseSwapFinalised\n */\n 'completed': boolean;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseSwapStatus\n */\nexport interface TxStagesResponseSwapStatus {\n /**\n * true when awaiting a swap\n * @type {boolean}\n * @memberof TxStagesResponseSwapStatus\n */\n 'pending': boolean;\n /**\n * \n * @type {TxStagesResponseSwapStatusStreaming}\n * @memberof TxStagesResponseSwapStatus\n */\n 'streaming'?: TxStagesResponseSwapStatusStreaming;\n}\n/**\n * \n * @export\n * @interface TxStagesResponseSwapStatusStreaming\n */\nexport interface TxStagesResponseSwapStatusStreaming {\n /**\n * how often each swap is made, in blocks\n * @type {number}\n * @memberof TxStagesResponseSwapStatusStreaming\n */\n 'interval': number;\n /**\n * the total number of swaps in a streaming swaps\n * @type {number}\n * @memberof TxStagesResponseSwapStatusStreaming\n */\n 'quantity': number;\n /**\n * the amount of swap attempts so far\n * @type {number}\n * @memberof TxStagesResponseSwapStatusStreaming\n */\n 'count': number;\n}\n/**\n * \n * @export\n * @interface TxStatusResponse\n */\nexport interface TxStatusResponse {\n /**\n * \n * @type {Tx}\n * @memberof TxStatusResponse\n */\n 'tx'?: Tx;\n /**\n * \n * @type {Array<TxStatusResponsePlannedOutTxsInner>}\n * @memberof TxStatusResponse\n */\n 'planned_out_txs'?: Array<TxStatusResponsePlannedOutTxsInner>;\n /**\n * \n * @type {Array<Tx>}\n * @memberof TxStatusResponse\n */\n 'out_txs'?: Array<Tx>;\n /**\n * \n * @type {TxStagesResponse}\n * @memberof TxStatusResponse\n */\n 'stages': TxStagesResponse;\n}\n/**\n * \n * @export\n * @interface TxStatusResponsePlannedOutTxsInner\n */\nexport interface TxStatusResponsePlannedOutTxsInner {\n /**\n * \n * @type {string}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'chain': string;\n /**\n * \n * @type {string}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'to_address': string;\n /**\n * \n * @type {Coin}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'coin': Coin;\n /**\n * returns true if the planned transaction has a refund memo\n * @type {boolean}\n * @memberof TxStatusResponsePlannedOutTxsInner\n */\n 'refund': boolean;\n}\n/**\n * \n * @export\n * @interface Vault\n */\nexport interface Vault {\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'block_height'?: number;\n /**\n * \n * @type {string}\n * @memberof Vault\n */\n 'pub_key'?: string;\n /**\n * \n * @type {Array<Coin>}\n * @memberof Vault\n */\n 'coins': Array<Coin>;\n /**\n * \n * @type {string}\n * @memberof Vault\n */\n 'type'?: VaultTypeEnum;\n /**\n * \n * @type {string}\n * @memberof Vault\n */\n 'status': string;\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'status_since'?: number;\n /**\n * the list of node public keys which are members of the vault\n * @type {Array<string>}\n * @memberof Vault\n */\n 'membership'?: Array<string>;\n /**\n * \n * @type {Array<string>}\n * @memberof Vault\n */\n 'chains'?: Array<string>;\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'inbound_tx_count'?: number;\n /**\n * \n * @type {number}\n * @memberof Vault\n */\n 'outbound_tx_count'?: number;\n /**\n * \n * @type {Array<number>}\n * @memberof Vault\n */\n 'pending_tx_block_heights'?: Array<number>;\n /**\n * \n * @type {Array<VaultRouter>}\n * @memberof Vault\n */\n 'routers': Array<VaultRouter>;\n /**\n * \n * @type {Array<VaultAddress>}\n * @memberof Vault\n */\n 'addresses': Array<VaultAddress>;\n /**\n * \n * @type {Array<string>}\n * @memberof Vault\n */\n 'frozen'?: Array<string>;\n}\n\nexport const VaultTypeEnum = {\n AsgardVault: 'AsgardVault',\n YggdrasilVault: 'YggdrasilVault'\n} as const;\n\nexport type VaultTypeEnum = typeof VaultTypeEnum[keyof typeof VaultTypeEnum];\n\n/**\n * \n * @export\n * @interface VaultAddress\n */\nexport interface VaultAddress {\n /**\n * \n * @type {string}\n * @memberof VaultAddress\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof VaultAddress\n */\n 'address'?: string;\n}\n/**\n * \n * @export\n * @interface VaultInfo\n */\nexport interface VaultInfo {\n /**\n * \n * @type {string}\n * @memberof VaultInfo\n */\n 'pub_key': string;\n /**\n * \n * @type {Array<VaultRouter>}\n * @memberof VaultInfo\n */\n 'routers': Array<VaultRouter>;\n}\n/**\n * \n * @export\n * @interface VaultPubkeysResponse\n */\nexport interface VaultPubkeysResponse {\n /**\n * \n * @type {Array<VaultInfo>}\n * @memberof VaultPubkeysResponse\n */\n 'asgard': Array<VaultInfo>;\n /**\n * \n * @type {Array<VaultInfo>}\n * @memberof VaultPubkeysResponse\n */\n 'yggdrasil': Array<VaultInfo>;\n /**\n * \n * @type {Array<VaultInfo>}\n * @memberof VaultPubkeysResponse\n */\n 'inactive': Array<VaultInfo>;\n}\n/**\n * \n * @export\n * @interface VaultRouter\n */\nexport interface VaultRouter {\n /**\n * \n * @type {string}\n * @memberof VaultRouter\n */\n 'chain'?: string;\n /**\n * \n * @type {string}\n * @memberof VaultRouter\n */\n 'router'?: string;\n}\n/**\n * \n * @export\n * @interface VaultsResponse\n */\nexport interface VaultsResponse extends Array<Vault> {\n}\n/**\n * \n * @export\n * @interface VersionResponse\n */\nexport interface VersionResponse {\n /**\n * current version\n * @type {string}\n * @memberof VersionResponse\n */\n 'current': string;\n /**\n * next version (minimum version for a node to become Active)\n * @type {string}\n * @memberof VersionResponse\n */\n 'next': string;\n /**\n * height at which the minimum joining version last changed\n * @type {number}\n * @memberof VersionResponse\n */\n 'next_since_height'?: number;\n /**\n * querier version\n * @type {string}\n * @memberof VersionResponse\n */\n 'querier': string;\n}\n\n/**\n * BlockApi - axios parameter creator\n * @export\n */\nexport const BlockApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns verbose details of the block.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n block: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/block`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * BlockApi - functional programming interface\n * @export\n */\nexport const BlockApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = BlockApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns verbose details of the block.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async block(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BlockResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.block(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * BlockApi - factory interface\n * @export\n */\nexport const BlockApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = BlockApiFp(configuration)\n return {\n /**\n * Returns verbose details of the block.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n block(height?: number, options?: any): AxiosPromise<BlockResponse> {\n return localVarFp.block(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * BlockApi - object-oriented interface\n * @export\n * @class BlockApi\n * @extends {BaseAPI}\n */\nexport class BlockApi extends BaseAPI {\n /**\n * Returns verbose details of the block.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof BlockApi\n */\n public block(height?: number, options?: AxiosRequestConfig) {\n return BlockApiFp(this.configuration).block(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * BorrowersApi - axios parameter creator\n * @export\n */\nexport const BorrowersApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrower: async (asset: string, address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('borrower', 'asset', asset)\n // verify required parameter 'address' is not null or undefined\n assertParamExists('borrower', 'address', address)\n const localVarPath = `/thorchain/pool/{asset}/borrower/{address}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)))\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrowers: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('borrowers', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}/borrowers`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * BorrowersApi - functional programming interface\n * @export\n */\nexport const BorrowersApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = BorrowersApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async borrower(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Borrower>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.borrower(asset, address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async borrowers(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BorrowersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.borrowers(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * BorrowersApi - factory interface\n * @export\n */\nexport const BorrowersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = BorrowersApiFp(configuration)\n return {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrower(asset: string, address: string, height?: number, options?: any): AxiosPromise<Borrower> {\n return localVarFp.borrower(asset, address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n borrowers(asset: string, height?: number, options?: any): AxiosPromise<BorrowersResponse> {\n return localVarFp.borrowers(asset, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * BorrowersApi - object-oriented interface\n * @export\n * @class BorrowersApi\n * @extends {BaseAPI}\n */\nexport class BorrowersApi extends BaseAPI {\n /**\n * Returns the borrower position given the pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof BorrowersApi\n */\n public borrower(asset: string, address: string, height?: number, options?: AxiosRequestConfig) {\n return BorrowersApiFp(this.configuration).borrower(asset, address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all borrowers for the given pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof BorrowersApi\n */\n public borrowers(asset: string, height?: number, options?: AxiosRequestConfig) {\n return BorrowersApiFp(this.configuration).borrowers(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * HealthApi - axios parameter creator\n * @export\n */\nexport const HealthApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ping: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/ping`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * HealthApi - functional programming interface\n * @export\n */\nexport const HealthApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = HealthApiAxiosParamCreator(configuration)\n return {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async ping(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Ping>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.ping(options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * HealthApi - factory interface\n * @export\n */\nexport const HealthApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = HealthApiFp(configuration)\n return {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ping(options?: any): AxiosPromise<Ping> {\n return localVarFp.ping(options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * HealthApi - object-oriented interface\n * @export\n * @class HealthApi\n * @extends {BaseAPI}\n */\nexport class HealthApi extends BaseAPI {\n /**\n * \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof HealthApi\n */\n public ping(options?: AxiosRequestConfig) {\n return HealthApiFp(this.configuration).ping(options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * InvariantsApi - axios parameter creator\n * @export\n */\nexport const InvariantsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariant: async (invariant: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'invariant' is not null or undefined\n assertParamExists('invariant', 'invariant', invariant)\n const localVarPath = `/thorchain/invariant/{invariant}`\n .replace(`{${\"invariant\"}}`, encodeURIComponent(String(invariant)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariants: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/invariants`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * InvariantsApi - functional programming interface\n * @export\n */\nexport const InvariantsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = InvariantsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async invariant(invariant: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InvariantResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.invariant(invariant, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async invariants(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InvariantsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.invariants(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * InvariantsApi - factory interface\n * @export\n */\nexport const InvariantsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = InvariantsApiFp(configuration)\n return {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariant(invariant: string, height?: number, options?: any): AxiosPromise<InvariantResponse> {\n return localVarFp.invariant(invariant, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n invariants(height?: number, options?: any): AxiosPromise<InvariantsResponse> {\n return localVarFp.invariants(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * InvariantsApi - object-oriented interface\n * @export\n * @class InvariantsApi\n * @extends {BaseAPI}\n */\nexport class InvariantsApi extends BaseAPI {\n /**\n * Returns result of running the given invariant.\n * @param {string} invariant \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof InvariantsApi\n */\n public invariant(invariant: string, height?: number, options?: AxiosRequestConfig) {\n return InvariantsApiFp(this.configuration).invariant(invariant, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a list of available invariants.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof InvariantsApi\n */\n public invariants(height?: number, options?: AxiosRequestConfig) {\n return InvariantsApiFp(this.configuration).invariants(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * LiquidityProvidersApi - axios parameter creator\n * @export\n */\nexport const LiquidityProvidersApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProvider: async (asset: string, address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('liquidityProvider', 'asset', asset)\n // verify required parameter 'address' is not null or undefined\n assertParamExists('liquidityProvider', 'address', address)\n const localVarPath = `/thorchain/pool/{asset}/liquidity_provider/{address}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)))\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProviders: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('liquidityProviders', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}/liquidity_providers`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * LiquidityProvidersApi - functional programming interface\n * @export\n */\nexport const LiquidityProvidersApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = LiquidityProvidersApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async liquidityProvider(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LiquidityProvider>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.liquidityProvider(asset, address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async liquidityProviders(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LiquidityProvidersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.liquidityProviders(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * LiquidityProvidersApi - factory interface\n * @export\n */\nexport const LiquidityProvidersApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = LiquidityProvidersApiFp(configuration)\n return {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProvider(asset: string, address: string, height?: number, options?: any): AxiosPromise<LiquidityProvider> {\n return localVarFp.liquidityProvider(asset, address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n liquidityProviders(asset: string, height?: number, options?: any): AxiosPromise<LiquidityProvidersResponse> {\n return localVarFp.liquidityProviders(asset, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * LiquidityProvidersApi - object-oriented interface\n * @export\n * @class LiquidityProvidersApi\n * @extends {BaseAPI}\n */\nexport class LiquidityProvidersApi extends BaseAPI {\n /**\n * Returns the liquidity provider information for an address and asset.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof LiquidityProvidersApi\n */\n public liquidityProvider(asset: string, address: string, height?: number, options?: AxiosRequestConfig) {\n return LiquidityProvidersApiFp(this.configuration).liquidityProvider(asset, address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all liquidity provider information for an asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof LiquidityProvidersApi\n */\n public liquidityProviders(asset: string, height?: number, options?: AxiosRequestConfig) {\n return LiquidityProvidersApiFp(this.configuration).liquidityProviders(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * MimirApi - axios parameter creator\n * @export\n */\nexport const MimirApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimir: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/mimir`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirAdmin: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/mimir/admin`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirKey: async (key: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'key' is not null or undefined\n assertParamExists('mimirKey', 'key', key)\n const localVarPath = `/thorchain/mimir/key/{key}`\n .replace(`{${\"key\"}}`, encodeURIComponent(String(key)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNode: async (address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'address' is not null or undefined\n assertParamExists('mimirNode', 'address', address)\n const localVarPath = `/thorchain/mimir/node/{address}`\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNodes: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/mimir/nodes_all`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * MimirApi - functional programming interface\n * @export\n */\nexport const MimirApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = MimirApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimir(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimir(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirAdmin(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirAdmin(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirKey(key: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<number>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirKey(key, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirNode(address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirNode(address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async mimirNodes(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MimirNodesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.mimirNodes(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * MimirApi - factory interface\n * @export\n */\nexport const MimirApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = MimirApiFp(configuration)\n return {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimir(height?: number, options?: any): AxiosPromise<MimirResponse> {\n return localVarFp.mimir(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirAdmin(height?: number, options?: any): AxiosPromise<MimirResponse> {\n return localVarFp.mimirAdmin(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirKey(key: string, height?: number, options?: any): AxiosPromise<number> {\n return localVarFp.mimirKey(key, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNode(address: string, height?: number, options?: any): AxiosPromise<MimirResponse> {\n return localVarFp.mimirNode(address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n mimirNodes(height?: number, options?: any): AxiosPromise<MimirNodesResponse> {\n return localVarFp.mimirNodes(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * MimirApi - object-oriented interface\n * @export\n * @class MimirApi\n * @extends {BaseAPI}\n */\nexport class MimirApi extends BaseAPI {\n /**\n * Returns current active mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimir(height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimir(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current admin mimir configuration.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirAdmin(height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirAdmin(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current active mimir configuration for the provided key.\n * @param {string} key the mimir key to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirKey(key: string, height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirKey(key, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current node mimir configuration for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirNode(address: string, height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirNode(address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current node mimir votes.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof MimirApi\n */\n public mimirNodes(height?: number, options?: AxiosRequestConfig) {\n return MimirApiFp(this.configuration).mimirNodes(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * NetworkApi - axios parameter creator\n * @export\n */\nexport const NetworkApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ban: async (address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'address' is not null or undefined\n assertParamExists('ban', 'address', address)\n const localVarPath = `/thorchain/ban/{address}`\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n constants: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/constants`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n inboundAddresses: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/inbound_addresses`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblock: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/lastblock`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblockChain: async (chain: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'chain' is not null or undefined\n assertParamExists('lastblockChain', 'chain', chain)\n const localVarPath = `/thorchain/lastblock/{chain}`\n .replace(`{${\"chain\"}}`, encodeURIComponent(String(chain)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n network: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/network`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ragnarok: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/ragnarok`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n version: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/version`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * NetworkApi - functional programming interface\n * @export\n */\nexport const NetworkApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = NetworkApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async ban(address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.ban(address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async constants(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConstantsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.constants(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async inboundAddresses(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InboundAddressesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.inboundAddresses(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async lastblock(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LastBlockResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.lastblock(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async lastblockChain(chain: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LastBlockResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.lastblockChain(chain, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async network(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NetworkResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.network(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async ragnarok(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.ragnarok(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async version(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VersionResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.version(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * NetworkApi - factory interface\n * @export\n */\nexport const NetworkApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = NetworkApiFp(configuration)\n return {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ban(address: string, height?: number, options?: any): AxiosPromise<BanResponse> {\n return localVarFp.ban(address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n constants(height?: number, options?: any): AxiosPromise<ConstantsResponse> {\n return localVarFp.constants(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n inboundAddresses(height?: number, options?: any): AxiosPromise<InboundAddressesResponse> {\n return localVarFp.inboundAddresses(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblock(height?: number, options?: any): AxiosPromise<LastBlockResponse> {\n return localVarFp.lastblock(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n lastblockChain(chain: string, height?: number, options?: any): AxiosPromise<LastBlockResponse> {\n return localVarFp.lastblockChain(chain, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n network(height?: number, options?: any): AxiosPromise<NetworkResponse> {\n return localVarFp.network(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n ragnarok(height?: number, options?: any): AxiosPromise<boolean> {\n return localVarFp.ragnarok(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n version(height?: number, options?: any): AxiosPromise<VersionResponse> {\n return localVarFp.version(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * NetworkApi - object-oriented interface\n * @export\n * @class NetworkApi\n * @extends {BaseAPI}\n */\nexport class NetworkApi extends BaseAPI {\n /**\n * Returns the ban status for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public ban(address: string, height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).ban(address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns constant configuration, can be overridden by mimir.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public constants(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).constants(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the set of asgard addresses that should be used for inbound transactions.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public inboundAddresses(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).inboundAddresses(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the last block information for all chains.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public lastblock(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).lastblock(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the last block information for the provided chain.\n * @param {string} chain \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public lastblockChain(chain: string, height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).lastblockChain(chain, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns network overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public network(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).network(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns a boolean indicating whether the chain is in ragnarok.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public ragnarok(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).ragnarok(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the network\\'s current THORNode version, the network\\'s next THORNode version, and the querier\\'s THORNode version.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NetworkApi\n */\n public version(height?: number, options?: AxiosRequestConfig) {\n return NetworkApiFp(this.configuration).version(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * NodesApi - axios parameter creator\n * @export\n */\nexport const NodesApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n node: async (address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'address' is not null or undefined\n assertParamExists('node', 'address', address)\n const localVarPath = `/thorchain/node/{address}`\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n nodes: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/nodes`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * NodesApi - functional programming interface\n * @export\n */\nexport const NodesApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = NodesApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async node(address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Node>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.node(address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async nodes(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NodesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.nodes(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * NodesApi - factory interface\n * @export\n */\nexport const NodesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = NodesApiFp(configuration)\n return {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n node(address: string, height?: number, options?: any): AxiosPromise<Node> {\n return localVarFp.node(address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n nodes(height?: number, options?: any): AxiosPromise<NodesResponse> {\n return localVarFp.nodes(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * NodesApi - object-oriented interface\n * @export\n * @class NodesApi\n * @extends {BaseAPI}\n */\nexport class NodesApi extends BaseAPI {\n /**\n * Returns node information for the provided node address.\n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NodesApi\n */\n public node(address: string, height?: number, options?: AxiosRequestConfig) {\n return NodesApiFp(this.configuration).node(address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns node information for all registered validators.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof NodesApi\n */\n public nodes(height?: number, options?: AxiosRequestConfig) {\n return NodesApiFp(this.configuration).nodes(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * POLApi - axios parameter creator\n * @export\n */\nexport const POLApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pol: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/pol`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * POLApi - functional programming interface\n * @export\n */\nexport const POLApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = POLApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async pol(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<POLResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.pol(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * POLApi - factory interface\n * @export\n */\nexport const POLApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = POLApiFp(configuration)\n return {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pol(height?: number, options?: any): AxiosPromise<POLResponse> {\n return localVarFp.pol(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * POLApi - object-oriented interface\n * @export\n * @class POLApi\n * @extends {BaseAPI}\n */\nexport class POLApi extends BaseAPI {\n /**\n * Returns protocol owned liquidity overview statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof POLApi\n */\n public pol(height?: number, options?: AxiosRequestConfig) {\n return POLApiFp(this.configuration).pol(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * PoolsApi - axios parameter creator\n * @export\n */\nexport const PoolsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpool: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('dpool', 'asset', asset)\n const localVarPath = `/thorchain/dpool/{asset}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpools: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/dpools`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pool: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('pool', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pools: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/pools`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * PoolsApi - functional programming interface\n * @export\n */\nexport const PoolsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = PoolsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async dpool(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DerivedPool>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.dpool(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async dpools(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DerivedPoolsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.dpools(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async pool(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Pool>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.pool(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async pools(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PoolsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.pools(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * PoolsApi - factory interface\n * @export\n */\nexport const PoolsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = PoolsApiFp(configuration)\n return {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpool(asset: string, height?: number, options?: any): AxiosPromise<DerivedPool> {\n return localVarFp.dpool(asset, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n dpools(height?: number, options?: any): AxiosPromise<DerivedPoolsResponse> {\n return localVarFp.dpools(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pool(asset: string, height?: number, options?: any): AxiosPromise<Pool> {\n return localVarFp.pool(asset, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n pools(height?: number, options?: any): AxiosPromise<PoolsResponse> {\n return localVarFp.pools(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * PoolsApi - object-oriented interface\n * @export\n * @class PoolsApi\n * @extends {BaseAPI}\n */\nexport class PoolsApi extends BaseAPI {\n /**\n * Returns the pool information for the provided derived asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public dpool(asset: string, height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).dpool(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the pool information for all derived assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public dpools(height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).dpools(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the pool information for the provided asset.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public pool(asset: string, height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).pool(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the pool information for all assets.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof PoolsApi\n */\n public pools(height?: number, options?: AxiosRequestConfig) {\n return PoolsApiFp(this.configuration).pools(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * QueueApi - axios parameter creator\n * @export\n */\nexport const QueueApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queue: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueOutbound: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue/outbound`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueScheduled: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue/scheduled`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueSwap: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/queue/swap`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * QueueApi - functional programming interface\n * @export\n */\nexport const QueueApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = QueueApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queue(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QueueResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queue(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queueOutbound(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OutboundResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queueOutbound(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queueScheduled(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ScheduledResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queueScheduled(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async queueSwap(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SwapQueueResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.queueSwap(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * QueueApi - factory interface\n * @export\n */\nexport const QueueApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = QueueApiFp(configuration)\n return {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queue(height?: number, options?: any): AxiosPromise<QueueResponse> {\n return localVarFp.queue(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueOutbound(height?: number, options?: any): AxiosPromise<OutboundResponse> {\n return localVarFp.queueOutbound(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueScheduled(height?: number, options?: any): AxiosPromise<ScheduledResponse> {\n return localVarFp.queueScheduled(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n queueSwap(height?: number, options?: any): AxiosPromise<SwapQueueResponse> {\n return localVarFp.queueSwap(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * QueueApi - object-oriented interface\n * @export\n * @class QueueApi\n * @extends {BaseAPI}\n */\nexport class QueueApi extends BaseAPI {\n /**\n * Returns queue statistics.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queue(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queue(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the outbound queue including estimated RUNE values.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queueOutbound(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queueOutbound(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the scheduled queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queueScheduled(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queueScheduled(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the swap queue.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QueueApi\n */\n public queueSwap(height?: number, options?: AxiosRequestConfig) {\n return QueueApiFp(this.configuration).queueSwap(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * QuoteApi - axios parameter creator\n * @export\n */\nexport const QuoteApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanclose: async (height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/loan/close`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (fromAsset !== undefined) {\n localVarQueryParameter['from_asset'] = fromAsset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n if (toAsset !== undefined) {\n localVarQueryParameter['to_asset'] = toAsset;\n }\n\n if (loanOwner !== undefined) {\n localVarQueryParameter['loan_owner'] = loanOwner;\n }\n\n if (minOut !== undefined) {\n localVarQueryParameter['min_out'] = minOut;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanopen: async (height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/loan/open`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (fromAsset !== undefined) {\n localVarQueryParameter['from_asset'] = fromAsset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n if (toAsset !== undefined) {\n localVarQueryParameter['to_asset'] = toAsset;\n }\n\n if (destination !== undefined) {\n localVarQueryParameter['destination'] = destination;\n }\n\n if (minOut !== undefined) {\n localVarQueryParameter['min_out'] = minOut;\n }\n\n if (affiliateBps !== undefined) {\n localVarQueryParameter['affiliate_bps'] = affiliateBps;\n }\n\n if (affiliate !== undefined) {\n localVarQueryParameter['affiliate'] = affiliate;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverdeposit: async (height?: number, asset?: string, amount?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/saver/deposit`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (asset !== undefined) {\n localVarQueryParameter['asset'] = asset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverwithdraw: async (height?: number, asset?: string, address?: string, withdrawBps?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/saver/withdraw`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (asset !== undefined) {\n localVarQueryParameter['asset'] = asset;\n }\n\n if (address !== undefined) {\n localVarQueryParameter['address'] = address;\n }\n\n if (withdrawBps !== undefined) {\n localVarQueryParameter['withdraw_bps'] = withdrawBps;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteswap: async (height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/quote/swap`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n if (fromAsset !== undefined) {\n localVarQueryParameter['from_asset'] = fromAsset;\n }\n\n if (toAsset !== undefined) {\n localVarQueryParameter['to_asset'] = toAsset;\n }\n\n if (amount !== undefined) {\n localVarQueryParameter['amount'] = amount;\n }\n\n if (destination !== undefined) {\n localVarQueryParameter['destination'] = destination;\n }\n\n if (streamingInterval !== undefined) {\n localVarQueryParameter['streaming_interval'] = streamingInterval;\n }\n\n if (streamingQuantity !== undefined) {\n localVarQueryParameter['streaming_quantity'] = streamingQuantity;\n }\n\n if (fromAddress !== undefined) {\n localVarQueryParameter['from_address'] = fromAddress;\n }\n\n if (toleranceBps !== undefined) {\n localVarQueryParameter['tolerance_bps'] = toleranceBps;\n }\n\n if (affiliateBps !== undefined) {\n localVarQueryParameter['affiliate_bps'] = affiliateBps;\n }\n\n if (affiliate !== undefined) {\n localVarQueryParameter['affiliate'] = affiliate;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * QuoteApi - functional programming interface\n * @export\n */\nexport const QuoteApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = QuoteApiAxiosParamCreator(configuration)\n return {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quoteloanclose(height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteLoanCloseResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quoteloanclose(height, fromAsset, amount, toAsset, loanOwner, minOut, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quoteloanopen(height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteLoanOpenResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quoteloanopen(height, fromAsset, amount, toAsset, destination, minOut, affiliateBps, affiliate, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quotesaverdeposit(height?: number, asset?: string, amount?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteSaverDepositResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quotesaverdeposit(height, asset, amount, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quotesaverwithdraw(height?: number, asset?: string, address?: string, withdrawBps?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteSaverWithdrawResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quotesaverwithdraw(height, asset, address, withdrawBps, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async quoteswap(height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QuoteSwapResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.quoteswap(height, fromAsset, toAsset, amount, destination, streamingInterval, streamingQuantity, fromAddress, toleranceBps, affiliateBps, affiliate, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * QuoteApi - factory interface\n * @export\n */\nexport const QuoteApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = QuoteApiFp(configuration)\n return {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanclose(height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options?: any): AxiosPromise<QuoteLoanCloseResponse> {\n return localVarFp.quoteloanclose(height, fromAsset, amount, toAsset, loanOwner, minOut, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteloanopen(height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options?: any): AxiosPromise<QuoteLoanOpenResponse> {\n return localVarFp.quoteloanopen(height, fromAsset, amount, toAsset, destination, minOut, affiliateBps, affiliate, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverdeposit(height?: number, asset?: string, amount?: number, options?: any): AxiosPromise<QuoteSaverDepositResponse> {\n return localVarFp.quotesaverdeposit(height, asset, amount, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quotesaverwithdraw(height?: number, asset?: string, address?: string, withdrawBps?: number, options?: any): AxiosPromise<QuoteSaverWithdrawResponse> {\n return localVarFp.quotesaverwithdraw(height, asset, address, withdrawBps, options).then((request) => request(axios, basePath));\n },\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n quoteswap(height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options?: any): AxiosPromise<QuoteSwapResponse> {\n return localVarFp.quoteswap(height, fromAsset, toAsset, amount, destination, streamingInterval, streamingQuantity, fromAddress, toleranceBps, affiliateBps, affiliate, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * QuoteApi - object-oriented interface\n * @export\n * @class QuoteApi\n * @extends {BaseAPI}\n */\nexport class QuoteApi extends BaseAPI {\n /**\n * Provide a quote estimate for the provided loan close.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the asset used to repay the loan\n * @param {number} [amount] the asset amount in 1e8 decimals\n * @param {string} [toAsset] the collateral asset of the loan\n * @param {string} [loanOwner] the owner of the loan collateral\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quoteloanclose(height?: number, fromAsset?: string, amount?: number, toAsset?: string, loanOwner?: string, minOut?: string, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quoteloanclose(height, fromAsset, amount, toAsset, loanOwner, minOut, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided loan open.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the collateral asset\n * @param {number} [amount] the collateral asset amount in 1e8 decimals\n * @param {string} [toAsset] the target asset to receive (loan denominated in TOR regardless)\n * @param {string} [destination] the destination address, required to generate memo\n * @param {string} [minOut] the minimum amount of the target asset to accept\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quoteloanopen(height?: number, fromAsset?: string, amount?: number, toAsset?: string, destination?: string, minOut?: string, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quoteloanopen(height, fromAsset, amount, toAsset, destination, minOut, affiliateBps, affiliate, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided saver deposit.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to deposit\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quotesaverdeposit(height?: number, asset?: string, amount?: number, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quotesaverdeposit(height, asset, amount, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided saver withdraw.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [asset] the asset to withdraw\n * @param {string} [address] the address for the position\n * @param {number} [withdrawBps] the basis points of the existing position to withdraw\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quotesaverwithdraw(height?: number, asset?: string, address?: string, withdrawBps?: number, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quotesaverwithdraw(height, asset, address, withdrawBps, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Provide a quote estimate for the provided swap.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {string} [fromAsset] the source asset\n * @param {string} [toAsset] the target asset\n * @param {number} [amount] the source asset amount in 1e8 decimals\n * @param {string} [destination] the destination address, required to generate memo\n * @param {number} [streamingInterval] the interval in which streaming swaps are swapped\n * @param {number} [streamingQuantity] the quantity of swaps within a streaming swap\n * @param {string} [fromAddress] the from address, required if the from asset is a synth\n * @param {number} [toleranceBps] the maximum basis points from the current feeless swap price to set the limit in the generated memo\n * @param {number} [affiliateBps] the affiliate fee in basis points\n * @param {string} [affiliate] the affiliate (address or thorname)\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof QuoteApi\n */\n public quoteswap(height?: number, fromAsset?: string, toAsset?: string, amount?: number, destination?: string, streamingInterval?: number, streamingQuantity?: number, fromAddress?: string, toleranceBps?: number, affiliateBps?: number, affiliate?: string, options?: AxiosRequestConfig) {\n return QuoteApiFp(this.configuration).quoteswap(height, fromAsset, toAsset, amount, destination, streamingInterval, streamingQuantity, fromAddress, toleranceBps, affiliateBps, affiliate, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * SaversApi - axios parameter creator\n * @export\n */\nexport const SaversApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n saver: async (asset: string, address: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('saver', 'asset', asset)\n // verify required parameter 'address' is not null or undefined\n assertParamExists('saver', 'address', address)\n const localVarPath = `/thorchain/pool/{asset}/saver/{address}`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)))\n .replace(`{${\"address\"}}`, encodeURIComponent(String(address)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n savers: async (asset: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'asset' is not null or undefined\n assertParamExists('savers', 'asset', asset)\n const localVarPath = `/thorchain/pool/{asset}/savers`\n .replace(`{${\"asset\"}}`, encodeURIComponent(String(asset)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * SaversApi - functional programming interface\n * @export\n */\nexport const SaversApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = SaversApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async saver(asset: string, address: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Saver>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.saver(asset, address, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async savers(asset: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SaversResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.savers(asset, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * SaversApi - factory interface\n * @export\n */\nexport const SaversApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = SaversApiFp(configuration)\n return {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n saver(asset: string, address: string, height?: number, options?: any): AxiosPromise<Saver> {\n return localVarFp.saver(asset, address, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n savers(asset: string, height?: number, options?: any): AxiosPromise<SaversResponse> {\n return localVarFp.savers(asset, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * SaversApi - object-oriented interface\n * @export\n * @class SaversApi\n * @extends {BaseAPI}\n */\nexport class SaversApi extends BaseAPI {\n /**\n * Returns the saver position given then savers pool and address.\n * @param {string} asset \n * @param {string} address \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof SaversApi\n */\n public saver(asset: string, address: string, height?: number, options?: AxiosRequestConfig) {\n return SaversApiFp(this.configuration).saver(asset, address, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all savers for the savers pool.\n * @param {string} asset \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof SaversApi\n */\n public savers(asset: string, height?: number, options?: AxiosRequestConfig) {\n return SaversApiFp(this.configuration).savers(asset, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * StreamingSwapApi - axios parameter creator\n * @export\n */\nexport const StreamingSwapApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwap: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('streamSwap', 'hash', hash)\n const localVarPath = `/thorchain/swap/streaming/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwaps: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/swaps/streaming`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * StreamingSwapApi - functional programming interface\n * @export\n */\nexport const StreamingSwapApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = StreamingSwapApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async streamSwap(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StreamingSwap>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.streamSwap(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async streamSwaps(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StreamingSwapsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.streamSwaps(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * StreamingSwapApi - factory interface\n * @export\n */\nexport const StreamingSwapApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = StreamingSwapApiFp(configuration)\n return {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwap(hash: string, height?: number, options?: any): AxiosPromise<StreamingSwap> {\n return localVarFp.streamSwap(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n streamSwaps(height?: number, options?: any): AxiosPromise<StreamingSwapsResponse> {\n return localVarFp.streamSwaps(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * StreamingSwapApi - object-oriented interface\n * @export\n * @class StreamingSwapApi\n * @extends {BaseAPI}\n */\nexport class StreamingSwapApi extends BaseAPI {\n /**\n * Returns the state of a streaming swap\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof StreamingSwapApi\n */\n public streamSwap(hash: string, height?: number, options?: AxiosRequestConfig) {\n return StreamingSwapApiFp(this.configuration).streamSwap(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the state of all streaming swaps\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof StreamingSwapApi\n */\n public streamSwaps(height?: number, options?: AxiosRequestConfig) {\n return StreamingSwapApiFp(this.configuration).streamSwaps(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * TSSApi - axios parameter creator\n * @export\n */\nexport const TSSApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysign: async (height: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'height' is not null or undefined\n assertParamExists('keysign', 'height', height)\n const localVarPath = `/thorchain/keysign/{height}`\n .replace(`{${\"height\"}}`, encodeURIComponent(String(height)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysignPubkey: async (height: number, pubkey: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'height' is not null or undefined\n assertParamExists('keysignPubkey', 'height', height)\n // verify required parameter 'pubkey' is not null or undefined\n assertParamExists('keysignPubkey', 'pubkey', pubkey)\n const localVarPath = `/thorchain/keysign/{height}/{pubkey}`\n .replace(`{${\"height\"}}`, encodeURIComponent(String(height)))\n .replace(`{${\"pubkey\"}}`, encodeURIComponent(String(pubkey)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metrics: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/metrics`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metricsKeygen: async (pubkey: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'pubkey' is not null or undefined\n assertParamExists('metricsKeygen', 'pubkey', pubkey)\n const localVarPath = `/thorchain/metric/keygen/{pubkey}`\n .replace(`{${\"pubkey\"}}`, encodeURIComponent(String(pubkey)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * TSSApi - functional programming interface\n * @export\n */\nexport const TSSApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = TSSApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async keysign(height: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeysignResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.keysign(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeysignResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.keysignPubkey(height, pubkey, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async metrics(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MetricsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.metrics(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async metricsKeygen(pubkey: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeygenMetricsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.metricsKeygen(pubkey, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * TSSApi - factory interface\n * @export\n */\nexport const TSSApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = TSSApiFp(configuration)\n return {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysign(height: number, options?: any): AxiosPromise<KeysignResponse> {\n return localVarFp.keysign(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n keysignPubkey(height: number, pubkey: string, options?: any): AxiosPromise<KeysignResponse> {\n return localVarFp.keysignPubkey(height, pubkey, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metrics(height?: number, options?: any): AxiosPromise<MetricsResponse> {\n return localVarFp.metrics(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n metricsKeygen(pubkey: string, height?: number, options?: any): AxiosPromise<KeygenMetricsResponse> {\n return localVarFp.metricsKeygen(pubkey, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * TSSApi - object-oriented interface\n * @export\n * @class TSSApi\n * @extends {BaseAPI}\n */\nexport class TSSApi extends BaseAPI {\n /**\n * Returns keysign information for the provided height - the height being the first block a tx out item appears in the signed-but-unobserved outbound queue.\n * @param {number} height \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public keysign(height: number, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).keysign(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns keysign information for the provided height and pubkey - the height being the block at which a tx out item is scheduled to be signed and moved from the scheduled outbound queue to the outbound queue.\n * @param {number} height \n * @param {string} pubkey \n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public keysignPubkey(height: number, pubkey: string, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).keysignPubkey(height, pubkey, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns keygen and keysign metrics for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public metrics(height?: number, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).metrics(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns keygen metrics for the provided vault pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TSSApi\n */\n public metricsKeygen(pubkey: string, height?: number, options?: AxiosRequestConfig) {\n return TSSApiFp(this.configuration).metricsKeygen(pubkey, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * ThornamesApi - axios parameter creator\n * @export\n */\nexport const ThornamesApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n thorname: async (name: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'name' is not null or undefined\n assertParamExists('thorname', 'name', name)\n const localVarPath = `/thorchain/thorname/{name}`\n .replace(`{${\"name\"}}`, encodeURIComponent(String(name)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * ThornamesApi - functional programming interface\n * @export\n */\nexport const ThornamesApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = ThornamesApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async thorname(name: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Thorname>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.thorname(name, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * ThornamesApi - factory interface\n * @export\n */\nexport const ThornamesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = ThornamesApiFp(configuration)\n return {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n thorname(name: string, height?: number, options?: any): AxiosPromise<Thorname> {\n return localVarFp.thorname(name, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * ThornamesApi - object-oriented interface\n * @export\n * @class ThornamesApi\n * @extends {BaseAPI}\n */\nexport class ThornamesApi extends BaseAPI {\n /**\n * Returns addresses registered to the provided thorname.\n * @param {string} name the thornode to lookup\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof ThornamesApi\n */\n public thorname(name: string, height?: number, options?: AxiosRequestConfig) {\n return ThornamesApiFp(this.configuration).thorname(name, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * TransactionsApi - axios parameter creator\n * @export\n */\nexport const TransactionsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n tx: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('tx', 'hash', hash)\n const localVarPath = `/thorchain/tx/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSigners: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txSigners', 'hash', hash)\n const localVarPath = `/thorchain/tx/details/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSignersOld: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txSignersOld', 'hash', hash)\n const localVarPath = `/thorchain/tx/{hash}/signers`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStages: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txStages', 'hash', hash)\n const localVarPath = `/thorchain/tx/stages/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStatus: async (hash: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'hash' is not null or undefined\n assertParamExists('txStatus', 'hash', hash)\n const localVarPath = `/thorchain/tx/status/{hash}`\n .replace(`{${\"hash\"}}`, encodeURIComponent(String(hash)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * TransactionsApi - functional programming interface\n * @export\n */\nexport const TransactionsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = TransactionsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async tx(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.tx(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txSigners(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxDetailsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txSigners(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txSignersOld(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxSignersResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txSignersOld(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txStages(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxStagesResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txStages(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async txStatus(hash: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TxStatusResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.txStatus(hash, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * TransactionsApi - factory interface\n * @export\n */\nexport const TransactionsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = TransactionsApiFp(configuration)\n return {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n tx(hash: string, height?: number, options?: any): AxiosPromise<TxResponse> {\n return localVarFp.tx(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSigners(hash: string, height?: number, options?: any): AxiosPromise<TxDetailsResponse> {\n return localVarFp.txSigners(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txSignersOld(hash: string, height?: number, options?: any): AxiosPromise<TxSignersResponse> {\n return localVarFp.txSignersOld(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStages(hash: string, height?: number, options?: any): AxiosPromise<TxStagesResponse> {\n return localVarFp.txStages(hash, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n txStatus(hash: string, height?: number, options?: any): AxiosPromise<TxStatusResponse> {\n return localVarFp.txStatus(hash, height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * TransactionsApi - object-oriented interface\n * @export\n * @class TransactionsApi\n * @extends {BaseAPI}\n */\nexport class TransactionsApi extends BaseAPI {\n /**\n * Returns the observed transaction for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public tx(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).tx(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the signers for a provided inbound or outbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txSigners(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txSigners(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Deprecated - migrate to /thorchain/tx/details.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txSignersOld(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txSignersOld(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the processing stages of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txStages(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txStages(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the status of a provided inbound hash.\n * @param {string} hash \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof TransactionsApi\n */\n public txStatus(hash: string, height?: number, options?: AxiosRequestConfig) {\n return TransactionsApiFp(this.configuration).txStatus(hash, height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n/**\n * VaultsApi - axios parameter creator\n * @export\n */\nexport const VaultsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n asgard: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/vaults/asgard`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vault: async (pubkey: string, height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'pubkey' is not null or undefined\n assertParamExists('vault', 'pubkey', pubkey)\n const localVarPath = `/thorchain/vault/{pubkey}`\n .replace(`{${\"pubkey\"}}`, encodeURIComponent(String(pubkey)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vaultPubkeys: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/vaults/pubkeys`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n yggdrasil: async (height?: number, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {\n const localVarPath = `/thorchain/vaults/yggdrasil`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (height !== undefined) {\n localVarQueryParameter['height'] = height;\n }\n\n\n \n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n options: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * VaultsApi - functional programming interface\n * @export\n */\nexport const VaultsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = VaultsApiAxiosParamCreator(configuration)\n return {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async asgard(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VaultsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.asgard(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async vault(pubkey: string, height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Vault>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.vault(pubkey, height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async vaultPubkeys(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VaultPubkeysResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.vaultPubkeys(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n async yggdrasil(height?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VaultsResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.yggdrasil(height, options);\n return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);\n },\n }\n};\n\n/**\n * VaultsApi - factory interface\n * @export\n */\nexport const VaultsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = VaultsApiFp(configuration)\n return {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n asgard(height?: number, options?: any): AxiosPromise<VaultsResponse> {\n return localVarFp.asgard(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vault(pubkey: string, height?: number, options?: any): AxiosPromise<Vault> {\n return localVarFp.vault(pubkey, height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n vaultPubkeys(height?: number, options?: any): AxiosPromise<VaultPubkeysResponse> {\n return localVarFp.vaultPubkeys(height, options).then((request) => request(axios, basePath));\n },\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n */\n yggdrasil(height?: number, options?: any): AxiosPromise<VaultsResponse> {\n return localVarFp.yggdrasil(height, options).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * VaultsApi - object-oriented interface\n * @export\n * @class VaultsApi\n * @extends {BaseAPI}\n */\nexport class VaultsApi extends BaseAPI {\n /**\n * Returns current asgard vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public asgard(height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).asgard(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns the vault for the provided pubkey.\n * @param {string} pubkey \n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public vault(pubkey: string, height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).vault(pubkey, height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns all pubkeys for current vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public vaultPubkeys(height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).vaultPubkeys(height, options).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Returns current yggdrasil vaults.\n * @param {number} [height] optional block height, defaults to current tip\n * @param {*} [options] Override http request option.\n * @throws {RequiredError}\n * @memberof VaultsApi\n */\n public yggdrasil(height?: number, options?: AxiosRequestConfig) {\n return VaultsApiFp(this.configuration).yggdrasil(height, options).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n","/* tslint:disable */\n/* eslint-disable */\n/**\n * Thornode API\n * Thornode REST API.\n *\n * The version of the OpenAPI document: 1.122.0\n * Contact: devs@thorchain.org\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface ConfigurationParameters {\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n username?: string;\n password?: string;\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n basePath?: string;\n baseOptions?: any;\n formDataCtor?: new () => any;\n}\n\nexport class Configuration {\n /**\n * parameter for apiKey security\n * @param name security name\n * @memberof Configuration\n */\n apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);\n /**\n * parameter for basic security\n *\n * @type {string}\n * @memberof Configuration\n */\n username?: string;\n /**\n * parameter for basic security\n *\n * @type {string}\n * @memberof Configuration\n */\n password?: string;\n /**\n * parameter for oauth2 security\n * @param name security name\n * @param scopes oauth2 scope\n * @memberof Configuration\n */\n accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);\n /**\n * override base path\n *\n * @type {string}\n * @memberof Configuration\n */\n basePath?: string;\n /**\n * base options for axios calls\n *\n * @type {any}\n * @memberof Configuration\n */\n baseOptions?: any;\n /**\n * The FormData constructor that will be used to create multipart form data\n * requests. You can inject this here so that execution environments that\n * do not support the FormData class can still run the generated client.\n *\n * @type {new () => FormData}\n */\n formDataCtor?: new () => any;\n\n constructor(param: ConfigurationParameters = {}) {\n this.apiKey = param.apiKey;\n this.username = param.username;\n this.password = param.password;\n this.accessToken = param.accessToken;\n this.basePath = param.basePath;\n this.baseOptions = param.baseOptions;\n this.formDataCtor = param.formDataCtor;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp('^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\n return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\n }\n}\n","export const THORNODE_API_9R_URL = 'https://thornode.ninerealms.com/'\n"],"names":["globalAxios"],"mappings":"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"}