olympus-protocol-connector
Version:
Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript
12 lines (11 loc) • 394 B
TypeScript
import { Service } from '../../../Service';
export declare class ExchangeManagerService extends Service {
/**
* @deprecated Use method create
* @param address address
*/
static get(address: string): ExchangeManagerService;
static create(address: string): ExchangeManagerService;
getAdapterIds(): Promise<string[]>;
getAdapterAddresses(): Promise<string[]>;
}