hector-rubic-sdk
Version:
Simplify dApp creation
13 lines (12 loc) • 481 B
TypeScript
import { DeepReadonly } from 'ts-essentials';
import { InstantTradeProvider } from '../..';
/**
* Stores contracts info.
* Every contract may have several instant-trade providers.
* Because of that every provider has `method suffix` - suffix
* to add to default swap-method name to call that provider's method.
*/
export declare const crossChainTradeProvidersData: DeepReadonly<Record<string, {
ProviderClass: typeof InstantTradeProvider;
methodSuffix: string;
}[]>>;