From c4a18ee64b58217dd9733c9b9edbfe592fc1cb8d Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Mon, 12 Mar 2018 03:19:39 +0100 Subject: Make Deployer configurable by jsonrpcUrl instead of jsonrpcPort --- packages/deployer/src/utils/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/deployer/src/utils') diff --git a/packages/deployer/src/utils/types.ts b/packages/deployer/src/utils/types.ts index ca2f8af0c..0068faf6a 100644 --- a/packages/deployer/src/utils/types.ts +++ b/packages/deployer/src/utils/types.ts @@ -41,7 +41,7 @@ export interface SolcErrors { export interface CliOptions extends yargs.Arguments { artifactsDir: string; contractsDir: string; - jsonrpcPort: number; + jsonrpcUrl: string; networkId: number; shouldOptimize: boolean; gasPrice: string; @@ -68,11 +68,11 @@ export interface ProviderDeployerOptions extends BaseDeployerOptions { web3Provider: Web3.Provider; } -export interface PortDeployerOptions extends BaseDeployerOptions { - jsonrpcPort: number; +export interface UrlDeployerOptions extends BaseDeployerOptions { + jsonrpcUrl: string; } -export type DeployerOptions = PortDeployerOptions | ProviderDeployerOptions; +export type DeployerOptions = UrlDeployerOptions | ProviderDeployerOptions; export interface ContractSources { [key: string]: string; -- cgit v1.2.3