diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-06-01 05:33:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-01 05:33:28 +0800 |
commit | 384c05ccc70f839f4098e375237514784253197d (patch) | |
tree | 10e850e1e1cf17edb1a24df970ba97974d56acf0 /packages/contract_templates | |
parent | 6fd87568e738c114dbba9be85cf470c11117ec0a (diff) | |
parent | 193e4f327523ca7f718c1091af0b7192f4e0bcbb (diff) | |
download | dexon-sol-tools-384c05ccc70f839f4098e375237514784253197d.tar.gz dexon-sol-tools-384c05ccc70f839f4098e375237514784253197d.tar.zst dexon-sol-tools-384c05ccc70f839f4098e375237514784253197d.zip |
Merge pull request #642 from 0xProject/feature/ethereum-types
Introduce ethereum-types package
Diffstat (limited to 'packages/contract_templates')
-rw-r--r-- | packages/contract_templates/contract.handlebars | 4 | ||||
-rw-r--r-- | packages/contract_templates/partials/event.handlebars | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/contract_templates/contract.handlebars b/packages/contract_templates/contract.handlebars index b2765b1a5..5fb19af11 100644 --- a/packages/contract_templates/contract.handlebars +++ b/packages/contract_templates/contract.handlebars @@ -2,11 +2,11 @@ * This file is auto-generated using abi-gen. Don't edit directly. * Templates can be found at https://github.com/0xProject/0x-monorepo/tree/development/packages/contract_templates. */ -// tslint:disable:no-consecutive-blank-lines +// tslint:disable:no-consecutive-blank-lines ordered-imports // tslint:disable-next-line:no-unused-variable import { BaseContract } from '@0xproject/base-contract'; import { ContractArtifact } from '@0xproject/sol-compiler'; -import { BlockParam, BlockParamLiteral, CallData, ContractAbi, DataItem, MethodAbi, Provider, TxData, TxDataPayable } from '@0xproject/types'; +import { BlockParam, BlockParamLiteral, CallData, ContractAbi, DataItem, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BigNumber, classUtils, logUtils, promisify } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; import * as ethers from 'ethers'; diff --git a/packages/contract_templates/partials/event.handlebars b/packages/contract_templates/partials/event.handlebars index 3c6100e4f..69a99d937 100644 --- a/packages/contract_templates/partials/event.handlebars +++ b/packages/contract_templates/partials/event.handlebars @@ -1,4 +1,4 @@ -export interface {{name}}ContractEventArgs { +export interface {{name}}ContractEventArgs extends DecodedLogArgs { {{#each inputs}} {{name}}: {{#returnType type components}}{{/returnType}}; {{/each}} |