UNPKG

erc20-wizard

Version:

CLI for creating and deploying ERC20 tokens on Ethereum network.

11 lines (10 loc) 545 B
import { EthereumNetworkType } from '../types/ethereum-network'; import { IEthereumProviderService } from '../interfaces/ethereum-provider.service'; import { ConfigurationService } from './configuration.service'; export declare class InfuraService implements IEthereumProviderService { private configurationService; constructor(configurationService: ConfigurationService); createWeb3PrivateKeyProvider(networkType: EthereumNetworkType, privateKey: string): any; private buildAuthorizedInfuraUrl; private resolveNetworkUrl; }