diff options
author | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-22 02:47:31 +0800 |
---|---|---|
committer | Steve Klebanoff <steve.klebanoff@gmail.com> | 2018-11-22 02:47:31 +0800 |
commit | 921d9d7ed5a549878b3a9130a99b9cbe2ae11903 (patch) | |
tree | ee20d3005850619160e7dc985736e47813c4af68 /packages/abi-gen-wrappers/src/generated-wrappers/erc721_proxy.ts | |
parent | b2e1be5cfe373f7cdafd5bd9a0c3ec1ea1e5f1d5 (diff) | |
parent | 68c15de8908b1e8eb8f04d26301fec62ed2af1c1 (diff) | |
download | dexon-sol-tools-921d9d7ed5a549878b3a9130a99b9cbe2ae11903.tar.gz dexon-sol-tools-921d9d7ed5a549878b3a9130a99b9cbe2ae11903.tar.zst dexon-sol-tools-921d9d7ed5a549878b3a9130a99b9cbe2ae11903.zip |
Merge branch 'development' into feature/instant/rollbar-env
Diffstat (limited to 'packages/abi-gen-wrappers/src/generated-wrappers/erc721_proxy.ts')
-rw-r--r-- | packages/abi-gen-wrappers/src/generated-wrappers/erc721_proxy.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/abi-gen-wrappers/src/generated-wrappers/erc721_proxy.ts b/packages/abi-gen-wrappers/src/generated-wrappers/erc721_proxy.ts index 691c55578..f9730a072 100644 --- a/packages/abi-gen-wrappers/src/generated-wrappers/erc721_proxy.ts +++ b/packages/abi-gen-wrappers/src/generated-wrappers/erc721_proxy.ts @@ -4,6 +4,7 @@ import { BaseContract } from '@0x/base-contract'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BigNumber, classUtils, logUtils } from '@0x/utils'; +import { SimpleContractArtifact } from '@0x/types'; import { Web3Wrapper } from '@0x/web3-wrapper'; import * as ethers from 'ethers'; import * as _ from 'lodash'; @@ -601,7 +602,7 @@ export class ERC721ProxyContract extends BaseContract { }, }; public static async deployFrom0xArtifactAsync( - artifact: ContractArtifact, + artifact: ContractArtifact | SimpleContractArtifact, provider: Provider, txDefaults: Partial<TxData>, ): Promise<ERC721ProxyContract> { |