Rename zeroExContract... to contractWrappers...

This commit is contained in:
Fabio Berger
2018-05-10 16:51:45 +02:00
parent ce47e83939
commit c6882d0bd8
8 changed files with 17 additions and 17 deletions

View File

@@ -6,7 +6,7 @@ import {
TokenRegistryWrapper,
TokenTransferProxyWrapper,
TokenWrapper,
ZeroExContractConfig,
ContractWrappersConfig,
} from '@0xproject/contract-wrappers';
import {
generatePseudoRandomSalt,
@@ -131,7 +131,7 @@ export class ZeroEx {
* @param config The configuration object. Look up the type for the description.
* @return An instance of the 0x.js ZeroEx class.
*/
constructor(provider: Provider, config: ZeroExContractConfig) {
constructor(provider: Provider, config: ContractWrappersConfig) {
assert.isWeb3Provider('provider', provider);
this._contractWrappers = new ContractWrappers(provider, config);

View File

@@ -47,5 +47,5 @@ export {
LogFillContractEventArgs,
ExchangeContractEventArgs,
ExchangeEvents,
ZeroExContractConfig,
ContractWrappersConfig,
} from '@0xproject/contract-wrappers';