diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-23 00:00:55 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-03-23 00:00:55 +0800 |
commit | 21b797c3f98e66b0a13b96975df723946ff30999 (patch) | |
tree | ec74394caea910ab815636faf1cfc5ff80961962 /packages | |
parent | de8450d5c93c5b46d227325ca225eadce9610af0 (diff) | |
download | dexon-sol-tools-21b797c3f98e66b0a13b96975df723946ff30999.tar dexon-sol-tools-21b797c3f98e66b0a13b96975df723946ff30999.tar.gz dexon-sol-tools-21b797c3f98e66b0a13b96975df723946ff30999.tar.bz2 dexon-sol-tools-21b797c3f98e66b0a13b96975df723946ff30999.tar.lz dexon-sol-tools-21b797c3f98e66b0a13b96975df723946ff30999.tar.xz dexon-sol-tools-21b797c3f98e66b0a13b96975df723946ff30999.tar.zst dexon-sol-tools-21b797c3f98e66b0a13b96975df723946ff30999.zip |
Improve list of improvements
Diffstat (limited to 'packages')
-rw-r--r-- | packages/website/md/docs/deployer/introduction.md | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/packages/website/md/docs/deployer/introduction.md b/packages/website/md/docs/deployer/introduction.md index c2e2ab24b..7ebd26a3c 100644 --- a/packages/website/md/docs/deployer/introduction.md +++ b/packages/website/md/docs/deployer/introduction.md @@ -4,14 +4,15 @@ It serves a similar purpose as parts of the [Truffle framework](http://trufflefr Deployer has the following advantages over Truffle: -* Deploy each smart contract with a specific version of Solidity +* Deploy each smart contract with a specific version of Solidity. * Improved artifact files: * Properly segregated artifacts to support storing different versions of smart contract deployed on different networks. - * Storage of contructor args and contract source code -* An easy to maintain codebase: TypeScript + Single repo -* Allows you to specify the deployer RPC address -* Migrations that work with `async/await` -* Migrations that can be written synchronously in order to guarentee deterministic contract addresses -* No race conditions when running migrations. + * Storage of constructor args, source maps and paths to all requisite source files. + * An easy to maintain codebase: TypeScript + Single repo. + * Allows you to specify the deployer RPC address. + * Supports Solidity version ranges - contract compiled with latest Solidity version that satisfies the range. + * Migrations that work with `async/await`. + * Migrations that can be written synchronously in order to guarentee deterministic contract addresses. + * No race conditions when running migrations. Deployer can be used as a command-line tool or as an imported module. |