From 7a6693694c039e2dd04499ed98c894ff3ee4ff2e Mon Sep 17 00:00:00 2001 From: Amir Bandeali Date: Tue, 29 Jan 2019 14:09:02 -0800 Subject: [PATCH] Update README --- contracts/tec/README.md | 4 ++-- contracts/tec/contracts/src/MixinSignatureValidator.sol | 2 +- contracts/tec/contracts/src/interfaces/IExchange.sol | 2 +- contracts/tec/contracts/src/libs/LibTECApproval.sol | 2 +- contracts/tec/contracts/src/libs/LibZeroExTransaction.sol | 2 +- contracts/tec/contracts/src/mixins/MSignatureValidator.sol | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/contracts/tec/README.md b/contracts/tec/README.md index cf6e461cd6..dc99db0dfb 100644 --- a/contracts/tec/README.md +++ b/contracts/tec/README.md @@ -1,4 +1,4 @@ -## Extensions +## Trade Execution Coordinator (TEC) This package contains a contract that allows users to call arbitrary functions on the Exchange contract with permission from one or more TECs (Trade Execution Coordinators). Addresses of the deployed contracts can be found in the 0x [wiki](https://0xproject.com/wiki#Deployed-Addresses) or the [DEPLOYS](./DEPLOYS.json) file within this package. @@ -7,7 +7,7 @@ This package contains a contract that allows users to call arbitrary functions o **Install** ```bash -npm install @0x/contracts-extensions --save +npm install @0x/contracts-tec --save ``` ## Bug bounty diff --git a/contracts/tec/contracts/src/MixinSignatureValidator.sol b/contracts/tec/contracts/src/MixinSignatureValidator.sol index 2e8e4e896a..add1387ad8 100644 --- a/contracts/tec/contracts/src/MixinSignatureValidator.sol +++ b/contracts/tec/contracts/src/MixinSignatureValidator.sol @@ -102,4 +102,4 @@ contract MixinSignatureValidator { // signature was invalid.) revert("SIGNATURE_UNSUPPORTED"); } -} \ No newline at end of file +} diff --git a/contracts/tec/contracts/src/interfaces/IExchange.sol b/contracts/tec/contracts/src/interfaces/IExchange.sol index 229e65943f..abc5d492f2 100644 --- a/contracts/tec/contracts/src/interfaces/IExchange.sol +++ b/contracts/tec/contracts/src/interfaces/IExchange.sol @@ -32,4 +32,4 @@ contract IExchange { bytes calldata signature ) external; -} \ No newline at end of file +} diff --git a/contracts/tec/contracts/src/libs/LibTECApproval.sol b/contracts/tec/contracts/src/libs/LibTECApproval.sol index 6cdc2a709f..87c5f52476 100644 --- a/contracts/tec/contracts/src/libs/LibTECApproval.sol +++ b/contracts/tec/contracts/src/libs/LibTECApproval.sol @@ -86,4 +86,4 @@ contract LibTECApproval is } return result; } -} \ No newline at end of file +} diff --git a/contracts/tec/contracts/src/libs/LibZeroExTransaction.sol b/contracts/tec/contracts/src/libs/LibZeroExTransaction.sol index b004c7e110..7f03aa60dc 100644 --- a/contracts/tec/contracts/src/libs/LibZeroExTransaction.sol +++ b/contracts/tec/contracts/src/libs/LibZeroExTransaction.sol @@ -88,4 +88,4 @@ contract LibZeroExTransaction is } return result; } -} \ No newline at end of file +} diff --git a/contracts/tec/contracts/src/mixins/MSignatureValidator.sol b/contracts/tec/contracts/src/mixins/MSignatureValidator.sol index 91917fc1ef..bbc7dd3952 100644 --- a/contracts/tec/contracts/src/mixins/MSignatureValidator.sol +++ b/contracts/tec/contracts/src/mixins/MSignatureValidator.sol @@ -36,4 +36,4 @@ contract MSignatureValidator { internal pure returns (address signerAddress); -} \ No newline at end of file +}