chore: change package org from 0xproject to 0x

This commit is contained in:
Jacob Evans 2018-10-18 21:51:56 +11:00
parent 9e8bca69a8
commit 9f924e459c
No known key found for this signature in database
GPG Key ID: 2036DA2ADDFB0842
344 changed files with 986 additions and 978 deletions

View File

@ -23,9 +23,9 @@
"wsrun": "wsrun", "wsrun": "wsrun",
"lerna": "lerna", "lerna": "lerna",
"build": "wsrun build $PKG --fast-exit -r --stages", "build": "wsrun build $PKG --fast-exit -r --stages",
"build:no_website": "wsrun build $PKG --fast-exit -r --stages --exclude @0xproject/website", "build:no_website": "wsrun build $PKG --fast-exit -r --stages --exclude @0x/website",
"build:ci:no_website": "wsrun build:ci $PKG --fast-exit -r --stages --exclude @0xproject/website", "build:ci:no_website": "wsrun build:ci $PKG --fast-exit -r --stages --exclude @0x/website",
"build:monorepo_scripts": "PKG=@0xproject/monorepo-scripts yarn build", "build:monorepo_scripts": "PKG=@0x/monorepo-scripts yarn build",
"build:ts": "tsc -b", "build:ts": "tsc -b",
"watch:ts": "tsc -b -w", "watch:ts": "tsc -b -w",
"clean": "wsrun clean $PKG --fast-exit -r --parallel", "clean": "wsrun clean $PKG --fast-exit -r --parallel",
@ -54,18 +54,22 @@
} }
], ],
"ci": { "ci": {
"trackBranches": ["master", "development"], "trackBranches": [
"master",
"development"
],
"repoBranchBase": "development" "repoBranchBase": "development"
} }
}, },
"devDependencies": { "devDependencies": {
"@0x-lerna-fork/lerna": "3.0.0-beta.25", "@0x-lerna-fork/lerna": "3.0.0-beta.25",
"@0xproject/npm-cli-login": "^0.0.11",
"async-child-process": "^1.1.1", "async-child-process": "^1.1.1",
"bundlewatch": "^0.2.1", "bundlewatch": "^0.2.1",
"coveralls": "^3.0.0", "coveralls": "^3.0.0",
"ganache-cli": "6.1.8", "ganache-cli": "6.1.8",
"lcov-result-merger": "^3.0.0", "lcov-result-merger": "^3.0.0",
"@0xproject/npm-cli-login": "^0.0.11", "lerna": "^3.0.0-beta.25",
"npm-run-all": "^4.1.2", "npm-run-all": "^4.1.2",
"prettier": "^1.11.1", "prettier": "^1.11.1",
"source-map-support": "^0.5.6", "source-map-support": "^0.5.6",

View File

@ -42,13 +42,13 @@
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"devDependencies": { "devDependencies": {
"@0xproject/contract-addresses": "^1.0.0", "@0x/contract-addresses": "^1.0.0",
"@0xproject/abi-gen": "^1.0.13", "@0x/abi-gen": "^1.0.13",
"@0xproject/abi-gen-wrappers": "^1.0.0", "@0x/abi-gen-wrappers": "^1.0.0",
"@0xproject/dev-utils": "^1.0.12", "@0x/dev-utils": "^1.0.12",
"@0xproject/migrations": "^1.0.14", "@0x/migrations": "^1.0.14",
"@0xproject/monorepo-scripts": "^1.0.11", "@0x/monorepo-scripts": "^1.0.11",
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/lodash": "4.14.104", "@types/lodash": "4.14.104",
"@types/mocha": "^2.2.42", "@types/mocha": "^2.2.42",
"@types/node": "*", "@types/node": "*",
@ -74,16 +74,16 @@
"webpack": "^4.20.2" "webpack": "^4.20.2"
}, },
"dependencies": { "dependencies": {
"@0xproject/assert": "^1.0.13", "@0x/assert": "^1.0.13",
"@0xproject/base-contract": "^3.0.1", "@0x/base-contract": "^3.0.1",
"@0xproject/contract-wrappers": "^2.0.2", "@0x/contract-wrappers": "^2.0.2",
"@0xproject/order-utils": "^1.0.7", "@0x/order-utils": "^1.0.7",
"@0xproject/order-watcher": "^2.1.1", "@0x/order-watcher": "^2.1.1",
"@0xproject/subproviders": "^2.0.7", "@0x/subproviders": "^2.0.7",
"@0xproject/types": "^1.1.4", "@0x/types": "^1.1.4",
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"@0xproject/web3-wrapper": "^3.0.3", "@0x/web3-wrapper": "^3.0.3",
"@types/web3-provider-engine": "^14.0.0", "@types/web3-provider-engine": "^14.0.0",
"ethereum-types": "^1.0.11", "ethereum-types": "^1.0.11",
"ethers": "~4.0.4", "ethers": "~4.0.4",

View File

@ -1,6 +1,6 @@
export { ContractAddresses } from '@0xproject/contract-addresses'; export { ContractAddresses } from '@0x/contract-addresses';
export { assetDataUtils, signatureUtils, generatePseudoRandomSalt, orderHashUtils } from '@0xproject/order-utils'; export { assetDataUtils, signatureUtils, generatePseudoRandomSalt, orderHashUtils } from '@0x/order-utils';
export { export {
ContractWrappers, ContractWrappers,
@ -27,7 +27,7 @@ export {
OrderAndTraderInfo, OrderAndTraderInfo,
TraderInfo, TraderInfo,
ValidateOrderFillableOpts, ValidateOrderFillableOpts,
} from '@0xproject/contract-wrappers'; } from '@0x/contract-wrappers';
export { export {
WETH9Events, WETH9Events,
@ -52,9 +52,9 @@ export {
ExchangeCancelEventArgs, ExchangeCancelEventArgs,
ExchangeEventArgs, ExchangeEventArgs,
ExchangeEvents, ExchangeEvents,
} from '@0xproject/abi-gen-wrappers'; } from '@0x/abi-gen-wrappers';
export { OrderWatcher, OnOrderStateChangeCallback, OrderWatcherConfig } from '@0xproject/order-watcher'; export { OrderWatcher, OnOrderStateChangeCallback, OrderWatcherConfig } from '@0x/order-watcher';
export import Web3ProviderEngine = require('web3-provider-engine'); export import Web3ProviderEngine = require('web3-provider-engine');
@ -64,11 +64,11 @@ export {
JSONRPCRequestPayloadWithMethod, JSONRPCRequestPayloadWithMethod,
ErrorCallback, ErrorCallback,
MetamaskSubprovider, MetamaskSubprovider,
} from '@0xproject/subproviders'; } from '@0x/subproviders';
export { AbiDecoder } from '@0xproject/utils'; export { AbiDecoder } from '@0x/utils';
export { BigNumber } from '@0xproject/utils'; export { BigNumber } from '@0x/utils';
export { export {
ExchangeContractErrs, ExchangeContractErrs,
@ -85,7 +85,7 @@ export {
SignatureType, SignatureType,
OrderRelevantState, OrderRelevantState,
Stats, Stats,
} from '@0xproject/types'; } from '@0x/types';
export { export {
BlockParamLiteral, BlockParamLiteral,

View File

@ -1,10 +1,10 @@
{ {
"name": "@0xproject/abi-gen-wrappers", "name": "@0x/abi-gen-wrappers",
"version": "1.0.0", "version": "1.0.0",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
}, },
"description": "Low-level 0x smart contract wrappers generated using @0xproject/abi-gen", "description": "Low-level 0x smart contract wrappers generated using @0x/abi-gen",
"main": "lib/src/index.js", "main": "lib/src/index.js",
"directories": { "directories": {
"test": "test" "test": "test"
@ -30,12 +30,16 @@
}, },
"homepage": "https://github.com/0xProject/0x-monorepo/packages/abi-gen-wrappers/README.md", "homepage": "https://github.com/0xProject/0x-monorepo/packages/abi-gen-wrappers/README.md",
"devDependencies": { "devDependencies": {
"@0xproject/abi-gen": "^1.0.12", "@0x/abi-gen": "^1.0.12",
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@0x/utils": "^2.0.2",
"@0x/web3-wrapper": "^3.0.3",
"ethers": "~4.0.4",
"lodash": "^4.17.5",
"shx": "^0.2.2" "shx": "^0.2.2"
}, },
"dependencies": { "dependencies": {
"@0xproject/base-contract": "^3.0.1" "@0x/base-contract": "^3.0.1"
}, },
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/abi-gen", "name": "@0x/abi-gen",
"version": "1.0.13", "version": "1.0.13",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
@ -31,8 +31,8 @@
}, },
"homepage": "https://github.com/0xProject/0x-monorepo/packages/abi-gen/README.md", "homepage": "https://github.com/0xProject/0x-monorepo/packages/abi-gen/README.md",
"dependencies": { "dependencies": {
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"chalk": "^2.3.0", "chalk": "^2.3.0",
"ethereum-types": "^1.0.11", "ethereum-types": "^1.0.11",
"glob": "^7.1.2", "glob": "^7.1.2",
@ -45,7 +45,7 @@
"yargs": "^10.0.3" "yargs": "^10.0.3"
}, },
"devDependencies": { "devDependencies": {
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/glob": "5.0.35", "@types/glob": "5.0.35",
"@types/handlebars": "^4.0.36", "@types/handlebars": "^4.0.36",
"@types/mkdirp": "^0.5.1", "@types/mkdirp": "^0.5.1",

View File

@ -1,6 +1,6 @@
#!/usr/bin/env node #!/usr/bin/env node
import { abiUtils, logUtils } from '@0xproject/utils'; import { abiUtils, logUtils } from '@0x/utils';
import chalk from 'chalk'; import chalk from 'chalk';
import { AbiDefinition, ConstructorAbi, EventAbi, MethodAbi } from 'ethereum-types'; import { AbiDefinition, ConstructorAbi, EventAbi, MethodAbi } from 'ethereum-types';
import { sync as globSync } from 'glob'; import { sync as globSync } from 'glob';

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/assert", "name": "@0x/assert",
"version": "1.0.13", "version": "1.0.13",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
@ -29,7 +29,7 @@
}, },
"homepage": "https://github.com/0xProject/0x-monorepo/packages/assert/README.md", "homepage": "https://github.com/0xProject/0x-monorepo/packages/assert/README.md",
"devDependencies": { "devDependencies": {
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/lodash": "4.14.104", "@types/lodash": "4.14.104",
"@types/mocha": "^2.2.42", "@types/mocha": "^2.2.42",
"@types/valid-url": "^1.0.2", "@types/valid-url": "^1.0.2",
@ -44,9 +44,9 @@
"typescript": "3.0.1" "typescript": "3.0.1"
}, },
"dependencies": { "dependencies": {
"@0xproject/json-schemas": "^1.0.7", "@0x/json-schemas": "^1.0.7",
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"lodash": "^4.17.5", "lodash": "^4.17.5",
"valid-url": "^1.0.9" "valid-url": "^1.0.9"
}, },

View File

@ -1,5 +1,5 @@
import { Schema, SchemaValidator } from '@0xproject/json-schemas'; import { Schema, SchemaValidator } from '@0x/json-schemas';
import { addressUtils, BigNumber } from '@0xproject/utils'; import { addressUtils, BigNumber } from '@0x/utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
import * as validUrl from 'valid-url'; import * as validUrl from 'valid-url';

View File

@ -1,5 +1,5 @@
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import * as dirtyChai from 'dirty-chai'; import * as dirtyChai from 'dirty-chai';
import 'mocha'; import 'mocha';

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/asset-buyer", "name": "@0x/asset-buyer",
"version": "2.0.0", "version": "2.0.0",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
@ -36,21 +36,21 @@
}, },
"homepage": "https://github.com/0xProject/0x-monorepo/packages/asset-buyer/README.md", "homepage": "https://github.com/0xProject/0x-monorepo/packages/asset-buyer/README.md",
"dependencies": { "dependencies": {
"@0xproject/assert": "^1.0.13", "@0x/assert": "^1.0.13",
"@0xproject/connect": "^3.0.1", "@0x/connect": "^3.0.1",
"@0xproject/contract-wrappers": "^2.0.2", "@0x/contract-wrappers": "^2.0.2",
"@0xproject/json-schemas": "^1.0.7", "@0x/json-schemas": "^1.0.7",
"@0xproject/order-utils": "^1.0.7", "@0x/order-utils": "^1.0.7",
"@0xproject/subproviders": "^2.0.7", "@0x/subproviders": "^2.0.7",
"@0xproject/types": "^1.1.4", "@0x/types": "^1.1.4",
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"@0xproject/web3-wrapper": "^3.0.3", "@0x/web3-wrapper": "^3.0.3",
"ethereum-types": "^1.0.11", "ethereum-types": "^1.0.11",
"lodash": "^4.17.10" "lodash": "^4.17.10"
}, },
"devDependencies": { "devDependencies": {
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/lodash": "^4.14.116", "@types/lodash": "^4.14.116",
"@types/mocha": "^2.2.42", "@types/mocha": "^2.2.42",
"@types/node": "*", "@types/node": "*",

View File

@ -1,9 +1,9 @@
import { ContractWrappers } from '@0xproject/contract-wrappers'; import { ContractWrappers } from '@0x/contract-wrappers';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { SignedOrder } from '@0xproject/order-utils'; import { SignedOrder } from '@0x/order-utils';
import { ObjectMap } from '@0xproject/types'; import { ObjectMap } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { Provider } from 'ethereum-types'; import { Provider } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,4 +1,4 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { AssetBuyerOpts, BuyQuoteExecutionOpts, BuyQuoteRequestOpts } from './types'; import { AssetBuyerOpts, BuyQuoteExecutionOpts, BuyQuoteRequestOpts } from './types';

View File

@ -5,8 +5,8 @@ export {
JSONRPCErrorCallback, JSONRPCErrorCallback,
Provider, Provider,
} from 'ethereum-types'; } from 'ethereum-types';
export { SignedOrder } from '@0xproject/types'; export { SignedOrder } from '@0x/types';
export { BigNumber } from '@0xproject/utils'; export { BigNumber } from '@0x/utils';
export { AssetBuyer } from './asset_buyer'; export { AssetBuyer } from './asset_buyer';
export { BasicOrderProvider } from './order_providers/basic_order_provider'; export { BasicOrderProvider } from './order_providers/basic_order_provider';

View File

@ -1,5 +1,5 @@
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { OrderProvider, OrderProviderRequest, OrderProviderResponse } from '../types'; import { OrderProvider, OrderProviderRequest, OrderProviderResponse } from '../types';

View File

@ -1,5 +1,5 @@
import { HttpClient } from '@0xproject/connect'; import { HttpClient } from '@0x/connect';
import { APIOrder, OrderbookResponse } from '@0xproject/types'; import { APIOrder, OrderbookResponse } from '@0x/types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { import {

View File

@ -1,5 +1,5 @@
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
/** /**
* makerAssetData: The assetData representing the desired makerAsset. * makerAssetData: The assetData representing the desired makerAsset.

View File

@ -1,6 +1,6 @@
import { assert as sharedAssert } from '@0xproject/assert'; import { assert as sharedAssert } from '@0x/assert';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { BuyQuote, BuyQuoteInfo, OrderProvider, OrderProviderRequest } from '../types'; import { BuyQuote, BuyQuoteInfo, OrderProvider, OrderProviderRequest } from '../types';

View File

@ -1,5 +1,5 @@
import { ContractWrappers } from '@0xproject/contract-wrappers'; import { ContractWrappers } from '@0x/contract-wrappers';
import { assetDataUtils as sharedAssetDataUtils } from '@0xproject/order-utils'; import { assetDataUtils as sharedAssetDataUtils } from '@0x/order-utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
export const assetDataUtils = { export const assetDataUtils = {

View File

@ -1,5 +1,5 @@
import { marketUtils, rateUtils } from '@0xproject/order-utils'; import { marketUtils, rateUtils } from '@0x/order-utils';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { constants } from '../constants'; import { constants } from '../constants';

View File

@ -1,8 +1,8 @@
import { OrderAndTraderInfo, OrderStatus, OrderValidatorWrapper } from '@0xproject/contract-wrappers'; import { OrderAndTraderInfo, OrderStatus, OrderValidatorWrapper } from '@0x/contract-wrappers';
import { sortingUtils } from '@0xproject/order-utils'; import { sortingUtils } from '@0x/order-utils';
import { RemainingFillableCalculator } from '@0xproject/order-utils/lib/src/remaining_fillable_calculator'; import { RemainingFillableCalculator } from '@0x/order-utils/lib/src/remaining_fillable_calculator';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { constants } from '../constants'; import { constants } from '../constants';

View File

@ -1,5 +1,5 @@
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { constants } from '../constants'; import { constants } from '../constants';

View File

@ -1,5 +1,5 @@
import { orderFactory } from '@0xproject/order-utils/lib/src/order_factory'; import { orderFactory } from '@0x/order-utils/lib/src/order_factory';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import * as _ from 'lodash'; import * as _ from 'lodash';
import 'mocha'; import 'mocha';

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/base-contract", "name": "@0x/base-contract",
"version": "3.0.1", "version": "3.0.1",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
@ -29,7 +29,7 @@
}, },
"homepage": "https://github.com/0xProject/0x-monorepo/packages/base-contract/README.md", "homepage": "https://github.com/0xProject/0x-monorepo/packages/base-contract/README.md",
"devDependencies": { "devDependencies": {
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/lodash": "4.14.104", "@types/lodash": "4.14.104",
"chai": "^4.0.1", "chai": "^4.0.1",
"make-promises-safe": "^1.1.0", "make-promises-safe": "^1.1.0",
@ -40,9 +40,9 @@
"typescript": "3.0.1" "typescript": "3.0.1"
}, },
"dependencies": { "dependencies": {
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"@0xproject/web3-wrapper": "^3.0.3", "@0x/web3-wrapper": "^3.0.3",
"ethereum-types": "^1.0.11", "ethereum-types": "^1.0.11",
"ethers": "~4.0.4", "ethers": "~4.0.4",
"lodash": "^4.17.5" "lodash": "^4.17.5"

View File

@ -1,5 +1,5 @@
import { abiUtils, BigNumber } from '@0xproject/utils'; import { abiUtils, BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { import {
AbiDefinition, AbiDefinition,
AbiType, AbiType,

View File

@ -1,4 +1,4 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import 'mocha'; import 'mocha';

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/connect", "name": "@0x/connect",
"version": "3.0.1", "version": "3.0.1",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"
@ -44,12 +44,12 @@
}, },
"homepage": "https://github.com/0xProject/0x-monorepo/packages/connect/README.md", "homepage": "https://github.com/0xProject/0x-monorepo/packages/connect/README.md",
"dependencies": { "dependencies": {
"@0xproject/assert": "^1.0.13", "@0x/assert": "^1.0.13",
"@0xproject/json-schemas": "^1.0.7", "@0x/json-schemas": "^1.0.7",
"@0xproject/order-utils": "^1.0.7", "@0x/order-utils": "^1.0.7",
"@0xproject/types": "^1.1.4", "@0x/types": "^1.1.4",
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"lodash": "^4.17.5", "lodash": "^4.17.5",
"query-string": "^5.0.1", "query-string": "^5.0.1",
"sinon": "^4.0.0", "sinon": "^4.0.0",
@ -57,7 +57,7 @@
"websocket": "^1.0.25" "websocket": "^1.0.25"
}, },
"devDependencies": { "devDependencies": {
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/fetch-mock": "^6.0.3", "@types/fetch-mock": "^6.0.3",
"@types/lodash": "4.14.104", "@types/lodash": "4.14.104",
"@types/mocha": "^2.2.42", "@types/mocha": "^2.2.42",

View File

@ -1,5 +1,5 @@
import { assert } from '@0xproject/assert'; import { assert } from '@0x/assert';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { import {
APIOrder, APIOrder,
AssetPairsRequestOpts, AssetPairsRequestOpts,
@ -14,8 +14,8 @@ import {
PagedRequestOpts, PagedRequestOpts,
RequestOpts, RequestOpts,
SignedOrder, SignedOrder,
} from '@0xproject/types'; } from '@0x/types';
import { fetchAsync } from '@0xproject/utils'; import { fetchAsync } from '@0x/utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
import * as queryString from 'query-string'; import * as queryString from 'query-string';

View File

@ -17,4 +17,4 @@ export {
PaginatedCollection, PaginatedCollection,
RequestOpts, RequestOpts,
SignedOrder, SignedOrder,
} from '@0xproject/types'; } from '@0x/types';

View File

@ -12,7 +12,7 @@ import {
PagedRequestOpts, PagedRequestOpts,
PaginatedCollection, PaginatedCollection,
SignedOrder, SignedOrder,
} from '@0xproject/types'; } from '@0x/types';
export interface Client { export interface Client {
getAssetPairsAsync: ( getAssetPairsAsync: (

View File

@ -1,11 +1,11 @@
import { assert as sharedAssert } from '@0xproject/assert'; import { assert as sharedAssert } from '@0x/assert';
// HACK: We need those two unused imports because they're actually used by sharedAssert which gets injected here // HACK: We need those two unused imports because they're actually used by sharedAssert which gets injected here
// tslint:disable-next-line:no-unused-variable // tslint:disable-next-line:no-unused-variable
import { Schema, schemas } from '@0xproject/json-schemas'; import { Schema, schemas } from '@0x/json-schemas';
// tslint:disable-next-line:no-unused-variable // tslint:disable-next-line:no-unused-variable
import { ECSignature } from '@0xproject/types'; import { ECSignature } from '@0x/types';
// tslint:disable-next-line:no-unused-variable // tslint:disable-next-line:no-unused-variable
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
export const assert = { export const assert = {

View File

@ -1,8 +1,8 @@
import { assert } from '@0xproject/assert'; import { assert } from '@0x/assert';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { OrdersChannelMessage, OrdersChannelMessageTypes } from '@0xproject/types'; import { OrdersChannelMessage, OrdersChannelMessageTypes } from '@0x/types';
import { relayerResponseJsonParsers } from './relayer_response_json_parsers'; import { relayerResponseJsonParsers } from './relayer_response_json_parsers';

View File

@ -1,6 +1,6 @@
import { assert } from '@0xproject/assert'; import { assert } from '@0x/assert';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { orderParsingUtils } from '@0xproject/order-utils'; import { orderParsingUtils } from '@0x/order-utils';
import { import {
APIOrder, APIOrder,
@ -9,7 +9,7 @@ import {
OrderbookResponse, OrderbookResponse,
OrderConfigResponse, OrderConfigResponse,
OrdersResponse, OrdersResponse,
} from '@0xproject/types'; } from '@0x/types';
import { typeConverters } from './type_converters'; import { typeConverters } from './type_converters';

View File

@ -1,7 +1,7 @@
import { orderParsingUtils } from '@0xproject/order-utils'; import { orderParsingUtils } from '@0x/order-utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { APIOrder } from '@0xproject/types'; import { APIOrder } from '@0x/types';
export const typeConverters = { export const typeConverters = {
convertOrderbookStringFieldsToBigNumber(orderbook: any): any { convertOrderbookStringFieldsToBigNumber(orderbook: any): any {

View File

@ -1,4 +1,4 @@
import { OrdersChannelMessageTypes, OrdersChannelSubscriptionOpts } from '@0xproject/types'; import { OrdersChannelMessageTypes, OrdersChannelSubscriptionOpts } from '@0x/types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { v4 as uuid } from 'uuid'; import { v4 as uuid } from 'uuid';
import * as WebSocket from 'websocket'; import * as WebSocket from 'websocket';

View File

@ -1,6 +1,6 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { AssetPairsResponse } from '@0xproject/types'; import { AssetPairsResponse } from '@0x/types';
export const assetDataPairsResponse: AssetPairsResponse = { export const assetDataPairsResponse: AssetPairsResponse = {
total: 43, total: 43,

View File

@ -1,4 +1,4 @@
import { FeeRecipientsResponse } from '@0xproject/types'; import { FeeRecipientsResponse } from '@0x/types';
export const feeRecipientsResponse: FeeRecipientsResponse = { export const feeRecipientsResponse: FeeRecipientsResponse = {
total: 3, total: 3,

View File

@ -1,4 +1,4 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
export const orderResponse = { export const orderResponse = {
order: { order: {

View File

@ -1,6 +1,6 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { OrderConfigResponse } from '@0xproject/types'; import { OrderConfigResponse } from '@0x/types';
export const orderConfigResponse: OrderConfigResponse = { export const orderConfigResponse: OrderConfigResponse = {
senderAddress: '0xa2b31dacf30a9c50ca473337c01d8a201ae33e32', senderAddress: '0xa2b31dacf30a9c50ca473337c01d8a201ae33e32',

View File

@ -1,6 +1,6 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { OrderbookResponse } from '@0xproject/types'; import { OrderbookResponse } from '@0x/types';
export const orderbookResponse: OrderbookResponse = { export const orderbookResponse: OrderbookResponse = {
bids: { bids: {

View File

@ -1,6 +1,6 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { OrdersResponse } from '@0xproject/types'; import { OrdersResponse } from '@0x/types';
export const ordersResponse: OrdersResponse = { export const ordersResponse: OrdersResponse = {
total: 984, total: 984,

View File

@ -1,4 +1,4 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import * as chaiAsPromised from 'chai-as-promised'; import * as chaiAsPromised from 'chai-as-promised';
import * as dirtyChai from 'dirty-chai'; import * as dirtyChai from 'dirty-chai';

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/contract-addresses", "name": "@0x/contract-addresses",
"version": "1.0.0", "version": "1.0.0",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/contract-artifacts", "name": "@0x/contract-artifacts",
"version": "1.0.0", "version": "1.0.0",
"engines": { "engines": {
"node": ">=6.12" "node": ">=6.12"

View File

@ -1,5 +1,5 @@
{ {
"name": "@0xproject/contract-wrappers", "name": "@0x/contract-wrappers",
"version": "2.0.2", "version": "2.0.2",
"description": "Smart TS wrappers for 0x smart contracts", "description": "Smart TS wrappers for 0x smart contracts",
"keywords": [ "keywords": [
@ -37,10 +37,10 @@
"node": ">=6.0.0" "node": ">=6.0.0"
}, },
"devDependencies": { "devDependencies": {
"@0xproject/dev-utils": "^1.0.12", "@0x/dev-utils": "^1.0.12",
"@0xproject/migrations": "^1.0.14", "@0x/migrations": "^1.0.14",
"@0xproject/subproviders": "^2.0.7", "@0x/subproviders": "^2.0.7",
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/lodash": "4.14.104", "@types/lodash": "4.14.104",
"@types/mocha": "^2.2.42", "@types/mocha": "^2.2.42",
"@types/node": "*", "@types/node": "*",
@ -65,17 +65,17 @@
"web3-provider-engine": "14.0.6" "web3-provider-engine": "14.0.6"
}, },
"dependencies": { "dependencies": {
"@0xproject/abi-gen-wrappers": "^1.0.0", "@0x/abi-gen-wrappers": "^1.0.0",
"@0xproject/assert": "^1.0.13", "@0x/assert": "^1.0.13",
"@0xproject/contract-addresses": "^1.0.0", "@0x/contract-addresses": "^1.0.0",
"@0xproject/contract-artifacts": "^1.0.0", "@0x/contract-artifacts": "^1.0.0",
"@0xproject/fill-scenarios": "^1.0.7", "@0x/fill-scenarios": "^1.0.7",
"@0xproject/json-schemas": "^1.0.7", "@0x/json-schemas": "^1.0.7",
"@0xproject/order-utils": "^1.0.7", "@0x/order-utils": "^1.0.7",
"@0xproject/types": "^1.1.4", "@0x/types": "^1.1.4",
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"@0xproject/web3-wrapper": "^3.0.3", "@0x/web3-wrapper": "^3.0.3",
"ethereum-types": "^1.0.11", "ethereum-types": "^1.0.11",
"ethereumjs-blockstream": "6.0.0", "ethereumjs-blockstream": "6.0.0",
"ethereumjs-util": "^5.1.1", "ethereumjs-util": "^5.1.1",

View File

@ -1,4 +1,4 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
export abstract class AbstractBalanceAndProxyAllowanceLazyStore { export abstract class AbstractBalanceAndProxyAllowanceLazyStore {
public abstract async getBalanceAsync(tokenAddress: string, userAddress: string): Promise<BigNumber>; public abstract async getBalanceAsync(tokenAddress: string, userAddress: string): Promise<BigNumber>;

View File

@ -7,8 +7,8 @@ import {
Forwarder, Forwarder,
OrderValidator, OrderValidator,
WETH9, WETH9,
} from '@0xproject/contract-artifacts'; } from '@0x/contract-artifacts';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { Provider } from 'ethereum-types'; import { Provider } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,5 +1,5 @@
import { AbiDecoder, intervalUtils, logUtils } from '@0xproject/utils'; import { AbiDecoder, intervalUtils, logUtils } from '@0x/utils';
import { marshaller, Web3Wrapper } from '@0xproject/web3-wrapper'; import { marshaller, Web3Wrapper } from '@0x/web3-wrapper';
import { import {
BlockParamLiteral, BlockParamLiteral,
ContractAbi, ContractAbi,

View File

@ -1,7 +1,7 @@
import { ERC20ProxyContract } from '@0xproject/abi-gen-wrappers'; import { ERC20ProxyContract } from '@0x/abi-gen-wrappers';
import { ERC20Proxy } from '@0xproject/contract-artifacts'; import { ERC20Proxy } from '@0x/contract-artifacts';
import { AssetProxyId } from '@0xproject/types'; import { AssetProxyId } from '@0x/types';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { ContractAbi } from 'ethereum-types'; import { ContractAbi } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,8 +1,8 @@
import { ERC20TokenContract, ERC20TokenEventArgs, ERC20TokenEvents } from '@0xproject/abi-gen-wrappers'; import { ERC20TokenContract, ERC20TokenEventArgs, ERC20TokenEvents } from '@0x/abi-gen-wrappers';
import { ERC20Token } from '@0xproject/contract-artifacts'; import { ERC20Token } from '@0x/contract-artifacts';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { ContractAbi, LogWithDecodedArgs } from 'ethereum-types'; import { ContractAbi, LogWithDecodedArgs } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,7 +1,7 @@
import { ERC721ProxyContract } from '@0xproject/abi-gen-wrappers'; import { ERC721ProxyContract } from '@0x/abi-gen-wrappers';
import { ERC721Proxy } from '@0xproject/contract-artifacts'; import { ERC721Proxy } from '@0x/contract-artifacts';
import { AssetProxyId } from '@0xproject/types'; import { AssetProxyId } from '@0x/types';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { ContractAbi } from 'ethereum-types'; import { ContractAbi } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,8 +1,8 @@
import { ERC721TokenContract, ERC721TokenEventArgs, ERC721TokenEvents } from '@0xproject/abi-gen-wrappers'; import { ERC721TokenContract, ERC721TokenEventArgs, ERC721TokenEvents } from '@0x/abi-gen-wrappers';
import { ERC721Token } from '@0xproject/contract-artifacts'; import { ERC721Token } from '@0x/contract-artifacts';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { ContractAbi, LogWithDecodedArgs } from 'ethereum-types'; import { ContractAbi, LogWithDecodedArgs } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,8 +1,8 @@
import { WETH9Contract, WETH9EventArgs, WETH9Events } from '@0xproject/abi-gen-wrappers'; import { WETH9Contract, WETH9EventArgs, WETH9Events } from '@0x/abi-gen-wrappers';
import { WETH9 } from '@0xproject/contract-artifacts'; import { WETH9 } from '@0x/contract-artifacts';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { ContractAbi, LogWithDecodedArgs } from 'ethereum-types'; import { ContractAbi, LogWithDecodedArgs } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,15 +1,15 @@
import { ExchangeContract, ExchangeEventArgs, ExchangeEvents } from '@0xproject/abi-gen-wrappers'; import { ExchangeContract, ExchangeEventArgs, ExchangeEvents } from '@0x/abi-gen-wrappers';
import { Exchange } from '@0xproject/contract-artifacts'; import { Exchange } from '@0x/contract-artifacts';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { import {
assetDataUtils, assetDataUtils,
BalanceAndProxyAllowanceLazyStore, BalanceAndProxyAllowanceLazyStore,
ExchangeTransferSimulator, ExchangeTransferSimulator,
OrderValidationUtils, OrderValidationUtils,
} from '@0xproject/order-utils'; } from '@0x/order-utils';
import { AssetProxyId, Order, SignedOrder } from '@0xproject/types'; import { AssetProxyId, Order, SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { BlockParamLiteral, ContractAbi, LogWithDecodedArgs } from 'ethereum-types'; import { BlockParamLiteral, ContractAbi, LogWithDecodedArgs } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,9 +1,9 @@
import { ForwarderContract } from '@0xproject/abi-gen-wrappers'; import { ForwarderContract } from '@0x/abi-gen-wrappers';
import { Forwarder } from '@0xproject/contract-artifacts'; import { Forwarder } from '@0x/contract-artifacts';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { AssetProxyId, SignedOrder } from '@0xproject/types'; import { AssetProxyId, SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { ContractAbi } from 'ethereum-types'; import { ContractAbi } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,9 +1,9 @@
import { OrderValidatorContract } from '@0xproject/abi-gen-wrappers'; import { OrderValidatorContract } from '@0x/abi-gen-wrappers';
import { OrderValidator } from '@0xproject/contract-artifacts'; import { OrderValidator } from '@0x/contract-artifacts';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { ContractAbi } from 'ethereum-types'; import { ContractAbi } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,7 +1,7 @@
// tslint:disable:no-unnecessary-type-assertion // tslint:disable:no-unnecessary-type-assertion
import { AbstractBalanceAndProxyAllowanceFetcher, assetDataUtils } from '@0xproject/order-utils'; import { AbstractBalanceAndProxyAllowanceFetcher, assetDataUtils } from '@0x/order-utils';
import { AssetProxyId, ERC20AssetData, ERC721AssetData } from '@0xproject/types'; import { AssetProxyId, ERC20AssetData, ERC721AssetData } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { BlockParamLiteral } from 'ethereum-types'; import { BlockParamLiteral } from 'ethereum-types';
import { ERC20TokenWrapper } from '../contract_wrappers/erc20_token_wrapper'; import { ERC20TokenWrapper } from '../contract_wrappers/erc20_token_wrapper';

View File

@ -1,6 +1,6 @@
// tslint:disable:no-unnecessary-type-assertion // tslint:disable:no-unnecessary-type-assertion
import { AbstractOrderFilledCancelledFetcher } from '@0xproject/order-utils'; import { AbstractOrderFilledCancelledFetcher } from '@0x/order-utils';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { BlockParamLiteral } from 'ethereum-types'; import { BlockParamLiteral } from 'ethereum-types';
import { ExchangeWrapper } from '../contract_wrappers/exchange_wrapper'; import { ExchangeWrapper } from '../contract_wrappers/exchange_wrapper';

View File

@ -1,4 +1,4 @@
export { ContractAddresses } from '@0xproject/contract-addresses'; export { ContractAddresses } from '@0x/contract-addresses';
export { export {
WETH9Events, WETH9Events,
@ -23,7 +23,7 @@ export {
ExchangeCancelEventArgs, ExchangeCancelEventArgs,
ExchangeEventArgs, ExchangeEventArgs,
ExchangeEvents, ExchangeEvents,
} from '@0xproject/abi-gen-wrappers'; } from '@0x/abi-gen-wrappers';
export { ContractWrappers } from './contract_wrappers'; export { ContractWrappers } from './contract_wrappers';
export { ERC20TokenWrapper } from './contract_wrappers/erc20_token_wrapper'; export { ERC20TokenWrapper } from './contract_wrappers/erc20_token_wrapper';
@ -55,7 +55,7 @@ export {
ValidateOrderFillableOpts, ValidateOrderFillableOpts,
} from './types'; } from './types';
export { Order, SignedOrder, AssetProxyId } from '@0xproject/types'; export { Order, SignedOrder, AssetProxyId } from '@0x/types';
export { export {
BlockParamLiteral, BlockParamLiteral,
@ -81,7 +81,7 @@ export {
StateMutability, StateMutability,
} from 'ethereum-types'; } from 'ethereum-types';
export { AbstractBalanceAndProxyAllowanceFetcher, AbstractOrderFilledCancelledFetcher } from '@0xproject/order-utils'; export { AbstractBalanceAndProxyAllowanceFetcher, AbstractOrderFilledCancelledFetcher } from '@0x/order-utils';
export { AssetBalanceAndProxyAllowanceFetcher } from './fetchers/asset_balance_and_proxy_allowance_fetcher'; export { AssetBalanceAndProxyAllowanceFetcher } from './fetchers/asset_balance_and_proxy_allowance_fetcher';
export { OrderFilledCancelledFetcher } from './fetchers/order_filled_cancelled_fetcher'; export { OrderFilledCancelledFetcher } from './fetchers/order_filled_cancelled_fetcher';

View File

@ -7,10 +7,10 @@ import {
ExchangeEvents, ExchangeEvents,
WETH9EventArgs, WETH9EventArgs,
WETH9Events, WETH9Events,
} from '@0xproject/abi-gen-wrappers'; } from '@0x/abi-gen-wrappers';
import { ContractAddresses } from '@0xproject/contract-addresses'; import { ContractAddresses } from '@0x/contract-addresses';
import { OrderState, SignedOrder } from '@0xproject/types'; import { OrderState, SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { BlockParam, ContractEventArg, DecodedLogArgs, LogEntryEvent, LogWithDecodedArgs } from 'ethereum-types'; import { BlockParam, ContractEventArg, DecodedLogArgs, LogEntryEvent, LogWithDecodedArgs } from 'ethereum-types';

View File

@ -1,10 +1,10 @@
import { assert as sharedAssert } from '@0xproject/assert'; import { assert as sharedAssert } from '@0x/assert';
// HACK: We need those two unused imports because they're actually used by sharedAssert which gets injected here // HACK: We need those two unused imports because they're actually used by sharedAssert which gets injected here
import { Schema } from '@0xproject/json-schemas'; // tslint:disable-line:no-unused-variable import { Schema } from '@0x/json-schemas'; // tslint:disable-line:no-unused-variable
import { assetDataUtils, signatureUtils } from '@0xproject/order-utils'; import { assetDataUtils, signatureUtils } from '@0x/order-utils';
import { Order } from '@0xproject/types'; // tslint:disable-line:no-unused-variable import { Order } from '@0x/types'; // tslint:disable-line:no-unused-variable
import { BigNumber } from '@0xproject/utils'; // tslint:disable-line:no-unused-variable import { BigNumber } from '@0x/utils'; // tslint:disable-line:no-unused-variable
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { Provider } from 'ethereum-types'; import { Provider } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,4 +1,4 @@
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { constants } from './constants'; import { constants } from './constants';

View File

@ -1,4 +1,4 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
export const constants = { export const constants = {
NULL_ADDRESS: '0x0000000000000000000000000000000000000000', NULL_ADDRESS: '0x0000000000000000000000000000000000000000',

View File

@ -1,4 +1,4 @@
import { ContractAddresses, getContractAddressesForNetworkOrThrow, NetworkId } from '@0xproject/contract-addresses'; import { ContractAddresses, getContractAddressesForNetworkOrThrow, NetworkId } from '@0x/contract-addresses';
import * as _ from 'lodash'; import * as _ from 'lodash';
/** /**

View File

@ -1,5 +1,5 @@
import { ExchangeContractErrs } from '@0xproject/types'; import { ExchangeContractErrs } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { AbstractBalanceAndProxyAllowanceLazyStore } from '../abstract/abstract_balance_and_proxy_allowance_lazy_store'; import { AbstractBalanceAndProxyAllowanceLazyStore } from '../abstract/abstract_balance_and_proxy_allowance_lazy_store';
import { TradeSide, TransferType } from '../types'; import { TradeSide, TransferType } from '../types';

View File

@ -1,9 +1,9 @@
import { ExchangeContract } from '@0xproject/abi-gen-wrappers'; import { ExchangeContract } from '@0x/abi-gen-wrappers';
import { schemas } from '@0xproject/json-schemas'; import { schemas } from '@0x/json-schemas';
import { eip712Utils } from '@0xproject/order-utils'; import { eip712Utils } from '@0x/order-utils';
import { Order, SignedOrder } from '@0xproject/types'; import { Order, SignedOrder } from '@0x/types';
import { BigNumber, signTypedDataUtils } from '@0xproject/utils'; import { BigNumber, signTypedDataUtils } from '@0x/utils';
import _ = require('lodash'); import _ = require('lodash');
import { assert } from './assert'; import { assert } from './assert';

View File

@ -1,5 +1,5 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { constants } from './constants'; import { constants } from './constants';

View File

@ -1,4 +1,4 @@
import { orderFactory } from '@0xproject/order-utils/lib/src/order_factory'; import { orderFactory } from '@0x/order-utils/lib/src/order_factory';
import * as chai from 'chai'; import * as chai from 'chai';
import * as _ from 'lodash'; import * as _ from 'lodash';
import 'mocha'; import 'mocha';

View File

@ -1,8 +1,8 @@
import { ContractAddresses } from '@0xproject/contract-addresses'; import { ContractAddresses } from '@0x/contract-addresses';
import { BlockchainLifecycle, callbackErrorReporter } from '@0xproject/dev-utils'; import { BlockchainLifecycle, callbackErrorReporter } from '@0x/dev-utils';
import { EmptyWalletSubprovider, Web3ProviderEngine } from '@0xproject/subproviders'; import { EmptyWalletSubprovider, Web3ProviderEngine } from '@0x/subproviders';
import { DoneCallback } from '@0xproject/types'; import { DoneCallback } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import { Provider } from 'ethereum-types'; import { Provider } from 'ethereum-types';
import 'mocha'; import 'mocha';

View File

@ -1,7 +1,7 @@
import { BlockchainLifecycle, callbackErrorReporter } from '@0xproject/dev-utils'; import { BlockchainLifecycle, callbackErrorReporter } from '@0x/dev-utils';
import { EmptyWalletSubprovider, Web3ProviderEngine } from '@0xproject/subproviders'; import { EmptyWalletSubprovider, Web3ProviderEngine } from '@0x/subproviders';
import { DoneCallback } from '@0xproject/types'; import { DoneCallback } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import { Provider } from 'ethereum-types'; import { Provider } from 'ethereum-types';
import 'mocha'; import 'mocha';

View File

@ -1,8 +1,8 @@
import { ContractAddresses } from '@0xproject/contract-addresses'; import { ContractAddresses } from '@0x/contract-addresses';
import { BlockchainLifecycle, callbackErrorReporter } from '@0xproject/dev-utils'; import { BlockchainLifecycle, callbackErrorReporter } from '@0x/dev-utils';
import { DoneCallback } from '@0xproject/types'; import { DoneCallback } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as chai from 'chai'; import * as chai from 'chai';
import 'mocha'; import 'mocha';

View File

@ -1,8 +1,8 @@
import { BlockchainLifecycle, callbackErrorReporter } from '@0xproject/dev-utils'; import { BlockchainLifecycle, callbackErrorReporter } from '@0x/dev-utils';
import { FillScenarios } from '@0xproject/fill-scenarios'; import { FillScenarios } from '@0x/fill-scenarios';
import { assetDataUtils, orderHashUtils } from '@0xproject/order-utils'; import { assetDataUtils, orderHashUtils } from '@0x/order-utils';
import { DoneCallback, SignedOrder } from '@0xproject/types'; import { DoneCallback, SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import { BlockParamLiteral } from 'ethereum-types'; import { BlockParamLiteral } from 'ethereum-types';
import 'mocha'; import 'mocha';

View File

@ -1,8 +1,8 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { FillScenarios } from '@0xproject/fill-scenarios'; import { FillScenarios } from '@0x/fill-scenarios';
import { assetDataUtils } from '@0xproject/order-utils'; import { assetDataUtils } from '@0x/order-utils';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import 'mocha'; import 'mocha';

View File

@ -1,9 +1,9 @@
import { ContractAddresses } from '@0xproject/contract-addresses'; import { ContractAddresses } from '@0x/contract-addresses';
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { FillScenarios } from '@0xproject/fill-scenarios'; import { FillScenarios } from '@0x/fill-scenarios';
import { assetDataUtils } from '@0xproject/order-utils'; import { assetDataUtils } from '@0x/order-utils';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import * as _ from 'lodash'; import * as _ from 'lodash';
import 'mocha'; import 'mocha';

View File

@ -1,10 +1,10 @@
import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils'; import { BlockchainLifecycle, devConstants, web3Factory } from '@0x/dev-utils';
import { FillScenarios } from '@0xproject/fill-scenarios'; import { FillScenarios } from '@0x/fill-scenarios';
import { runMigrationsAsync } from '@0xproject/migrations'; import { runMigrationsAsync } from '@0x/migrations';
import { assetDataUtils } from '@0xproject/order-utils'; import { assetDataUtils } from '@0x/order-utils';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as chai from 'chai'; import * as chai from 'chai';
import 'mocha'; import 'mocha';

View File

@ -1,5 +1,5 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { DoneCallback } from '@0xproject/types'; import { DoneCallback } from '@0x/types';
import * as _ from 'lodash'; import * as _ from 'lodash';
import 'mocha'; import 'mocha';
import * as Sinon from 'sinon'; import * as Sinon from 'sinon';

View File

@ -1,8 +1,8 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { FillScenarios } from '@0xproject/fill-scenarios'; import { FillScenarios } from '@0x/fill-scenarios';
import { assetDataUtils, generatePseudoRandomSalt, orderHashUtils, signatureUtils } from '@0xproject/order-utils'; import { assetDataUtils, generatePseudoRandomSalt, orderHashUtils, signatureUtils } from '@0x/order-utils';
import { SignedOrder } from '@0xproject/types'; import { SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import 'mocha'; import 'mocha';
import { ContractWrappers } from '../src'; import { ContractWrappers } from '../src';

View File

@ -1,4 +1,4 @@
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
export const constants = { export const constants = {
NULL_ADDRESS: '0x0000000000000000000000000000000000000000', NULL_ADDRESS: '0x0000000000000000000000000000000000000000',

View File

@ -1,6 +1,6 @@
import { ContractAddresses } from '@0xproject/contract-addresses'; import { ContractAddresses } from '@0x/contract-addresses';
import { devConstants } from '@0xproject/dev-utils'; import { devConstants } from '@0x/dev-utils';
import { runMigrationsOnceAsync } from '@0xproject/migrations'; import { runMigrationsOnceAsync } from '@0x/migrations';
import { provider } from './web3_wrapper'; import { provider } from './web3_wrapper';

View File

@ -1,7 +1,7 @@
import { DummyERC721TokenContract } from '@0xproject/abi-gen-wrappers'; import { DummyERC721TokenContract } from '@0x/abi-gen-wrappers';
import { DummyERC721Token } from '@0xproject/contract-artifacts'; import { DummyERC721Token } from '@0x/contract-artifacts';
import { generatePseudoRandomSalt } from '@0xproject/order-utils'; import { generatePseudoRandomSalt } from '@0x/order-utils';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { provider, txDefaults, web3Wrapper } from './web3_wrapper'; import { provider, txDefaults, web3Wrapper } from './web3_wrapper';

View File

@ -1,5 +1,5 @@
import { devConstants, web3Factory } from '@0xproject/dev-utils'; import { devConstants, web3Factory } from '@0x/dev-utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import { Provider } from 'ethereum-types'; import { Provider } from 'ethereum-types';
const txDefaults = { const txDefaults = {

View File

@ -45,12 +45,12 @@
}, },
"homepage": "https://github.com/0xProject/0x-monorepo/packages/contracts/README.md", "homepage": "https://github.com/0xProject/0x-monorepo/packages/contracts/README.md",
"devDependencies": { "devDependencies": {
"@0xproject/abi-gen": "^1.0.13", "@0x/abi-gen": "^1.0.13",
"@0xproject/dev-utils": "^1.0.12", "@0x/dev-utils": "^1.0.12",
"@0xproject/sol-compiler": "^1.1.7", "@0x/sol-compiler": "^1.1.7",
"@0xproject/sol-cov": "^2.1.7", "@0x/sol-cov": "^2.1.7",
"@0xproject/subproviders": "^2.0.7", "@0x/subproviders": "^2.0.7",
"@0xproject/tslint-config": "^1.0.8", "@0x/tslint-config": "^1.0.8",
"@types/bn.js": "^4.11.0", "@types/bn.js": "^4.11.0",
"@types/ethereumjs-abi": "^0.6.0", "@types/ethereumjs-abi": "^0.6.0",
"@types/lodash": "4.14.104", "@types/lodash": "4.14.104",
@ -71,12 +71,12 @@
"yargs": "^10.0.3" "yargs": "^10.0.3"
}, },
"dependencies": { "dependencies": {
"@0xproject/base-contract": "^3.0.1", "@0x/base-contract": "^3.0.1",
"@0xproject/order-utils": "^1.0.7", "@0x/order-utils": "^1.0.7",
"@0xproject/types": "^1.1.4", "@0x/types": "^1.1.4",
"@0xproject/typescript-typings": "^3.0.2", "@0x/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2", "@0x/utils": "^2.0.2",
"@0xproject/web3-wrapper": "^3.0.3", "@0x/web3-wrapper": "^3.0.3",
"@types/js-combinatorics": "^0.5.29", "@types/js-combinatorics": "^0.5.29",
"bn.js": "^4.11.8", "bn.js": "^4.11.8",
"ethereum-types": "^1.0.11", "ethereum-types": "^1.0.11",

View File

@ -1,6 +1,6 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { RevertReason } from '@0xproject/types'; import { RevertReason } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,7 +1,7 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { assetDataUtils } from '@0xproject/order-utils'; import { assetDataUtils } from '@0x/order-utils';
import { RevertReason } from '@0xproject/types'; import { RevertReason } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,8 +1,8 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { assetDataUtils, orderHashUtils } from '@0xproject/order-utils'; import { assetDataUtils, orderHashUtils } from '@0x/order-utils';
import { RevertReason, SignatureType, SignedOrder } from '@0xproject/types'; import { RevertReason, SignatureType, SignedOrder } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as chai from 'chai'; import * as chai from 'chai';
import { LogWithDecodedArgs } from 'ethereum-types'; import { LogWithDecodedArgs } from 'ethereum-types';
import ethUtil = require('ethereumjs-util'); import ethUtil = require('ethereumjs-util');

View File

@ -1,7 +1,7 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import { assetDataUtils } from '@0xproject/order-utils'; import { assetDataUtils } from '@0x/order-utils';
import { AssetProxyId, RevertReason } from '@0xproject/types'; import { AssetProxyId, RevertReason } from '@0x/types';
import { BigNumber } from '@0xproject/utils'; import { BigNumber } from '@0x/utils';
import * as chai from 'chai'; import * as chai from 'chai';
import { LogWithDecodedArgs } from 'ethereum-types'; import { LogWithDecodedArgs } from 'ethereum-types';
import * as _ from 'lodash'; import * as _ from 'lodash';

View File

@ -1,4 +1,4 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils'; import { BlockchainLifecycle } from '@0x/dev-utils';
import * as _ from 'lodash'; import * as _ from 'lodash';
import { chaiSetup } from '../utils/chai_setup'; import { chaiSetup } from '../utils/chai_setup';

Some files were not shown because too many files have changed in this diff Show More