import { RpcService } from './services/RpcService';
import Config from './config';

export default abstract class Services {

  private _rpcService;

  protected constructor() {
    // make sure this is set before
    this._rpcService = new RpcService(Config.web3Url);
  }

  public get rpcService() {
    return this._rpcService;
  }
}
