@bloom-trade/finance-connector
Version:
Is a package entended to be used with multiple web3 and web2 providers to interact with blockchains.
11 lines (10 loc) • 395 B
TypeScript
import { ProviderCredentials } from '../@types';
import { Chains } from '../@types/index';
export declare class ProviderConnector {
protected _credentials: any;
protected chain: Chains | undefined;
protected addresses: string[] | undefined;
protected _baseurl: string;
protected _provider: ProviderCredentials['provider'];
constructor(connection: ProviderCredentials);
}