aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen/src/index.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2018-01-05 19:49:51 +0800
committerGitHub <noreply@github.com>2018-01-05 19:49:51 +0800
commit35e0b6143ab1405259471e1c9c698bfcd869df5a (patch)
treec9acc3f7a1dbccaf10c8616289de61f2dc879236 /packages/abi-gen/src/index.ts
parentce6abad97f248a3557390dd1e1ff3ae84662838f (diff)
parente019ae4aed610c4645894c2999871fd3c0b57388 (diff)
downloaddexon-sol-tools-35e0b6143ab1405259471e1c9c698bfcd869df5a.tar
dexon-sol-tools-35e0b6143ab1405259471e1c9c698bfcd869df5a.tar.gz
dexon-sol-tools-35e0b6143ab1405259471e1c9c698bfcd869df5a.tar.bz2
dexon-sol-tools-35e0b6143ab1405259471e1c9c698bfcd869df5a.tar.lz
dexon-sol-tools-35e0b6143ab1405259471e1c9c698bfcd869df5a.tar.xz
dexon-sol-tools-35e0b6143ab1405259471e1c9c698bfcd869df5a.tar.zst
dexon-sol-tools-35e0b6143ab1405259471e1c9c698bfcd869df5a.zip
Merge pull request #304 from joincivil/ritave/feature/abi-gen-constructor
Added constructor ABIs to abi-gen
Diffstat (limited to 'packages/abi-gen/src/index.ts')
-rw-r--r--packages/abi-gen/src/index.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/abi-gen/src/index.ts b/packages/abi-gen/src/index.ts
index ed71087b2..527af32b1 100644
--- a/packages/abi-gen/src/index.ts
+++ b/packages/abi-gen/src/index.ts
@@ -14,6 +14,7 @@ import * as Web3 from 'web3';
import { ContextData, ParamKind } from './types';
import { utils } from './utils';
+const ABI_TYPE_CONSTRUCTOR = 'constructor';
const ABI_TYPE_METHOD = 'function';
const ABI_TYPE_EVENT = 'event';
const MAIN_TEMPLATE_NAME = 'contract.mustache';
@@ -75,6 +76,11 @@ for (const abiFileName of abiFileNames) {
process.exit(1);
}
+ let ctor = ABI.find((abi: Web3.AbiDefinition) => abi.type === ABI_TYPE_CONSTRUCTOR) as Web3.ConstructorAbi;
+ if (_.isUndefined(ctor)) {
+ ctor = utils.getEmptyConstructor(); // The constructor exists, but it's implicit in JSON's ABI definition
+ }
+
const methodAbis = ABI.filter((abi: Web3.AbiDefinition) => abi.type === ABI_TYPE_METHOD) as Web3.MethodAbi[];
const methodsData = _.map(methodAbis, methodAbi => {
_.map(methodAbi.inputs, input => {
@@ -95,6 +101,7 @@ for (const abiFileName of abiFileNames) {
const contextData = {
contractName: namedContent.name,
+ ctor,
methods: methodsData,
events: eventAbis,
};