aboutsummaryrefslogtreecommitdiffstats
path: root/src/0x.js.ts
Commit message (Expand)AuthorAgeFilesLines
* Change main file name from 0x.js.ts to 0x.tsLeonid Logvinov2017-06-121-238/+0
* Merge branch 'master' into privateLeonid2017-06-111-22/+22
|\
| * Remove Hex suffix from public functions parameters namesLeonid Logvinov2017-06-101-22/+22
* | Prefix private vars with _Leonid Logvinov2017-06-101-13/+13
|/
* Align all param comments so that they are more readableFabio Berger2017-06-101-23/+23
* Add param & return comments to all public methods and add comments to some pu...Fabio Berger2017-06-101-12/+46
* Merge branch 'master' into json-schemaLeonid2017-06-101-4/+2
|\
| * Move MAX_DIGITS_IN_UNSIGNED_256_INT to constantsFabio Berger2017-06-101-4/+2
* | Fix testsLeonid Logvinov2017-06-101-2/+1
|/
* Fix commentsFabio Berger2017-06-081-2/+2
* rename decimals to numDecimals for clarityFabio Berger2017-06-081-6/+6
* add `hex` to function and variable name for clarityFabio Berger2017-06-071-2/+2
* Spacing fixFabio Berger2017-06-071-2/+1
* merge masterFabio Berger2017-06-071-3/+3
|\
| * Remove assertions from utils methodsLeonid Logvinov2017-06-071-0/+4
| * Update 0x.js.tsLeonid2017-06-071-2/+1
| * Address feedbackLeonid Logvinov2017-06-071-26/+2
* | Implement fillOrKill & testsFabio Berger2017-06-071-23/+4
|/
* Rename isSenderAddressHexAsync to isSenderAddressAsyncLeonid Logvinov2017-06-061-1/+1
* Rename senderAddress to signerAddressLeonid Logvinov2017-06-061-4/+4
* Rename accounts to addresesLeonid Logvinov2017-06-061-4/+4
* Rename senderAccount to senderAddressLeonid Logvinov2017-06-061-4/+4
* Rename assert.isSenderAccountHexAsync to assert.isSenderAddressHexAsyncLeonid Logvinov2017-06-061-1/+1
* Remove redundant reassignmentLeonid Logvinov2017-06-061-3/+2
* Fix commentsLeonid Logvinov2017-06-061-1/+1
* Fix testsLeonid Logvinov2017-06-061-1/+1
* Make methods accept senderAccountLeonid Logvinov2017-06-051-13/+7
* Merge branch 'master' into addEventSubscriptionsFabio Berger2017-06-031-1/+1
|\
| * Improve commentFabio Berger2017-06-021-2/+1
* | Implement zeroEx.exchange.subscribeAsync made sure to clean up subscriptions ...Fabio Berger2017-06-021-2/+2
* | Merge branch 'fillOrderAsync' into addEventSubscriptionsFabio Berger2017-06-021-3/+3
|\|
| * Fix getTransactionSenderAccountIfExistsAsync to return true senderAddress or ...Fabio Berger2017-06-021-3/+4
| * Introduce coinBase accountLeonid Logvinov2017-06-021-0/+6
* | improve commentFabio Berger2017-06-021-1/+4
* | Add comment about the isString assertion lest the next developer tries to use...Fabio Berger2017-06-021-0/+2
* | Write tests for getUnavailableTakerAmountAsync, getFilledTakerAmountAsync and...Fabio Berger2017-06-021-3/+9
* | Merge branch 'fillOrderAsync' into unavailableFilledCancelledFabio Berger2017-06-021-1/+1
|\|
| * Create a FillsScenario utils module and use it in the fillOrder testsFabio Berger2017-06-021-1/+1
* | Merge branch 'fillOrderAsync' into unavailableFilledCancelledFabio Berger2017-06-021-2/+2
|\|
| * Add not enough taker balance testsLeonid Logvinov2017-06-021-2/+2
* | Merge branch 'fillOrderAsync' into unavailableFilledCancelledFabio Berger2017-06-021-51/+63
|\|
| * Fix importFabio Berger2017-06-011-1/+1
| * Stop passing exchangeAddress into getOrderHash and instead get it from the ar...Fabio Berger2017-06-011-28/+41
| * Get getSenderAddressOrThrowAsync everywhere where we throw if the senderAddre...Fabio Berger2017-06-011-7/+4
| * Make taker required on Order object and expect NULL_ADDRESS from 0x.jsFabio Berger2017-06-011-1/+2
| * rename signed_order_schema to order_schemasFabio Berger2017-06-011-1/+1
| * Add convertToJSONSchemaCompatibleObject methodFabio Berger2017-06-011-1/+4
| * move external imports to topFabio Berger2017-06-011-2/+2
| * make bigNumberConfig a moduleFabio Berger2017-06-011-2/+4
| * Add setDefaultAccountLeonid Logvinov2017-06-011-0/+7
| * Fix linter errorsLeonid Logvinov2017-05-311-1/+1
| * Set bignumber configLeonid Logvinov2017-05-311-0/+2
| * Merge branch 'erc20transfer' into fillOrderAsyncLeonid Logvinov2017-05-311-0/+4
| |\
| * | Refactor getOrderHash to accept order as an objectLeonid Logvinov2017-05-301-29/+16
| * | Remove mention of internal cleanup from public commentFabio Berger2017-05-301-2/+1
| * | improve commentFabio Berger2017-05-301-1/+1
| * | Make tokenRegistry contract instantiation lazy and clear it on provider updateFabio Berger2017-05-301-0/+1
| * | rename invalidateExchangeContract to invalidateContractInstanceFabio Berger2017-05-301-1/+1
| * | Merge branch 'master' into dontReinstantiateContractInstancesFabio Berger2017-05-301-0/+3
| |\ \
| | * \ Merge branch 'master' into tokenRegistryFabio Berger2017-05-301-1/+1
| | |\ \
| * | | | Add setProvider method to 0x.js that updates the web3 provider and invalidate...Fabio Berger2017-05-301-0/+8
| | |/ / | |/| |
| * | | make web3Wrapper a private instance variableFabio Berger2017-05-301-1/+1
* | | | Move isValidOrderHash to utils and implement assert.isValidOrderHashFabio Berger2017-06-011-4/+4
| |_|/ |/| |
* | | use token instead of erc20Fabio Berger2017-05-301-3/+3
* | | rename erc20Wrapper to tokenWrapper to be more generic in case we end up supp...Fabio Berger2017-05-301-4/+13
* | | Implement ERC20Wrapper and it's first method getBalanceAsyncFabio Berger2017-05-301-0/+3
| |/ |/|
* | Add TokenRegistryWrapper and getTokensAsync methodFabio Berger2017-05-301-0/+3
|/
* Lowercase schema namesFabio Berger2017-05-301-2/+2
* improve commentFabio Berger2017-05-291-1/+1
* Port over signOrderHashAsyncFabio Berger2017-05-291-1/+63
* Standardize all commentsFabio Berger2017-05-291-4/+4
* Move files up and remove ts folderLeonid Logvinov2017-05-291-0/+134
* Create ts folderFabio Berger2017-05-241-5/+0
* Add empty zeroEx classLeonid Logvinov2017-05-241-0/+5