aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract-wrappers/CHANGELOG.json
diff options
context:
space:
mode:
authorKadinsky <kandinsky454@protonmail.ch>2018-10-16 21:21:46 +0800
committerGitHub <noreply@github.com>2018-10-16 21:21:46 +0800
commite62458705039f6a187ff23e4e4ee1737476eb431 (patch)
tree27497ebaf0e7da27561620b28b28cc30833261fc /packages/contract-wrappers/CHANGELOG.json
parent05bf7a8280bcb46144dfef9b30bb7c0e2e4a15aa (diff)
parent5938e8a52daa913668593977e44ca25e38a29e41 (diff)
downloaddexon-0x-contracts-e62458705039f6a187ff23e4e4ee1737476eb431.tar
dexon-0x-contracts-e62458705039f6a187ff23e4e4ee1737476eb431.tar.gz
dexon-0x-contracts-e62458705039f6a187ff23e4e4ee1737476eb431.tar.bz2
dexon-0x-contracts-e62458705039f6a187ff23e4e4ee1737476eb431.tar.lz
dexon-0x-contracts-e62458705039f6a187ff23e4e4ee1737476eb431.tar.xz
dexon-0x-contracts-e62458705039f6a187ff23e4e4ee1737476eb431.tar.zst
dexon-0x-contracts-e62458705039f6a187ff23e4e4ee1737476eb431.zip
Merge pull request #1105 from 0xProject/feature/contracts-artifacts-re-org
Reorganize and modularize generated contract wrappers and artifacts
Diffstat (limited to 'packages/contract-wrappers/CHANGELOG.json')
-rw-r--r--packages/contract-wrappers/CHANGELOG.json35
1 files changed, 34 insertions, 1 deletions
diff --git a/packages/contract-wrappers/CHANGELOG.json b/packages/contract-wrappers/CHANGELOG.json
index 0770b6c0d..9bb5e5fc5 100644
--- a/packages/contract-wrappers/CHANGELOG.json
+++ b/packages/contract-wrappers/CHANGELOG.json
@@ -1,9 +1,42 @@
[
{
- "version": "2.1.0",
+ "version": "3.0.0",
"changes": [
{
"note": "Add optional validation to the forwarder wrapper methods"
+ },
+ {
+ "note": "Updated to use new modularized artifacts.",
+ "pr": 1105
+ },
+ {
+ "note": "Top-level `ContractWrappers` class has a new optional `contractAddresses` parameter.",
+ "pr": 1105
+ },
+ {
+ "note":
+ "Default contract addresses are no longer stored in artifacts and are instead loaded from the `@0xproject/contract-addresses` package.",
+ "pr": 1105
+ },
+ {
+ "note":
+ "Most contract addresses are now defined at instantiation time and are available as properties (e.g., `exchangeWrapper.address`) instead of methods (e.g., `exchangeWrapper.getContractAddress()`).",
+ "pr": 1105
+ },
+ {
+ "note":
+ "Removed `setProvider` method in top-level `ContractWrapper` class and added new `unsubscribeAll` method.",
+ "pr": 1105
+ },
+ {
+ "note":
+ "Some properties and methods have been renamed. For example, some methods that previously could throw no longer can, and so their names have been updated accordingly.",
+ "pr": 1105
+ },
+ {
+ "note":
+ "Removed ContractNotFound errors. Checking for this error was somewhat ineffecient. Relevant methods/functions now return the default error from web3-wrapper, which we feel provides enough information.",
+ "pr": 1105
}
]
},