diff options
author | Fabio Berger <me@fabioberger.com> | 2018-06-01 12:23:08 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-06-01 12:23:08 +0800 |
commit | 719c432ca8be33212b186dc989f25b43674463d8 (patch) | |
tree | 23fd8675e1ae66ae30f925bd735a301c016b9d64 /packages/order-utils/package.json | |
parent | e654616b6d759883a287c23c5a10b56dec90963c (diff) | |
download | dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.gz dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.bz2 dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.lz dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.xz dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.tar.zst dexon-sol-tools-719c432ca8be33212b186dc989f25b43674463d8.zip |
Rename ISigner to IWallet and implement SignatureType.Validator
Diffstat (limited to 'packages/order-utils/package.json')
-rw-r--r-- | packages/order-utils/package.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/order-utils/package.json b/packages/order-utils/package.json index 50f7e7c14..9ed53e4b0 100644 --- a/packages/order-utils/package.json +++ b/packages/order-utils/package.json @@ -11,7 +11,7 @@ "watch": "tsc -w", "prebuild": "run-s clean update_artifacts generate_contract_wrappers", "build": "tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts", - "generate_contract_wrappers": "abi-gen --abis 'lib/src/artifacts/@(Exchange|ISigner).json' --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/generated_contract_wrappers --backend ethers && prettier --write 'src/generated_contract_wrappers/**.ts'", + "generate_contract_wrappers": "abi-gen --abis 'lib/src/artifacts/@(Exchange|IWallet|IValidator).json' --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/generated_contract_wrappers --backend ethers && prettier --write 'src/generated_contract_wrappers/**.ts'", "update_artifacts": "for i in ${npm_package_config_contracts}; do copyfiles -u 4 ../migrations/artifacts/2.0.0/$i.json lib/src/artifacts; done;", "test": "run-s build run_mocha", "test:circleci": "yarn test:coverage", @@ -26,7 +26,7 @@ "upload_docs_json": "aws s3 cp generated_docs/index.json $S3_URL --profile 0xproject --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers --content-type application/json" }, "config": { - "contracts": "ISigner Exchange", + "contracts": "IWallet IValidator Exchange", "postpublish": { "docPublishConfigs": { "extraFileIncludes": [ |