aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/contract_wrappers
Commit message (Collapse)AuthorAgeFilesLines
* Fix tslint issuesLeonid Logvinov2018-01-301-2/+2
|
* Normalize the dependenciesLeonid Logvinov2018-01-301-1/+1
|
* Remove truffle from testsLeonid Logvinov2018-01-304-14/+8
|
* Fix the bug making it impossible to specify the custom ZRX addressLeonid Logvinov2018-01-241-0/+2
|
* Fix fillOrdersUpTo balances validationLeonid Logvinov2018-01-161-2/+4
|
* Make some callbacks failable and add error handlingLeonid Logvinov2018-01-111-12/+12
|
* Fix callback typesLeonid Logvinov2018-01-101-1/+1
|
* Include web3 types via typeRoots and factor out common parts of tsconfig.jsonLeonid Logvinov2018-01-101-0/+3
|
* Fix linter errorsLeonid Logvinov2018-01-043-3/+3
|
* Use configured version of bignumber in all packagesLeonid Logvinov2018-01-043-3/+3
|
* Apply prettier configLeonid Logvinov2018-01-036-230/+437
|
* Fix linter issueLeonid Logvinov2017-12-201-1/+0
|
* Add WETH9 testsLeonid Logvinov2017-12-201-1/+1
|
* Fix WETH events watchingLeonid Logvinov2017-12-201-1/+1
|
* Init the _etherTokenContractsByAddressLeonid Logvinov2017-12-201-1/+1
|
* Add EtherToken events to the ABILeonid Logvinov2017-12-201-2/+2
|
* Enable multiple EtherTokenContract instancesLeonid Logvinov2017-12-201-4/+9
|
* Add etherToken.getLogsAsync and etherToken.subscribe with testsLeonid Logvinov2017-12-201-3/+71
|
* Throw a better error message when taker is null|undefined or anything but ↵Leonid Logvinov2017-12-191-7/+7
| | | | not a string
* Fix commentsLeonid Logvinov2017-12-192-2/+2
|
* Fix linter issuesLeonid Logvinov2017-12-191-2/+2
|
* Rename SubscriptionOpts to BlockRangeLeonid Logvinov2017-12-193-13/+13
|
* Modify the etherToken wrapper methods to accept an etherTokenAddress as the ↵Fabio Berger2017-12-171-28/+13
| | | | first arg. Since it is becoming apparent we will be updating the canonical WETH contract, we want users of 0x.js to be able to interact with n number of etherTokens without re-instantiating for each one.
* Fix documentation issue where `unsubscribeAll` shown as method on every ↵Fabio Berger2017-12-173-4/+13
| | | | contractWrapper instance even though it's only used by Exchange and Token wrappers.
* Fix 0x.js unused varsLeonid Logvinov2017-12-154-10/+2
|
* Add DummyToken to gitignoreLeonid Logvinov2017-12-141-0/+1
|
* Move shared types to types packageLeonid Logvinov2017-12-141-2/+1
|
* Move more shared utils into utils package and reuse themLeonid Logvinov2017-12-141-1/+1
|
* Remove generated contracts and ignore them. Add a prebuild command to ↵Leonid Logvinov2017-12-146-2160/+5
| | | | regenerate them
* Rename blockAndLogStreamer to blockAndLogStreamerIfExistsLeonid Logvinov2017-12-121-14/+18
|
* Refactor networkId out of web3WrapperLeonid Logvinov2017-12-086-16/+17
|
* Refactor web3Wrapper to a separate packageLeonid Logvinov2017-12-0711-14/+37
|
* Regenerate filesLeonid Logvinov2017-12-065-5/+5
|
* Rename abi-gen to typed-contractsLeonid Logvinov2017-12-065-10/+10
|
* Remove TODOsLeonid Logvinov2017-12-051-2/+0
|
* Fix a typoLeonid Logvinov2017-12-051-1/+1
|
* Update commentLeonid Logvinov2017-12-025-5/+5
|
* Add comments before generated contractsLeonid Logvinov2017-12-025-0/+20
|
* Adjust 0x.js to use generated wrappersLeonid Logvinov2017-12-026-15/+31
|
* Add generated contract wrappersLeonid Logvinov2017-12-026-0/+2176
|
* Fix defaults for shouldValidateLeonid Logvinov2017-11-281-7/+21
|
* Add an initializer for txOpts in etherTokenLeonid Logvinov2017-11-281-2/+6
|
* Add option config for gasPrice and gasLimit for every transaction sending methodLeonid Logvinov2017-11-283-130/+64
|
* Fix merge conflictsLeonid Logvinov2017-11-282-5/+5
|
* Merge branch 'development' into feature/passNetworkIdLeonid2017-11-281-12/+12
|\
| * Merge branch 'development' into validateOrdersAgainstLatestBlockFabio Berger2017-11-241-7/+7
| |\ | | | | | | | | | | | | | | | | | | * development: Rename removed to isRemoved Add CHANGELOG entry Make DecodedLogEvent contain web3 log under a log subkey
| * | Pass 'latest' to ExchangeTransferSimulator when used for validating orders, ↵Fabio Berger2017-11-241-8/+9
| | | | | | | | | | | | and pass 'pending' when used in the order watcher.
* | | Pass networkId on provider updateLeonid Logvinov2017-11-242-2/+2
| | |
* | | Reuse the protected function to get contract addressLeonid Logvinov2017-11-241-10/+2
| | |
* | | Move variable declaration inside the ifLeonid Logvinov2017-11-241-0/+12
| | |
* | | Refactor getContractAddress to contractWrapperLeonid Logvinov2017-11-245-41/+17
| | |
* | | Fix the imports orderLeonid Logvinov2017-11-241-9/+6
| | |
* | | Enable some new linter rules and fix the issuesLeonid Logvinov2017-11-242-19/+19
| | |
* | | Auto-fix linter errorsLeonid Logvinov2017-11-246-59/+70
| | |
* | | Fix linter issuesLeonid Logvinov2017-11-241-1/+1
| | |
* | | Await block reconcilationLeonid Logvinov2017-11-241-1/+1
| | |
* | | Remove even more asyncsLeonid Logvinov2017-11-243-17/+31
| | |
* | | Make zeroEx.tokenRegistry.getContractAddress non-asyncLeonid Logvinov2017-11-241-5/+12
| | |
* | | Make exchange subscriptions non-asyncLeonid Logvinov2017-11-241-2/+2
| | |
* | | Make zeroEx.exchange.getContractAddress non-asyncLeonid Logvinov2017-11-241-6/+13
| | |
* | | Make getZRXTokenAddress non asyncLeonid Logvinov2017-11-242-14/+22
| |/ |/|
* | Rename removed to isRemovedLeonid Logvinov2017-11-241-6/+6
| |
* | Make DecodedLogEvent contain web3 log under a log subkeyLeonid Logvinov2017-11-241-1/+1
|/
* Merge branch 'development' into feature/addJsonSchemasBrandon Millman2017-11-151-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * development: Improve description Alphabetize Add exit 0 to 0x.js build command Add snapshot save and revert to order_state_watcher_test.ts Fix changelog Use tslint v5.8.0 everywhere and use the tslint-config sub-package instead of the old repo as a dep. in the rest of the sub-packages. Add tslint-config sub-package Fix tslint issue Public interface has changed, moved to minor version Update changelog Renamed canceled to cancelled
| * Renamed canceled to cancelledJacob Evans2017-11-141-2/+2
| |
* | Add json-schemas package to mono repoBrandon Millman2017-11-142-2/+2
|/
* Add interface typeFabio Berger2017-11-141-2/+6
|
* Declare as stringFabio Berger2017-11-141-1/+1
|
* Fix lint and ts issuesFabio Berger2017-11-141-1/+1
|
* Switch over to Lerna + Yarn Workspaces setup for a mono-repo approachFabio Berger2017-11-136-0/+1600