Fabio Berger
e853555165
Publish
...
- 0x.js@6.0.10
- @0x/abi-gen@2.1.0
- @0x/abi-gen-templates@2.2.1
- @0x/abi-gen-wrappers@5.0.0
- @0x/assert@2.1.0
- @0x/asset-buyer@6.1.6
- @0x/asset-swapper@0.0.2
- @0x/base-contract@5.1.1
- @0x/connect@5.0.11
- @0x/contract-addresses@3.0.0
- @0x/contract-artifacts@2.0.1
- @0x/contract-wrappers@9.1.5
- @0x/contracts-gen@1.0.10
- @0x/dev-tools-pages@0.0.28
- @0x/dev-utils@2.2.4
- ethereum-types@2.1.3
- @0x/fill-scenarios@3.0.11
- @0x/instant@1.0.25
- @0x/json-schemas@3.0.11
- @0x/metacoin@0.0.52
- @0x/migrations@4.1.7
- @0x/monorepo-scripts@1.0.33
- @0x/order-utils@8.2.0
- @0x/order-watcher@4.0.12
- @0x/python-contract-wrappers@1.0.1
- @0x/react-docs@2.0.13
- @0x/react-shared@2.0.13
- @0x/sol-compiler@3.1.9
- @0x/sol-coverage@3.0.6
- @0x/sol-doc@2.0.13
- @0x/sol-profiler@3.1.8
- @0x/sol-resolver@2.0.8
- @0x/sol-trace@2.0.14
- @0x/sol-tracing-utils@6.0.13
- @0x/sra-spec@2.0.11
- @0x/subproviders@4.1.1
- @0x/testnet-faucets@1.0.81
- @0x/types@2.4.0
- @0x/typescript-typings@4.2.3
- @0x/utils@4.4.0
- @0x/web3-wrapper@6.0.7
- @0x/website@0.0.84
- @0x/contracts-asset-proxy@2.2.0
- @0x/contracts-coordinator@2.0.5
- @0x/contracts-dev-utils@0.0.2
- @0x/contracts-erc1155@1.1.7
- @0x/contracts-erc20@2.2.6
- @0x/contracts-erc721@2.1.7
- @0x/contracts-exchange@2.1.6
- @0x/contracts-exchange-forwarder@3.0.4
- @0x/contracts-exchange-libs@3.0.0
- @0x/contracts-extensions@4.0.0
- @0x/contracts-multisig@3.1.6
- @0x/contracts-test-utils@3.1.8
- @0x/contracts-utils@3.1.7
2019-07-13 01:33:08 -07:00
Fabio Berger
2ce09d73ac
Updated CHANGELOGS
2019-07-13 01:32:53 -07:00
F. Eugene Aumson
d9378e9a8f
First auto-gen'd Python contract wrapper: ERC20 ( #1878 )
...
* abi-gen-wrappers: fix half-baked folder rename
* .circleci: give cache more descriptive name
* abi-gen: rename type field. tsName->langLocalName
* contract-artifacts: add devdoc to ERC20Token.json
Artifact changes crafted manually: re-generated artifacts from within
@0x/contracts-erc20, and then copied them into @0x/contract-artifacts,
but only committed the changes that added devdoc.
Modified @0x/contracts-erc20/compiler.json to include devdoc in the
hopes that next time contract-artifacts are re-generated en masse, the
devdoc output will just come along for the ride.
Compiling ERC20 TypeScript wrappers after adding devdoc to the artifacts
revealed some inconsistencies in the types. ethereum-types'
DevdocOutput REQUIRED many fields which are not always present,
depending the devdoc contents itself. Relaxing the requirement had some
ramifications.
* abi-gen: Python!
Lots more to come, but so far generating typed methods with some
parameter validation and with reasonable docstrings; enough to make
ERC20 work.
* existing erc20 python wrapper: re-order methods
In order to minimize the diff in the upcoming commit of the
auto-generated version.
* existing erc20 python wrapper: rename method
Rename method _erc20 to _get_contract_instance.
* existing erc20 python wrapper: rename vars
Rename method parameters to match names used in contract methods.
* existing erc20 python wrapper: correction
Contract method `allowance` previously was returning a transaction hash,
but it's a const method, so changed it to return the int that the
underlying method returns.
* contract_wrappers.py: pull in generated code
Custom setup.py command to pull in code previously generated into
../../packages/abi-gen-wrappers/src/generated-wrappers/py.
Changes to existing wrapper code reflect differences between the old,
manually-written wrapper and the new, auto-generated wrapper.
Reconfigured Circle CI to give Python build access to the output of the
TypeScript build, in order to import the generated wrappers from there.
* abi-gen: sanitize docstrings for pycodestyle lint
* abi-gen-templates.py: expose ABI from template
Use ABI given by template, not gotten by name from
zero_ex.contract_artifacts.
Also, expose ABI as a static method.
* py wrappers: contract addr to ctor, not methods
In all Python wrappers (old, manual ones; and new, generated ones), have
client pass the contract address to the wrapper's constructor, rather
than to the individual method calls.
* py wrappers: remove unused param `account_address`
* py wrappers: document use of `private_key`
* Rename file erc20_wrapper.py to erc20_token.py
To match the name of the underlying contract.
* Update CHANGELOG.json's
* git rm erc20_token.py
No need to keep it checked in. Doing so would require manual overhead
of keeping the generated copy in sync with the generation code, which
may get overlooked and cause confusion for others. Authoritative source
will be the published package on PyPI.
* abi-gen-templates: tweak CHANGELOG wording
Co-Authored-By: Fabio B <kandinsky454@protonmail.ch>
* Include transaction parameters in const calls too
* Doc contract_address param to gen'd wrapper ctor
* make myself a CODEOWNER of abi-gen*
* rename ids: langLocalName -> languageSpecificName
* Move Python generation to its own packages/ folder
* Stop duplicating contract artifacts in Python pkg!
Thanks to the way we're now using the `./setup.py pre_install`
convention, there's no longer a need to check the artifacts in to the
Python package.
* move py templates BACK to abi-gen-templates
I got a little overzealous in the previous commit that moved ALL the
python stuff into the new packages/python-contract-wrappers folder.
* Update known-good test output: prettify
* add getABIEncodedTransationData to gen'd code
It was added into the template in the following commit, but the
corresponding checked-in generated code was not updated accordingly.
f51c4f9617
* Fix missed instance of languageSpecificName change
* abi-gen: refine pipeline for testing gen'd code
- generate wrappers for test fixture contracts (dummy, etc) not in `yarn
build` but in `yarn test`
- rename folder test/generated-test/generated-wrappers to
test/generated-test/known-good, and stop writing test output to there,
instead writing it to a new test/generated-test/output folder.
- sol-compile test fixture contracts in every test run
- run unit tests separately from tests of generated and built TypeScript
wrappers. The existing `yarn run_mocha` will run unit tests, and
there's a new `yarn run_contract_wrapper_tests`.
* abi-gen: test Python gen [known test failures]
Also generate TypeScript wrapper test code into a TypeScript folder
(alongside the newly created Python folder).
Known-good code manually corrected (from generated code) to reflect
known problems that still need to be addressed. Namely:
- base contract and tx params should be imported from canonical
package, not relative path. relative path is working for wrapping
OUR contracts, but would not be usable in a more general
context.
- return type missing for some generated methods.
These outstanding problems are currently causing this test to fail.
* fix failing abi-gen test: missing return types
* fix failing abi-gen test: qualify imports
* in py wrapper, simplify base class initialization
per
https://github.com/0xProject/0x-monorepo/pull/1878#discussion_r299248641
* move 3rd party typings to typescript-typings
* make package python-contract-wrappers private
* make Xianny CODEOWNER of base-contract & templates
* abi-gen: clarify --help for --backend
* remove superfluous CHANGELOG entry
2019-07-03 11:01:01 -04:00
Jacob Evans
c78a602990
Publish
...
- 0x.js@6.0.6
- @0x/abi-gen@2.0.9
- @0x/abi-gen-templates@2.0.2
- @0x/abi-gen-wrappers@4.2.0
- @0x/assert@2.0.9
- @0x/asset-buyer@6.1.0
- @0x/base-contract@5.0.5
- @0x/connect@5.0.5
- @0x/contract-addresses@2.3.1
- @0x/contract-artifacts@1.5.0
- @0x/contract-wrappers@9.0.0
- @0x/contracts-gen@1.0.8
- @0x/dev-tools-pages@0.0.25
- @0x/dev-utils@2.2.1
- ethereum-types@2.1.2
- @0x/fill-scenarios@3.0.5
- @0x/instant@1.0.20
- @0x/json-schemas@3.0.9
- @0x/metacoin@0.0.47
- @0x/migrations@4.1.1
- @0x/monorepo-scripts@1.0.30
- @0x/order-utils@7.2.0
- @0x/order-watcher@4.0.6
- @0x/pipeline@1.0.17
- @0x/react-docs@2.0.10
- @0x/react-shared@2.0.10
- @0x/sol-compiler@3.1.6
- @0x/sol-coverage@3.0.3
- @0x/sol-doc@2.0.10
- @0x/sol-profiler@3.1.5
- @0x/sol-resolver@2.0.7
- @0x/sol-trace@2.0.11
- @0x/sol-tracing-utils@6.0.10
- @0x/sra-spec@2.0.9
- @0x/subproviders@4.0.5
- @0x/testnet-faucets@1.0.76
- @0x/tslint-config@3.0.1
- @0x/types@2.2.2
- @0x/typescript-typings@4.2.2
- @0x/utils@4.3.1
- @0x/web3-wrapper@6.0.5
- @0x/website@0.0.79
- @0x/contracts-asset-proxy@2.1.1
- @0x/contracts-coordinator@2.0.0
- @0x/contracts-erc1155@1.1.1
- @0x/contracts-erc20@2.2.0
- @0x/contracts-erc721@2.1.1
- @0x/contracts-exchange@2.1.1
- @0x/contracts-exchange-forwarder@2.1.1
- @0x/contracts-exchange-libs@2.1.1
- @0x/contracts-extensions@3.1.1
- @0x/contracts-multisig@3.1.1
- @0x/contracts-test-utils@3.1.2
- @0x/contracts-utils@3.1.1
2019-04-11 17:00:06 +01:00
Jacob Evans
0acec57ba9
Updated CHANGELOGS
2019-04-11 16:59:38 +01:00
Jacob Evans
75a0d3e494
Update all .npmignores
2019-04-04 12:30:41 +01:00
Fabio Berger
0f45409b4d
Publish
...
- 0x.js@6.0.5
- @0x/abi-gen@2.0.8
- @0x/abi-gen-wrappers@4.1.0
- @0x/assert@2.0.8
- @0x/asset-buyer@6.0.5
- @0x/base-contract@5.0.4
- @0x/connect@5.0.4
- @0x/contract-addresses@2.3.0
- @0x/contract-artifacts@1.4.0
- @0x/contract-wrappers@8.0.5
- @0x/contracts-gen@1.0.7
- @0x/dev-tools-pages@0.0.24
- @0x/dev-utils@2.2.0
- @0x/fill-scenarios@3.0.4
- @0x/instant@1.0.19
- @0x/json-schemas@3.0.8
- @0x/metacoin@0.0.46
- @0x/migrations@4.1.0
- @0x/monorepo-scripts@1.0.29
- @0x/order-utils@7.1.1
- @0x/order-watcher@4.0.5
- @0x/pipeline@1.0.16
- @0x/react-docs@2.0.9
- @0x/react-shared@2.0.9
- @0x/sol-compiler@3.1.5
- @0x/sol-coverage@3.0.2
- @0x/sol-doc@2.0.9
- @0x/sol-profiler@3.1.4
- @0x/sol-resolver@2.0.6
- @0x/sol-trace@2.0.10
- @0x/sol-tracing-utils@6.0.9
- @0x/sra-spec@2.0.8
- @0x/subproviders@4.0.4
- @0x/testnet-faucets@1.0.75
- @0x/types@2.2.1
- @0x/typescript-typings@4.2.1
- @0x/utils@4.3.0
- @0x/web3-wrapper@6.0.4
- @0x/website@0.0.78
- @0x/contracts-asset-proxy@2.1.0
- @0x/contracts-coordinator@1.1.0
- @0x/contracts-erc1155@1.1.0
- @0x/contracts-erc20@2.1.0
- @0x/contracts-erc721@2.1.0
- @0x/contracts-exchange@2.1.0
- @0x/contracts-exchange-forwarder@2.1.0
- @0x/contracts-exchange-libs@2.1.0
- @0x/contracts-extensions@3.1.0
- @0x/contracts-multisig@3.1.0
- @0x/contracts-test-utils@3.1.1
- @0x/contracts-utils@3.1.0
2019-03-21 17:07:20 +01:00
Fabio Berger
5469d3ec13
Updated CHANGELOGS
2019-03-21 17:07:04 +01:00
Fabio Berger
7dcdda14f5
modify types
2019-03-21 15:13:39 +01:00
Fabio Berger
ddee04e98c
Try import instead of const
2019-03-21 14:46:47 +01:00
Fabio Berger
deb7e95567
Revert change
2019-03-21 14:29:26 +01:00
Fabio Berger
879805e316
merge development
2019-03-20 17:07:02 +01:00
Fabio Berger
542d1c1c41
In-line the declaration
2019-03-20 16:27:13 +01:00
Leonid Logvinov
d4c37ecfa3
Publish
...
- 0x.js@6.0.4
- @0x/abi-gen@2.0.7
- @0x/abi-gen-wrappers@4.0.3
- @0x/assert@2.0.7
- @0x/asset-buyer@6.0.4
- @0x/base-contract@5.0.3
- @0x/connect@5.0.3
- @0x/contract-addresses@2.2.3
- @0x/contract-wrappers@8.0.4
- @0x/contracts-gen@1.0.6
- @0x/dev-tools-pages@0.0.23
- @0x/dev-utils@2.1.4
- ethereum-types@2.1.1
- @0x/fill-scenarios@3.0.3
- @0x/instant@1.0.18
- @0x/json-schemas@3.0.7
- @0x/metacoin@0.0.45
- @0x/migrations@4.0.4
- @0x/monorepo-scripts@1.0.28
- @0x/order-utils@7.1.0
- @0x/order-watcher@4.0.4
- @0x/pipeline@1.0.15
- @0x/react-docs@2.0.8
- @0x/react-shared@2.0.8
- @0x/sol-compiler@3.1.4
- @0x/sol-coverage@3.0.1
- @0x/sol-doc@2.0.8
- @0x/sol-profiler@3.1.3
- @0x/sol-resolver@2.0.5
- @0x/sol-trace@2.0.9
- @0x/sol-tracing-utils@6.0.8
- @0x/sra-spec@2.0.7
- @0x/subproviders@4.0.3
- @0x/testnet-faucets@1.0.74
- @0x/types@2.2.0
- @0x/typescript-typings@4.2.0
- @0x/utils@4.2.3
- @0x/web3-wrapper@6.0.3
- @0x/website@0.0.77
- @0x/contracts-asset-proxy@2.0.0
- @0x/contracts-coordinator@1.0.0
- @0x/contracts-erc1155@1.0.1
- @0x/contracts-erc20@2.0.0
- @0x/contracts-erc721@2.0.0
- @0x/contracts-exchange@2.0.0
- @0x/contracts-exchange-forwarder@2.0.0
- @0x/contracts-exchange-libs@2.0.0
- @0x/contracts-extensions@3.0.0
- @0x/contracts-multisig@3.0.0
- @0x/contracts-test-utils@3.1.0
- @0x/contracts-utils@3.0.0
2019-03-20 15:26:54 +01:00
Leonid Logvinov
3f9fd7c060
Updated CHANGELOGS
2019-03-20 15:26:43 +01:00
Fabio Berger
8af164dbd2
Attempt to fix type issue
2019-03-20 15:05:21 +01:00
Amir Bandeali
2f7dd177c1
Update CHANGELOGs
2019-03-07 15:17:56 -08:00
Amir Bandeali
e7bb524362
Update dependencies and update solc types
2019-03-07 14:57:13 -08:00
Leonid Logvinov
5934eb0559
Publish
...
- 0x.js@6.0.0
- @0x/abi-gen@2.0.4
- @0x/abi-gen-templates@2.0.1
- @0x/abi-gen-wrappers@4.0.0
- @0x/assert@2.0.4
- @0x/asset-buyer@6.0.0
- @0x/base-contract@5.0.0
- @0x/connect@5.0.0
- @0x/contract-addresses@2.2.2
- @0x/contract-wrappers@8.0.0
- @0x/contracts-gen@1.0.3
- @0x/dev-tools-pages@0.0.20
- @0x/dev-utils@2.1.1
- ethereum-types@2.1.0
- @0x/fill-scenarios@3.0.0
- @0x/instant@1.0.14
- @0x/json-schemas@3.0.4
- @0x/metacoin@0.0.41
- @0x/migrations@4.0.0
- @0x/monorepo-scripts@1.0.25
- @0x/order-utils@7.0.0
- @0x/order-watcher@4.0.0
- @0x/pipeline@1.0.11
- @0x/react-docs@2.0.5
- @0x/react-shared@2.0.5
- @0x/sol-compiler@3.1.0
- @0x/sol-coverage@2.0.4
- @0x/sol-doc@2.0.4
- @0x/sol-profiler@3.0.0
- @0x/sol-resolver@2.0.3
- @0x/sol-trace@2.0.5
- @0x/sol-tracing-utils@6.0.4
- @0x/sra-spec@2.0.4
- @0x/subproviders@4.0.0
- @0x/testnet-faucets@1.0.70
- @0x/types@2.1.0
- @0x/typescript-typings@4.1.0
- @0x/utils@4.2.0
- @0x/web3-wrapper@6.0.0
- @0x/website@0.0.73
- @0x/contracts-asset-proxy@1.0.6
- @0x/contracts-erc20@1.0.6
- @0x/contracts-erc721@1.0.6
- @0x/contracts-exchange@1.0.6
- @0x/contracts-exchange-forwarder@1.0.6
- @0x/contracts-exchange-libs@1.1.0
- @0x/contracts-extensions@2.0.5
- @0x/contracts-multisig@2.0.5
- @0x/contracts-test-utils@3.0.5
- @0x/contracts-utils@2.0.5
2019-02-25 13:35:29 -08:00
Leonid Logvinov
b998d719a6
Updated CHANGELOGS
2019-02-25 13:35:17 -08:00
Fabio Berger
e86df96bfe
Fix doc gen
2019-02-20 13:20:32 -08:00
Fabio Berger
31d289c504
Add type import
2019-02-19 23:56:28 -08:00
Fabio Berger
eca8410dbb
Update CHANGELOGs
2019-02-19 23:38:53 -08:00
Fabio Berger
5db20bbbe8
Add support for EIP1193 providers and clean up provider standardization logic
2019-02-18 15:12:29 -08:00
Leonid Logvinov
7b583cecb2
Publish
...
- 0x.js@4.0.0
- @0x/abi-gen@2.0.0
- @0x/abi-gen-templates@2.0.0
- @0x/abi-gen-wrappers@3.0.0
- @0x/assert@2.0.0
- @0x/asset-buyer@5.0.0
- @0x/base-contract@4.0.0
- @0x/connect@4.0.0
- @0x/contract-addresses@2.2.1
- @0x/contract-wrappers@6.0.1
- @0x/dev-tools-pages@0.0.15
- @0x/dev-utils@2.0.0
- ethereum-types@2.0.0
- @0x/fill-scenarios@2.0.0
- @0x/instant@1.0.9
- @0x/json-schemas@3.0.0
- @0x/metacoin@0.0.37
- @0x/migrations@3.0.0
- @0x/monorepo-scripts@1.0.20
- @0x/order-utils@4.0.0
- @0x/order-watcher@3.0.0
- @0x/pipeline@1.0.6
- @0x/react-docs@2.0.0
- @0x/react-shared@2.0.0
- @0x/sol-compiler@3.0.0
- @0x/sol-coverage@2.0.0
- @0x/sol-doc@2.0.0
- @0x/sol-profiler@2.0.1
- @0x/sol-resolver@2.0.0
- @0x/sol-trace@2.0.1
- @0x/sol-tracing-utils@6.0.0
- @0x/sra-spec@2.0.0
- @0x/subproviders@3.0.0
- @0x/testnet-faucets@1.0.65
- @0x/tslint-config@3.0.0
- @0x/types@2.0.0
- @0x/typescript-typings@4.0.0
- @0x/utils@4.0.1
- @0x/web3-wrapper@4.0.0
- @0x/website@0.0.68
- @0x/contracts-asset-proxy@1.0.1
- @0x/contracts-erc20@1.0.1
- @0x/contracts-erc721@1.0.1
- @0x/contracts-exchange@1.0.1
- @0x/contracts-exchange-forwarder@1.0.1
- @0x/contracts-exchange-libs@1.0.1
- @0x/contracts-extensions@2.0.0
- @0x/contracts-multisig@2.0.0
- @0x/contracts-test-utils@3.0.0
- @0x/contracts-utils@2.0.0
2019-02-05 14:50:16 +01:00
Leonid Logvinov
f3d9520db2
Updated CHANGELOGS
2019-02-05 14:50:02 +01:00
Leonid Logvinov
0c12128f64
Temp CI
2019-01-28 17:24:44 +01:00
Leonid Logvinov
7d166dc7da
Fix prettier
2019-01-15 17:34:44 +01:00
Leonid Logvinov
4404f92b38
Add CHANGELOG entries
2019-01-15 17:05:51 +01:00
Leonid Logvinov
c3afc13dd6
Upgrade bignumber.js version
2019-01-15 16:25:24 +01:00
Leonid Logvinov
f570f80674
Publish
...
- 0x.js@3.0.2
- @0x/abi-gen@1.0.22
- @0x/abi-gen-templates@1.0.2
- @0x/abi-gen-wrappers@2.2.0
- @0x/assert@1.0.23
- @0x/asset-buyer@4.0.1
- @0x/base-contract@3.0.13
- @0x/connect@3.0.13
- @0x/contract-addresses@2.2.0
- @0x/contract-artifacts@1.3.0
- @0x/contract-wrappers@5.0.0
- @0x/dev-tools-pages@0.0.13
- @0x/dev-utils@1.0.24
- ethereum-types@1.1.6
- @0x/fill-scenarios@1.1.2
- @0x/instant@1.0.7
- @0x/json-schemas@2.1.7
- @0x/metacoin@0.0.35
- @0x/migrations@2.4.0
- @0x/monorepo-scripts@1.0.18
- @0x/order-utils@3.1.2
- @0x/order-watcher@2.4.2
- @0x/pipeline@1.0.5
- @0x/react-docs@1.0.25
- @0x/react-shared@1.1.2
- @0x/sol-compiler@2.0.2
- @0x/sol-coverage@1.0.2
- @0x/sol-doc@1.0.14
- @0x/sol-profiler@1.0.2
- @0x/sol-resolver@1.2.3
- @0x/sol-trace@1.0.2
- @0x/sol-tracing-utils@4.0.0
- @0x/sra-spec@1.0.16
- @0x/subproviders@2.1.11
- @0x/testnet-faucets@1.0.63
- @0x/tslint-config@2.0.2
- @0x/types@1.5.2
- @0x/typescript-typings@3.0.8
- @0x/utils@3.0.1
- @0x/web3-wrapper@3.2.4
- @0x/website@0.0.66
- @0x/contracts-examples@1.0.5
- @0x/contracts-extensions@1.2.2
- @0x/contracts-interfaces@1.0.5
- @0x/contracts-libs@1.0.5
- @0x/contracts-multisig@1.0.5
- @0x/contracts-protocol@2.2.2
- @0x/contracts-test-utils@2.0.0
- @0x/contracts-tokens@1.0.5
- @0x/contracts-utils@1.0.5
2019-01-15 15:21:53 +01:00
Leonid Logvinov
dbae6ec165
Updated CHANGELOGS
2019-01-15 15:21:42 +01:00
Fabio Berger
cf3787edbb
Publish
...
- 0x.js@3.0.1
- @0x/abi-gen@1.0.21
- @0x/abi-gen-wrappers@2.1.1
- @0x/assert@1.0.22
- @0x/asset-buyer@4.0.0
- @0x/base-contract@3.0.12
- @0x/connect@3.0.12
- @0x/contract-wrappers@4.2.1
- @0x/dev-tools-pages@0.0.12
- @0x/dev-utils@1.0.23
- ethereum-types@1.1.5
- @0x/fill-scenarios@1.1.1
- @0x/instant@1.0.6
- @0x/json-schemas@2.1.6
- @0x/metacoin@0.0.34
- @0x/migrations@2.3.1
- @0x/monorepo-scripts@1.0.17
- @0x/order-utils@3.1.1
- @0x/order-watcher@2.4.1
- @0x/pipeline@1.0.4
- @0x/react-docs@1.0.24
- @0x/react-shared@1.1.1
- @0x/sol-compiler@2.0.1
- @0x/sol-coverage@1.0.1
- @0x/sol-doc@1.0.13
- @0x/sol-profiler@1.0.1
- @0x/sol-resolver@1.2.2
- @0x/sol-trace@1.0.1
- @0x/sol-tracing-utils@3.0.0
- @0x/sra-spec@1.0.15
- @0x/subproviders@2.1.10
- @0x/testnet-faucets@1.0.62
- @0x/tslint-config@2.0.1
- @0x/types@1.5.1
- @0x/typescript-typings@3.0.7
- @0x/utils@3.0.0
- @0x/web3-wrapper@3.2.3
- @0x/website@0.0.65
- @0x/contracts-examples@1.0.4
- @0x/contracts-extensions@1.2.1
- @0x/contracts-interfaces@1.0.4
- @0x/contracts-libs@1.0.4
- @0x/contracts-multisig@1.0.4
- @0x/contracts-protocol@2.2.1
- @0x/contracts-test-utils@1.0.4
- @0x/contracts-tokens@1.0.4
- @0x/contracts-utils@1.0.4
2019-01-11 18:04:43 +01:00
Fabio Berger
89429c54a7
Updated CHANGELOGS
2019-01-11 18:04:33 +01:00
Alex Browne
89e398fa39
Update prettier to version ^1.15.3
2019-01-10 17:41:13 -08:00
Leonid Logvinov
bc27ee0deb
Add includes section to typescript-typings package.json
2018-12-19 15:41:48 +01:00
Leonid Logvinov
2abd8fe4ee
Publish
...
- 0x.js@2.0.8
- @0x/abi-gen@1.0.19
- @0x/abi-gen-wrappers@2.0.2
- @0x/assert@1.0.20
- @0x/asset-buyer@3.0.4
- @0x/base-contract@3.0.10
- @0x/connect@3.0.10
- @0x/contract-wrappers@4.1.3
- @0x/dev-tools-pages@0.0.10
- @0x/dev-utils@1.0.21
- ethereum-types@1.1.4
- @0x/fill-scenarios@1.0.16
- @0x/instant@1.0.4
- @0x/json-schemas@2.1.4
- @0x/metacoin@0.0.32
- @0x/migrations@2.2.2
- @0x/order-utils@3.0.7
- @0x/order-watcher@2.2.8
- @0x/pipeline@1.0.2
- @0x/react-docs@1.0.22
- @0x/react-shared@1.0.25
- @0x/sol-compiler@1.1.16
- @0x/sol-cov@2.1.16
- @0x/sol-doc@1.0.11
- @0x/sol-resolver@1.1.1
- @0x/sra-spec@1.0.13
- @0x/subproviders@2.1.8
- @0x/testnet-faucets@1.0.60
- @0x/tslint-config@2.0.0
- @0x/types@1.4.1
- @0x/typescript-typings@3.0.6
- @0x/utils@2.0.8
- @0x/web3-wrapper@3.2.1
- @0x/website@0.0.63
- @0x/contracts-examples@1.0.1
- @0x/contracts-extensions@1.0.1
- @0x/contracts-interfaces@1.0.1
- @0x/contracts-libs@1.0.1
- @0x/contracts-multisig@1.0.1
- @0x/contracts-protocol@2.1.58
- @0x/contracts-test-utils@1.0.2
- @0x/contracts-tokens@1.0.1
- @0x/contracts-utils@1.0.1
2018-12-13 14:28:27 -08:00
Leonid Logvinov
3c578cfda9
Updated CHANGELOGS
2018-12-13 14:28:17 -08:00
Leonid Logvinov
597b2f38f5
Updated CHANGELOGS
2018-12-13 14:04:56 -08:00
Fabio Berger
96b8100a78
Publish
...
- 0x.js@2.0.7
- @0x/abi-gen@1.0.18
- @0x/abi-gen-wrappers@2.0.1
- @0x/assert@1.0.19
- @0x/asset-buyer@3.0.3
- @0x/base-contract@3.0.9
- @0x/connect@3.0.9
- @0x/contract-wrappers@4.1.2
- @0x/dev-tools-pages@0.0.9
- @0x/dev-utils@1.0.20
- ethereum-types@1.1.3
- @0x/fill-scenarios@1.0.15
- @0x/instant@1.0.3
- @0x/json-schemas@2.1.3
- @0x/metacoin@0.0.31
- @0x/migrations@2.2.1
- @0x/monorepo-scripts@1.0.15
- @0x/order-utils@3.0.6
- @0x/order-watcher@2.2.7
- @0x/pipeline@1.0.1
- @0x/react-docs@1.0.21
- @0x/react-shared@1.0.24
- @0x/sol-compiler@1.1.15
- @0x/sol-cov@2.1.15
- @0x/sol-doc@1.0.10
- @0x/sol-resolver@1.1.0
- @0x/sra-spec@1.0.12
- @0x/subproviders@2.1.7
- @0x/testnet-faucets@1.0.59
- @0x/types@1.4.0
- @0x/typescript-typings@3.0.5
- @0x/utils@2.0.7
- @0x/web3-wrapper@3.2.0
- @0x/website@0.0.62
- @0x/contracts-examples@1.0.1
- @0x/contracts-extensions@1.0.1
- @0x/contracts-interfaces@1.0.1
- @0x/contracts-libs@1.0.1
- @0x/contracts-multisig@1.0.1
- @0x/contracts-protocol@2.1.57
- @0x/contracts-test-utils@1.0.1
- @0x/contracts-tokens@1.0.1
- @0x/contracts-utils@1.0.1
2018-12-11 15:38:43 -08:00
Fabio Berger
e2b0c4d116
Updated CHANGELOGS
2018-12-11 15:38:32 -08:00
Leonid Logvinov
86f1697934
Updated CHANGELOGS
2018-12-10 15:06:05 -08:00
Jacob Evans
b4a11de097
Publish
...
- 0x.js@2.0.1
- @0x/abi-gen@1.0.15
- @0x/abi-gen-wrappers@1.0.2
- @0x/assert@1.0.15
- @0x/asset-buyer@2.2.0
- @0x/base-contract@3.0.3
- @0x/connect@3.0.3
- @0x/contract-addresses@1.1.0
- @0x/contract-artifacts@1.1.0
- @0x/contract-wrappers@3.0.1
- contracts@2.1.51
- @0x/dev-tools-pages@0.0.3
- @0x/dev-utils@1.0.14
- ethereum-types@1.1.2
- @0x/fill-scenarios@1.0.9
- @0x/instant@0.0.4
- @0x/json-schemas@2.0.1
- @0x/metacoin@0.0.25
- @0x/migrations@2.0.1
- @0x/monorepo-scripts@1.0.13
- @0x/order-utils@2.0.1
- @0x/order-watcher@2.2.1
- @0x/react-docs@1.0.15
- @0x/react-shared@1.0.18
- @0x/sol-compiler@1.1.9
- @0x/sol-cov@2.1.9
- @0x/sol-doc@1.0.4
- @0x/sol-resolver@1.0.16
- @0x/sra-spec@1.0.8
- @0x/subproviders@2.1.1
- @0x/testnet-faucets@1.0.53
- @0x/tslint-config@1.0.10
- @0x/types@1.2.1
- @0x/typescript-typings@3.0.4
- @0x/utils@2.0.4
- @0x/web3-wrapper@3.1.1
- @0x/website@0.0.56
2018-11-09 16:28:52 +11:00
Jacob Evans
a22d78e273
Updated CHANGELOGS
2018-11-09 16:28:35 +11:00
Leonid Logvinov
8b62b350b1
Publish
...
- 0x.js@2.0.0
- @0x/abi-gen@1.0.14
- @0x/abi-gen-wrappers@1.0.1
- @0x/assert@1.0.14
- @0x/asset-buyer@2.1.0
- @0x/base-contract@3.0.2
- @0x/connect@3.0.2
- @0x/contract-addresses@1.0.1
- @0x/contract-artifacts@1.0.1
- @0x/contract-wrappers@3.0.0
- contracts@2.1.50
- @0x/dev-tools-pages@0.0.2
- @0x/dev-utils@1.0.13
- ethereum-types@1.1.1
- @0x/fill-scenarios@1.0.8
- @0x/instant@0.0.3
- @0x/json-schemas@2.0.0
- @0x/metacoin@0.0.24
- @0x/migrations@2.0.0
- @0x/monorepo-scripts@1.0.12
- @0x/order-utils@2.0.0
- @0x/order-watcher@2.2.0
- @0x/react-docs@1.0.14
- @0x/react-shared@1.0.17
- @0x/sol-compiler@1.1.8
- @0x/sol-cov@2.1.8
- @0x/sol-doc@1.0.3
- @0x/sol-resolver@1.0.15
- @0x/sra-spec@1.0.7
- @0x/subproviders@2.1.0
- @0x/testnet-faucets@1.0.52
- @0x/tslint-config@1.0.9
- @0x/types@1.2.0
- @0x/typescript-typings@3.0.3
- @0x/utils@2.0.3
- @0x/web3-wrapper@3.1.0
- @0x/website@0.0.55
2018-10-18 16:03:00 +02:00
Leonid Logvinov
71d1e6b0ec
Updated CHANGELOGS
2018-10-18 16:02:49 +02:00
Leonid Logvinov
7e49db2301
Fix ethereum-types versions
2018-10-18 15:52:32 +02:00
Jacob Evans
2735fb4fa6
chore: change README.md from 0xproject to 0x
2018-10-18 22:30:09 +11:00
Jacob Evans
9f924e459c
chore: change package org from 0xproject to 0x
2018-10-18 22:27:31 +11:00
Alex Browne
770cf52933
Remove unused copyfiles dependencies
2018-10-15 13:37:57 -07:00