import { updateDefaultOptions } from './config';

export const config = (privateKey: string, walletAddress: string, web3Url: string) => {

  updateDefaultOptions({
    // TODO REMOVE
    web3Url: web3Url || `https://kovan.infura.io/xiNNVkYQ6V3IsiPWTTNT`,
    privateKey,
    walletAddress,
  });
};
