chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
8 lines • 312 B
JavaScript
import { EthereumInfo } from '../../CurrencyInfo';
import { EvmCurrencyUtils } from '../abstract/EvmCurrencyUtils';
export class EthereumUtils extends EvmCurrencyUtils {
constructor(client, markets) {
super(client, EthereumInfo, markets, 'ethereum');
}
}
//# sourceMappingURL=EthereumUtils.js.map