aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix commentLeonid Logvinov2017-07-011-1/+1
|
* Remove constructorLeonid Logvinov2017-07-011-3/+0
|
* Fix proxy commentLeonid Logvinov2017-07-011-1/+1
|
* Fix namingLeonid Logvinov2017-07-011-2/+3
|
* Fix a typo in authorizedLeonid Logvinov2017-07-011-3/+3
|
* Fix a bug in getProxyAuthorizedContractAddressesAsyncLeonid Logvinov2017-07-011-2/+7
|
* Move schema assertion up to prevent the _.map failureLeonid Logvinov2017-07-011-1/+1
|
* Change 'changes' to 'latest changes' for no good reason in CHANGELOG.mdLeonid Logvinov2017-07-011-1/+1
|
* Add tests for getProxyAuthorizedContractAddressesAsyncLeonid Logvinov2017-06-301-0/+12
|
* Remove unused code from test/proxy_wrapper_test.tsLeonid Logvinov2017-06-301-12/+0
|
* Add a test for a ProxyWrapperLeonid Logvinov2017-06-301-0/+35
|
* Fix a typo in authorizedLeonid Logvinov2017-06-302-2/+2
|
* Rename _proxy to _proxyWrapperLeonid Logvinov2017-06-301-4/+4
|
* Make zeroEx.getOrderHashHex non-asyncLeonid Logvinov2017-06-302-10/+10
|
* Fix typo in getAvailableContractAddressesAsyncLeonid Logvinov2017-06-302-3/+3
|
* Implement getProxyAuthorizedContractAddressesAsyncLeonid Logvinov2017-06-301-0/+16
|
* Store ProxyWrapper instance in ExchangeWrapperLeonid Logvinov2017-06-301-1/+4
|
* Add ProxyWrapper instance to zeroExLeonid Logvinov2017-06-301-1/+5
|
* Add Proxy wrapperLeonid Logvinov2017-06-301-0/+36
|
* Add type for a ProxyContractLeonid Logvinov2017-06-301-0/+6
|
* Make it clear that we are using a fake address in testsLeonid Logvinov2017-06-301-2/+2
|
* Rename Exchange.json to Exchange_v1.jsonLeonid Logvinov2017-06-302-1/+1
|
* Factor out ZRXtokenAddress variableLeonid Logvinov2017-06-301-1/+2
|
* Rename ZeroExError.CONTRACT_DOES_NOT_EXIST to ↵Leonid Logvinov2017-06-302-1/+2
| | | | ZeroExError.EXCHANGE_CONTRACT_DOES_NOT_EXIST
* Fix a typo in a nameLeonid Logvinov2017-06-301-2/+2
|
* Factor out exchangeArtifacts variableLeonid Logvinov2017-06-301-1/+2
|
* Check that artefacts by networkId are not undefined before getting the addressLeonid Logvinov2017-06-301-2/+5
|
* Fix a typo in a nameLeonid Logvinov2017-06-301-1/+1
|
* Fix a typo in a nameLeonid Logvinov2017-06-302-3/+3
|
* Move schema assertion up to prevent the _.map failureLeonid Logvinov2017-06-301-2/+2
|
* Move schema assertion up to prevent the _.map failureLeonid Logvinov2017-06-301-1/+1
|
* Mve schema assertion up to prevent the _.map failureLeonid Logvinov2017-06-301-1/+1
|
* Make getOrderHashHex a non-async functionLeonid Logvinov2017-06-302-14/+3
|
* Improve CHANGELOG commentsLeonid Logvinov2017-06-301-2/+2
|
* Update CHANGELOG.mdLeonid Logvinov2017-06-281-0/+1
|
* Update contract artefactsLeonid Logvinov2017-06-287-17/+126
|
* Remove update_contracts call from circleci.ymlLeonid Logvinov2017-06-281-1/+0
|
* Remove custom Schema type and use one from jsonschemaLeonid Logvinov2017-06-284-13/+6
|
* Add CHANGELOG.md entryLeonid Logvinov2017-06-271-0/+4
|
* Remove _getExchangeAddressAsyncLeonid Logvinov2017-06-272-11/+1
|
* Allow multiple exchange versions t be functional at the same timeLeonid Logvinov2017-06-279-90/+222
|
* Update copyfiles to copy nested artifactsLeonid Logvinov2017-06-271-1/+1
|
* Move exchange artifacts to an exchange subfolderLeonid Logvinov2017-06-272-1/+1
|
* Add the 0xproject profile flag to the AWS cli command so that devs can have ↵Fabio Berger2017-06-271-1/+1
| | | | their personal AWS creds be the default in .aws/credentials
* 0.7.1v0.7.1Fabio Berger2017-06-271-1/+1
|
* Add 0.7.1 release notesFabio Berger2017-06-271-1/+4
|
* Change all the dates from July to June in changelogFabio Berger2017-06-271-5/+11
|
* Additional EtherToken comment changesFabio Berger2017-06-271-10/+10
|
* Improve EtherToken commentsFabio Berger2017-06-271-10/+10
|
* Merge pull request #81 from 0xProject/addWrappedETHSupportLeonid2017-06-276-4/+205
|\ | | | | Add Wrapped ETH Support
| * Merge branch 'addWrappedETHSupport' of github.com:0xProject/0x.js into ↵Fabio Berger2017-06-270-0/+0
| |\ | | | | | | | | | | | | | | | | | | addWrappedETHSupport # Conflicts: # test/ether_token_wrapper_test.ts
| | * Remove .only from describeLeonid Logvinov2017-06-271-1/+1
| | |
| | * Rename INSUFFICIENT_WETH_BALANCE_FOR_WITHDRAWL to ↵Leonid Logvinov2017-06-273-3/+3
| | | | | | | | | | | | INSUFFICIENT_WETH_BALANCE_FOR_WITHDRAWAL
| * | refactor getBalanceInEthAsync to getBalanceInWeiAsync and change the test ↵Fabio Berger2017-06-273-25/+30
| | | | | | | | | | | | assertions to check if the discrepancy between the existing ETH balance and expected balance is small enough to simply be the gas cost used by the transaction.
| * | Fix typoFabio Berger2017-06-273-3/+3
| |/
| * Implement EtherTokenWrapper and tests, with deposit and withdraw methodsFabio Berger2017-06-265-0/+194
| |
| * Add missing return commentFabio Berger2017-06-261-0/+1
| |
| * Re-wrap BigNumber returned from web3 in `getBalanceInEthAsync`Fabio Berger2017-06-261-1/+2
| |
* | Merge pull request #79 from 0xProject/integration-testsLeonid2017-06-235-4/+74
|\ \ | | | | | | Add kovan integration tests
| * | Rename KOVAN_URL to KOVAN_RPC_URLLeonid Logvinov2017-06-232-2/+2
| | |
| * | Simplify integration testsLeonid Logvinov2017-06-231-34/+4
| | |
| * | Add comment before declarationsLeonid Logvinov2017-06-231-1/+1
| | |
| * | Refactor KOVAN_URL to constants and fetch mnemonic from package.jsonLeonid Logvinov2017-06-232-2/+7
| | |
| * | Add kovan integration testsLeonid Logvinov2017-06-234-4/+99
| | |
* | | Merge pull request #80 from 0xProject/greenkeeper/web3-typescript-typings-0.0.10Leonid2017-06-231-1/+1
|\ \ \ | |_|/ |/| | Update web3-typescript-typings to the latest version 🚀
| * | chore(package): update web3-typescript-typings to version 0.0.10greenkeeper[bot]2017-06-231-1/+1
|/ /
* | Fix version in CHANGELOGFabio Berger2017-06-231-1/+1
| |
* | 0.7.0v0.7.0Fabio Berger2017-06-231-1/+1
| |
* | Add changelog for v0.7.2Fabio Berger2017-06-231-0/+6
|/
* Fix incorrect merge consequencesLeonid Logvinov2017-06-231-3/+3
|
* Merge pull request #72 from 0xProject/fill-order-amuontLeonid2017-06-232-6/+60
|\ | | | | Return filledAmount from fillOrderAsync
| * Merge branch 'master' into fill-order-amuontLeonid2017-06-2322-112/+701
| |\ | |/ |/|
* | Merge pull request #78 from 0xProject/update-contractsFabio Berger2017-06-236-17/+622
|\ \ | | | | | | Update contracts
| * | Update contractsLeonid Logvinov2017-06-226-17/+622
|/ /
* | Merge pull request #77 from 0xProject/revert-71-lodash-tree-shakeLeonid2017-06-2215-93/+76
|\ \ | | | | | | Revert "Use different lodash import syntax which allows to include only used functions"
| * | Revert "Use different lodash import syntax which allows to include only used ↵Leonid2017-06-2215-93/+76
|/ / | | | | | | functions"
* | Merge pull request #73 from 0xProject/json-docsLeonid2017-06-221-1/+3
|\ \ | | | | | | Auto-upload json docs on release
| * | Set content typeLeonid Logvinov2017-06-221-1/+1
| | |
| * | Grant read permissions to all usersLeonid Logvinov2017-06-221-1/+1
| | |
| * | Auto-upload json docs on releaseLeonid Logvinov2017-06-221-1/+3
|/ /
| * Add test for return amount from fillOrdersUpToAsyncLeonid Logvinov2017-06-221-0/+6
| |
| * Return filledTakerTokenAmount from fillOrdersUpToAsyncLeonid Logvinov2017-06-221-3/+10
| |
| * Add test for cancelOrderAsync return valueLeonid Logvinov2017-06-221-0/+4
| |
| * Return cancelledAmount from cancelOrderAsyncLeonid Logvinov2017-06-221-1/+6
| |
| * Add simple test checking that fillOrderAsync return filled amountLeonid Logvinov2017-06-221-0/+10
| |
| * Fix return commentLeonid Logvinov2017-06-221-1/+1
| |
| * Return filledAmount from fillOrderAsyncLeonid Logvinov2017-06-212-1/+24
|/
* Rename Log*Args to Log*ContractEventArgsLeonid Logvinov2017-06-212-5/+5
|
* 0.6.2v0.6.2Leonid Logvinov2017-06-211-1/+1
|
* Revert "Temporarily use forked version of truffle-contract to reduce the bundle"Leonid Logvinov2017-06-212-8/+18
| | | | | | This reverts commit ef96c58b7f7d0ce678e8eb4f662b2f6a31e8799a. truffle-contract is not compatible with web3 0.19.0 cause it checks the number of arguments and they pass incorrect number of arguments
* Updat CHANGELOG.md with v0.6.2Leonid Logvinov2017-06-211-1/+5
|
* Merge pull request #70 from 0xProject/greenkeeper/@types/node-8.0.1Leonid2017-06-211-1/+1
|\ | | | | Update @types/node to the latest version 🚀
| * chore(package): update @types/node to version 8.0.1greenkeeper[bot]2017-06-211-1/+1
| |
* | Merge pull request #71 from 0xProject/lodash-tree-shakeLeonid2017-06-2115-76/+93
|\ \ | | | | | | Use different lodash import syntax which allows to include only used functions
| * | Fall back to import x = require() syntaxLeonid Logvinov2017-06-2116-33/+32
| | |
| * | Use different lodash import syntax which allows to include only used functionsLeonid Logvinov2017-06-2116-76/+94
| |/
* / Temporarily use forked version of truffle-contract to reduce the bundleLeonid Logvinov2017-06-212-18/+8
|/ | | | | | | truffle-contract uses web3 0.18.0. We use web3 0.19.0 which results in 2 versions of web3 being bundled with the package This commit temporarily switches to custom truffle-contract fork We'll switch back when the PR would be accepted
* Connect to github over https so that it works without authenticationLeonid Logvinov2017-06-202-3/+3
|
* Add Greenkeeper badgeLeonid2017-06-201-0/+1
|
* Move out of @0xproject scopeLeonid Logvinov2017-06-201-1/+1
|
* Merge pull request #69 from 0xProject/improveReadmeFabio Berger2017-06-201-2/+49
|\ | | | | Improve README
| * Add documentation sectionFabio Berger2017-06-201-3/+3
| |
| * Include two links to the documentationFabio Berger2017-06-201-1/+3
| |
| * Add the installation instructions to the READMEFabio Berger2017-06-201-2/+32
| |
| * Improve the READMEFabio Berger2017-06-191-2/+17
| |
* | Add missing semi-colonFabio Berger2017-06-201-1/+1
| |
* | Add newline between type defsFabio Berger2017-06-201-0/+1
| |
* | Improve commentFabio Berger2017-06-201-3/+3
| |
* | 0.6.1Leonid Logvinov2017-06-201-1/+1
| |
* | Update CHANGELOG.mdLeonid Logvinov2017-06-201-1/+4
| |
* | Fix tslint issueFabio Berger2017-06-191-1/+2
|/
* Update version in package.jsonFabio Berger2017-06-191-1/+1
|
* Merge branch 'master' of github.com:0xProject/0x.jsFabio Berger2017-06-1916-81/+394
|\
| * Merge pull request #68 from 0xProject/changelogLeonid2017-06-191-0/+12
| |\ | | | | | | Add CHANGELOG.md
| | * Remove coveralls integration from CHANGELOG.mdLeonid Logvinov2017-06-191-2/+1
| | |
| | * Add CHANGELOG.mdLeonid Logvinov2017-06-191-0/+13
| |/
| * Merge pull request #66 from 0xProject/event-typesLeonid2017-06-193-2/+36
| |\ | | | | | | Add actual type for contract event arguments
| | * Rename LogErrorArgs to LogErrorEventArgs and EventArgs to ContractEventArgsLeonid Logvinov2017-06-193-7/+7
| | |
| | * Merge branch 'master' into event-typesLeonid2017-06-1511-23/+29
| | |\ | | |/ | |/|
| * | Merge pull request #67 from 0xProject/web3-providerFabio Berger2017-06-1511-23/+29
| |\ \ | | | | | | | | Make ZeroEx constructor accept Web3Provider instead of Web3 instance
| | * | Fix bug in 0x.js tests when passing Web3 instead of Web3 ProviderLeonid Logvinov2017-06-151-1/+1
| | | |
| | * | Switch back to using Web3.Provider, not Web3Provider in internal classesLeonid Logvinov2017-06-151-4/+3
| | | |
| | * | Add explaining comment for the web3Provider typeLeonid Logvinov2017-06-151-1/+5
| | | |
| | * | Make ZeroEx constructor accept Web3Provider instead of Web3 instanceLeonid Logvinov2017-06-1511-24/+27
| |/ /
| | * Add actual type for contract event argumentsLeonid Logvinov2017-06-153-2/+36
| |/
| * Merge pull request #65 from 0xProject/coverallsLeonid2017-06-154-13/+125
| |\ | | | | | | Coveralls integration
| | * Add badge to READMELeonid Logvinov2017-06-151-0/+1
| | |
| | * Report test coverage on CILeonid Logvinov2017-06-151-0/+1
| | |
| | * Add node script to report coverageLeonid Logvinov2017-06-151-0/+1
| | |
| | * Add coveralls as a dependencyLeonid Logvinov2017-06-152-13/+122
| |/
| * Remove unused importLeonid Logvinov2017-06-151-1/+0
| |
| * 0.5.2Leonid Logvinov2017-06-151-1/+1
| |
| * Fix bug in postinstall scriptLeonid Logvinov2017-06-151-1/+1
| |
| * 0.5.1Leonid Logvinov2017-06-151-1/+1
| |
| * Add postrelease script to publish assets to githubLeonid Logvinov2017-06-152-8/+193
| |
| * Set NODE_ENV to production for production builds and don't rely on webpack ↵Leonid Logvinov2017-06-151-1/+1
| | | | | | | | minification (we use uglifyJS)
| * Fix lodash import bug in webpack configLeonid Logvinov2017-06-151-1/+1
| |
| * Update web3-provider-engine cause the console.log issue was fixed and the ↵Leonid Logvinov2017-06-152-43/+8
| | | | | | | | new version was released
* | Add and improve commentsFabio Berger2017-06-164-17/+43
|/
* 0.5.0v0.5.0Leonid Logvinov2017-06-141-1/+1
|
* Remove types that are not used in public interface from export and rename ↵Leonid Logvinov2017-06-145-19/+14
| | | | EventEmitter to ContractEventEmitter and IndexFilterValues to IndexedFilterValues
* Merge branch 'master' of github.com:0xProject/0x.jsLeonid Logvinov2017-06-141-1/+1
|\
| * Update doc:json command to exclude privates and externalsFabio Berger2017-06-141-1/+1
| |
* | 0.4.0Leonid Logvinov2017-06-141-1/+1
|/
* Merge pull request #64 from 0xProject/eventsLeonid2017-06-146-31/+74
|\ | | | | Refactor events API
| * Address feedbackLeonid Logvinov2017-06-141-2/+2
| |
| * Rename ZeroExEvent to EventEmitterLeonid Logvinov2017-06-133-14/+14
| |
| * Revert "0.4.0"Leonid Logvinov2017-06-131-1/+1
| | | | | | | | This reverts commit 870f9838d6743f5594fb809c6b91084be4d0cc45.
| * Add tests for stopWatchingAsyncLeonid Logvinov2017-06-131-0/+20
| |
| * 0.4.0Leonid Logvinov2017-06-131-1/+1
| |
| * Bind watch function on an eventLeonid Logvinov2017-06-131-1/+1
| |
| * Refactor subscription to return zeroExSignature objectLeonid Logvinov2017-06-135-28/+51
| |
| * 0.3.0v0.3.0Leonid Logvinov2017-06-131-1/+1
|/
* Add getContractAddressAsync and testsLeonid Logvinov2017-06-132-0/+16
|
* 0.2.3v0.2.3Leonid Logvinov2017-06-131-1/+1
|
* Merge pull request #63 from 0xProject/api-refactorLeonid2017-06-1311-18/+38
|\ | | | | Api refactor
| * Fix testLeonid Logvinov2017-06-131-1/+1
| |
| * Fix testLeonid Logvinov2017-06-131-1/+1
| |
| * Change UMD bundle nameLeonid Logvinov2017-06-131-2/+2
| |
| * Export DoneCallbackLeonid Logvinov2017-06-131-0/+1
| |
| * Introduce index.ts file which defines public interfaceLeonid Logvinov2017-06-1310-16/+35
|/
* 0.2.2v0.2.2Leonid Logvinov2017-06-121-1/+1
|
* Remove src from npmignoreLeonid Logvinov2017-06-121-1/+0
|
* 0.2.1v0.2.1Leonid Logvinov2017-06-121-1/+1
|
* Don't prefix main and types path in package.json with ./Leonid Logvinov2017-06-121-2/+2
|
* 0.2.0v0.2.0Leonid Logvinov2017-06-121-1/+1
|
* Change main file name from 0x.js.ts to 0x.tsLeonid Logvinov2017-06-1210-11/+11
|
* Duplicate truffle contracts typesLeonid Logvinov2017-06-112-1/+9
|
* Add type referencesLeonid Logvinov2017-06-111-0/+2
|
* Add main and types fields to package.jsonLeonid Logvinov2017-06-111-0/+2
|
* Revert "Make private"Leonid Logvinov2017-06-111-1/+0
| | | | This reverts commit 933be8815b8d1b93662abbb1538b13367f6b022a.
* 0.1.0Leonid Logvinov2017-06-111-1/+1
|
* Make privateLeonid Logvinov2017-06-111-0/+1
|
* Add 0xproject scopeLeonid Logvinov2017-06-111-1/+2
|
* Merge pull request #62 from 0xProject/privateLeonid2017-06-118-172/+173
|\ | | | | Prefix private vars with _
| * Merge branch 'master' into privateLeonid2017-06-116-36/+86
| |\ | |/ |/|
* | Merge pull request #60 from 0xProject/error-decoratorFabio Berger2017-06-115-0/+50
|\ \ | | | | | | Add initial error handling decorator implementation
| * \ Merge branch 'master' into error-decoratorLeonid2017-06-106-25/+175
| |\ \
| * | | Add initial error handling decorator implementationLeonid Logvinov2017-06-105-0/+50
| | | |
* | | | Merge pull request #61 from 0xProject/names-hexFabio Berger2017-06-112-36/+36
|\ \ \ \ | | | | | | | | | | Remove Hex suffix from public functions parameters names
| * | | | Remove Hex suffix from public functions parameters namesLeonid Logvinov2017-06-102-36/+36
| | |/ / | |/| |
| | | * Fix last testsLeonid Logvinov2017-06-114-23/+23
| | | |
| | | * Fix some testsLeonid Logvinov2017-06-101-12/+12
| | | |
| | | * Prefix private vars with _Leonid Logvinov2017-06-107-137/+138
| |_|/ |/| |
* | | Create README.mdLeonid2017-06-101-2/+1
|/ /
* | Merge pull request #58 from 0xProject/remove-console-trashLeonid2017-06-102-1/+36
|\ \ | | | | | | Remove unneccessary console output from block tracker
| * \ Merge branch 'master' into remove-console-trashLeonid2017-06-104-24/+139
| |\ \ | |/ / |/| |
* | | Merge pull request #59 from 0xProject/addParamReturnCommentsLeonid2017-06-104-24/+139
|\ \ \ | |_|/ |/| | Add @param and @return comments to public methods
| * | Align all param comments so that they are more readableFabio Berger2017-06-104-87/+99
| | |
| * | Merge branch 'master' into addParamReturnCommentsFabio Berger2017-06-101-0/+16
| |\ \ | |/ / |/| |
| * | Add param & return comments to all public methods and add comments to some ↵Fabio Berger2017-06-104-24/+127
| | | | | | | | | | | | public methods that were missing them
| | * Merge branch 'master' into remove-console-trashLeonid2017-06-101-0/+16
| | |\ | |_|/ |/| |
* | | Merge pull request #55 from 0xProject/subscribe-async-testsLeonid2017-06-101-0/+16
|\ \ \ | |/ / |/| | Add LogCancel test to subscribeAsync
| * | Merge branch 'master' into subscribe-async-testsLeonid2017-06-104-45/+24
| |\ \ | |/ / |/| |
| * | Merge branch 'master' into subscribe-async-testsLeonid2017-06-107-18/+276
| |\ \
| * \ \ Merge branch 'master' into subscribe-async-testsLeonid2017-06-102-4/+3
| |\ \ \
| * \ \ \ Merge branch 'master' into subscribe-async-testsLeonid2017-06-101-3/+8
| |\ \ \ \
| * \ \ \ \ Merge branch 'master' into subscribe-async-testsLeonid2017-06-101-5/+4
| |\ \ \ \ \
| * | | | | | Fix testsLeonid Logvinov2017-06-101-4/+4
| | | | | | |
| * | | | | | Remove onlyLeonid Logvinov2017-06-091-1/+1
| | | | | | |
| * | | | | | Add LogCancel test to subscribeAsyncLeonid Logvinov2017-06-091-2/+18
| | | | | | |
| | | | | | * Remove unneccessary console output from block trackerLeonid Logvinov2017-06-102-1/+36
| |_|_|_|_|/ |/| | | | |
* | | | | | Merge pull request #52 from 0xProject/json-schemaLeonid2017-06-104-45/+24
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Convert to JSON schema compatible object by default
| * | | | | Merge branch 'master' into json-schemaLeonid2017-06-107-18/+276
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | Merge pull request #54 from 0xProject/schema-testsLeonid2017-06-107-18/+276
|\ \ \ \ \ \ | |_|_|_|_|/ |/| | | | | Schema tests
| * | | | | Merge branch 'master' into schema-testsLeonid2017-06-102-4/+3
| |\ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Address feedbackLeonid Logvinov2017-06-101-10/+20
| | | | | |
| * | | | | Fix bugs in schemasLeonid Logvinov2017-06-104-6/+6
| | | | | |
| * | | | | Merge branch 'master' into schema-testsLeonid2017-06-102-8/+12
| |\ \ \ \ \ | | | |_|_|/ | | |/| | |
| * | | | | Merge branch 'master' into schema-testsLeonid2017-06-095-5/+121
| |\ \ \ \ \ | | | |_|/ / | | |/| | |
| * | | | | Fix testsLeonid Logvinov2017-06-091-1/+1
| | | | | |
| * | | | | Add tests for fillOrderRequests schemaLeonid Logvinov2017-06-091-0/+26
| | | | | |
| * | | | | Add tests for orderCancellationRequestsSchemaLeonid Logvinov2017-06-091-0/+26
| | | | | |
| * | | | | Merge branch 'master' into schema-testsLeonid2017-06-093-16/+36
| |\ \ \ \ \
| * | | | | | Fix testsLeonid Logvinov2017-06-091-2/+9
| | | | | | |
| * | | | | | Fix tests and add fillOrKillRequests schemaLeonid Logvinov2017-06-091-11/+37
| | | | | | |
| * | | | | | Refactor testsLeonid Logvinov2017-06-091-53/+47
| | | | | | |
| * | | | | | Add tests for signedOrderSchemaLeonid Logvinov2017-06-091-0/+35
| | | | | | |
| * | | | | | Add tests for order schemaLeonid Logvinov2017-06-091-0/+36
| | | | | | |
| * | | | | | Tolerate more than one validation error in testsLeonid Logvinov2017-06-091-1/+5
| | | | | | |
| * | | | | | Rename to validateAgainstSchemaLeonid Logvinov2017-06-091-11/+11
| | | | | | |
| * | | | | | Add tests for TokenSchemaLeonid Logvinov2017-06-093-6/+44
| | | | | | |
| * | | | | | Add ecSignatureSchema testsLeonid Logvinov2017-06-092-37/+59
| | | | | | |
| * | | | | | Add ecSignatureParameter testLeonid Logvinov2017-06-091-0/+20
| | | | | | |
| * | | | | | Add tests for address schemaLeonid Logvinov2017-06-091-7/+21
| | | | | | |
| | | | | * | Merge branch 'master' into json-schemaLeonid2017-06-102-4/+3
| | | | | |\ \ | |_|_|_|_|/ / |/| | | | | |
* | | | | | | Merge pull request #57 from 0xProject/moveConstantLeonid2017-06-102-4/+3
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | | Move MAX_DIGITS_IN_UNSIGNED_256_INT to constants
| * | | | | | Merge branch 'master' into moveConstantLeonid2017-06-101-3/+8
| |\ \ \ \ \ \ | |/ / / / / / |/| | | | | |
| * | | | | | Move MAX_DIGITS_IN_UNSIGNED_256_INT to constantsFabio Berger2017-06-102-4/+3
| | |_|_|_|/ | |/| | | |
| | | | | * Merge branch 'master' into json-schemaLeonid2017-06-101-3/+8
| | | | | |\ | |_|_|_|_|/ |/| | | | |
* | | | | | Merge pull request #56 from 0xProject/cancel-testsFabio Berger2017-06-101-3/+8
|\ \ \ \ \ \ | |/ / / / / |/| | | | | Add test for zeroEx.exchange.getCanceledTakerAmountAsync
| * | | | | Add test for zeroEx.exchange.getCanceledTakerAmountAsyncLeonid Logvinov2017-06-101-3/+8
|/ / / / /
| | | | * Fix testsLeonid Logvinov2017-06-102-4/+2
| | | | |
| | | | * Address feedbackLeonid Logvinov2017-06-102-9/+6
| | | | |
| | | | * Fix testLeonid Logvinov2017-06-101-8/+5
| | | | |
| | | | * Merge branch 'master' into json-schemaLeonid2017-06-101-5/+4
| | | | |\ | |_|_|_|/ |/| | | |
* | | | | Merge pull request #53 from 0xProject/async-bugLeonid2017-06-101-5/+4
|\ \ \ \ \ | |_|_|/ / |/| | | | Fix the bug of not awaiting an async function
| * | | | Merge branch 'master' into async-bugLeonid2017-06-097-21/+157
| |\ \ \ \ | |/ / / / |/| | | |
| * | | | Use for ofLeonid Logvinov2017-06-091-2/+2
| | | | |
| * | | | Fix the bug of not awaiting an async functionLeonid Logvinov2017-06-091-4/+3
| |/ / /
| | | * Merge branch 'master' into json-schemaLeonid2017-06-095-5/+121
| | | |\ | |_|_|/ |/| | |
* | | | Merge pull request #49 from 0xProject/fillOrderUpToAsyncLeonid2017-06-095-5/+121
|\ \ \ \ | |_|/ / |/| | | Implement fillOrderUpToAsync
| * | | Merge branch 'master' into fillOrderUpToAsyncLeonid2017-06-093-16/+36
| |\ \ \ | |/ / / |/| | |
| * | | Address feedbackLeonid Logvinov2017-06-093-7/+4
| | | |
| * | | Merge branch 'master' into fillOrderUpToAsyncLeonid2017-06-091-4/+0
| |\| |
| * | | Add signedOrdersScxhemaLeonid Logvinov2017-06-092-0/+9
| | | |
| * | | Address feedbackLeonid Logvinov2017-06-092-2/+2
| | | |
| * | | Add assert.hashAtMostOneUniqueValueLeonid Logvinov2017-06-093-7/+10
| | | |
| * | | Merge branch 'master' into fillOrderUpToAsyncLeonid2017-06-098-90/+205
| |\ \ \
| * \ \ \ Merge branch 'master' into fillOrderUpToAsyncLeonid2017-06-091-16/+18
| |\ \ \ \