@bancor/carbon-sdk
Version:
The SDK is a READ-ONLY tool, intended to facilitate working with Carbon contracts. It's a convenient wrapper around our matching algorithm, allowing programs and users get a ready to use transaction data that will allow them to manage strategies and fulfi
15 lines • 486 B
TypeScript
import { Provider } from '@ethersproject/providers';
import { ContractsConfig } from './types';
import Composer from './Composer';
import Reader from './Reader';
/**
* Class that handles the interaction with contracts through a provider.
*/
export declare class ContractsApi {
private _reader;
private _composer;
constructor(provider: Provider, config?: ContractsConfig);
get reader(): Reader;
get composer(): Composer;
}
//# sourceMappingURL=ContractsApi.d.ts.map