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