/** * keepkey-sdk-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { BinanceGetAddress200Response, BinanceGetAddressRequest, CosmosGetAddress200Response, EthereumGetAddress200Response, UtxoGetAddress200Response, UtxoGetAddressRequest } from '../models'; export interface BinanceGetAddressOperationRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } export interface CosmosGetAddressRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } export interface EthereumGetAddressRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } export interface MayachainGetAddressRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } export interface OsmosisGetAddressRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } export interface TendermintGetAddressRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } export interface ThorchainGetAddressRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } export interface UtxoGetAddressOperationRequest { UtxoGetAddressRequest: UtxoGetAddressRequest; } export interface XrpGetAddressRequest { BinanceGetAddressRequest: BinanceGetAddressRequest; } /** * */ export declare class AddressApi extends runtime.BaseAPI { /** * Get a Binance Chain address, loading it into the current session and optionally displaying it on-device. * Get Binance Address */ binanceGetAddressRaw(requestParameters: BinanceGetAddressOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get a Binance Chain address, loading it into the current session and optionally displaying it on-device. * Get Binance Address */ binanceGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get a Cosmos address, loading it into the current session and optionally displaying it on-device. * Get Cosmos Address */ cosmosGetAddressRaw(requestParameters: CosmosGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get a Cosmos address, loading it into the current session and optionally displaying it on-device. * Get Cosmos Address */ cosmosGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get an Ethereum address, loading it into the current session and optionally displaying it on-device. * Get Ethereum Address */ ethereumGetAddressRaw(requestParameters: EthereumGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get an Ethereum address, loading it into the current session and optionally displaying it on-device. * Get Ethereum Address */ ethereumGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get a mayachain address, loading it into the current session and optionally displaying it on-device. * Get Thorchain Address */ mayachainGetAddressRaw(requestParameters: MayachainGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get a mayachain address, loading it into the current session and optionally displaying it on-device. * Get Thorchain Address */ mayachainGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get a Cosmos address, loading it into the current session and optionally displaying it on-device. * Get Cosmos Address */ osmosisGetAddressRaw(requestParameters: OsmosisGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get a Cosmos address, loading it into the current session and optionally displaying it on-device. * Get Cosmos Address */ osmosisGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get a Tendermint address, loading it into the current session and optionally displaying it on-device. * Get Tendermint Address */ tendermintGetAddressRaw(requestParameters: TendermintGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get a Tendermint address, loading it into the current session and optionally displaying it on-device. * Get Tendermint Address */ tendermintGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get a Thorchain address, loading it into the current session and optionally displaying it on-device. * Get Thorchain Address */ thorchainGetAddressRaw(requestParameters: ThorchainGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get a Thorchain address, loading it into the current session and optionally displaying it on-device. * Get Thorchain Address */ thorchainGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get a Bitcoin/Dogecoin/Dash.... cont. (see coin-support) Chain address, loading it into the current session and optionally displaying it on-device. * Get Binance Address */ utxoGetAddressRaw(requestParameters: UtxoGetAddressOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get a Bitcoin/Dogecoin/Dash.... cont. (see coin-support) Chain address, loading it into the current session and optionally displaying it on-device. * Get Binance Address */ utxoGetAddress(UtxoGetAddressRequest: UtxoGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; /** * Get an XRP address, loading it into the current session and optionally displaying it on-device. * Get XRP Address */ xrpGetAddressRaw(requestParameters: XrpGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise>; /** * Get an XRP address, loading it into the current session and optionally displaying it on-device. * Get XRP Address */ xrpGetAddress(BinanceGetAddressRequest: BinanceGetAddressRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise; }