From b0547819fd97c9bace5e4eca3fe8666ec5e40f81 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 5 Sep 2017 15:44:42 +0200 Subject: Define AbiType --- src/contract.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/contract.ts') diff --git a/src/contract.ts b/src/contract.ts index b9ab496b2..1aacc65dc 100644 --- a/src/contract.ts +++ b/src/contract.ts @@ -2,6 +2,7 @@ import * as Web3 from 'web3'; import * as _ from 'lodash'; import promisify = require('es6-promisify'); import {SchemaValidator, schemas} from '0x-json-schemas'; +import {AbiType} from './types'; export class Contract implements Web3.ContractInstance { public address: string; @@ -22,7 +23,7 @@ export class Contract implements Web3.ContractInstance { this.validator = new SchemaValidator(); } private populateFunctions(): void { - const functionsAbi = _.filter(this.abi, abiPart => abiPart.type === Web3.AbiType.Function); + const functionsAbi = _.filter(this.abi, abiPart => abiPart.type === AbiType.Function); _.forEach(functionsAbi, (functionAbi: Web3.MethodAbi) => { if (functionAbi.constant) { const cbStyleCallFunction = this.contract[functionAbi.name].call; @@ -40,7 +41,7 @@ export class Contract implements Web3.ContractInstance { }); } private populateEvents(): void { - const eventsAbi = _.filter(this.abi, abiPart => abiPart.type === Web3.AbiType.Event); + const eventsAbi = _.filter(this.abi, abiPart => abiPart.type === AbiType.Event); _.forEach(eventsAbi, (eventAbi: Web3.EventAbi) => { this[eventAbi.name] = this.contract[eventAbi.name]; }); -- cgit v1.2.3