chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
7 lines (6 loc) • 305 B
TypeScript
import { BaseApi, ChainGateClient } from 'chaingate-client';
import { CurrencyProviders } from '../CurrencyProviders';
import { Evm } from '../abstract/Evm/Evm';
export declare class Base extends Evm<'eth'> {
constructor(client: ChainGateClient, api: BaseApi, currencyProviders: CurrencyProviders);
}