Update README

This commit is contained in:
Amir Bandeali 2019-01-29 14:09:02 -08:00
parent 6ed423d1af
commit 7a6693694c
6 changed files with 7 additions and 7 deletions

View File

@ -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. 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** **Install**
```bash ```bash
npm install @0x/contracts-extensions --save npm install @0x/contracts-tec --save
``` ```
## Bug bounty ## Bug bounty

View File

@ -102,4 +102,4 @@ contract MixinSignatureValidator {
// signature was invalid.) // signature was invalid.)
revert("SIGNATURE_UNSUPPORTED"); revert("SIGNATURE_UNSUPPORTED");
} }
} }

View File

@ -32,4 +32,4 @@ contract IExchange {
bytes calldata signature bytes calldata signature
) )
external; external;
} }

View File

@ -86,4 +86,4 @@ contract LibTECApproval is
} }
return result; return result;
} }
} }

View File

@ -88,4 +88,4 @@ contract LibZeroExTransaction is
} }
return result; return result;
} }
} }

View File

@ -36,4 +36,4 @@ contract MSignatureValidator {
internal internal
pure pure
returns (address signerAddress); returns (address signerAddress);
} }