diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-03-08 17:25:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-08 17:25:31 +0800 |
commit | 03902b0b26fe443705dde20c42e78e1cb4bd3c4b (patch) | |
tree | c1e1dc826d7b1bf9b02af717200ec221246d6263 /packages/deployer/src | |
parent | 883feabb8b0f9470ae2bd1713b929c220fdfae95 (diff) | |
parent | bab8c1eeff287a5dd90754c3391fd702d974d9d6 (diff) | |
download | dexon-sol-tools-03902b0b26fe443705dde20c42e78e1cb4bd3c4b.tar dexon-sol-tools-03902b0b26fe443705dde20c42e78e1cb4bd3c4b.tar.gz dexon-sol-tools-03902b0b26fe443705dde20c42e78e1cb4bd3c4b.tar.bz2 dexon-sol-tools-03902b0b26fe443705dde20c42e78e1cb4bd3c4b.tar.lz dexon-sol-tools-03902b0b26fe443705dde20c42e78e1cb4bd3c4b.tar.xz dexon-sol-tools-03902b0b26fe443705dde20c42e78e1cb4bd3c4b.tar.zst dexon-sol-tools-03902b0b26fe443705dde20c42e78e1cb4bd3c4b.zip |
Merge pull request #419 from 0xProject/fix/deployer-args
Improve an error message when an incorrect number of constructor param…
Diffstat (limited to 'packages/deployer/src')
-rw-r--r-- | packages/deployer/src/deployer.ts | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/packages/deployer/src/deployer.ts b/packages/deployer/src/deployer.ts index 6710bcc85..e87d2ab0e 100644 --- a/packages/deployer/src/deployer.ts +++ b/packages/deployer/src/deployer.ts @@ -1,4 +1,4 @@ -import { TxData } from '@0xproject/types'; +import { AbiType, TxData } from '@0xproject/types'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as _ from 'lodash'; import * as Web3 from 'web3'; @@ -49,6 +49,18 @@ export class Deployer { gas, }; const abi = contractNetworkDataIfExists.abi; + const constructorAbi = _.find(abi, { type: AbiType.Constructor }) as Web3.ConstructorAbi; + const constructorArgs = _.isUndefined(constructorAbi) ? [] : constructorAbi.inputs; + if (constructorArgs.length !== args.length) { + const constructorSignature = `constructor(${_.map(constructorArgs, arg => `${arg.type} ${arg.name}`).join( + ', ', + )})`; + throw new Error( + `${contractName} expects ${constructorArgs.length} constructor params: ${constructorSignature}. Got ${ + args.length + }`, + ); + } const web3ContractInstance = await this._deployFromAbiAsync(abi, args, txData); utils.consoleLog(`${contractName}.sol successfully deployed at ${web3ContractInstance.address}`); const contractInstance = new Contract(web3ContractInstance, this._defaults); |