diff options
author | Jacob Evans <dekz@dekz.net> | 2018-07-06 14:29:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-06 14:29:56 +0800 |
commit | 03b3d74748a6328ac9637ca4e176a316ca347704 (patch) | |
tree | e7d98700e0a5b957048f50c5b5d2c5dfba5216a1 /packages/contracts/src/2.0.0/forwarder/MixinErrorMessages.sol | |
parent | d975c0cef34d126ce30202610671a6f8dca6b6c0 (diff) | |
parent | 0557d6a9bfc07b8d360970ffbcf582f8a26943cb (diff) | |
download | dexon-0x-contracts-03b3d74748a6328ac9637ca4e176a316ca347704.tar.gz dexon-0x-contracts-03b3d74748a6328ac9637ca4e176a316ca347704.tar.zst dexon-0x-contracts-03b3d74748a6328ac9637ca4e176a316ca347704.zip |
Merge pull request #522 from 0xProject/feature/contracts/forwarder
Forwarding contract
Diffstat (limited to 'packages/contracts/src/2.0.0/forwarder/MixinErrorMessages.sol')
-rw-r--r-- | packages/contracts/src/2.0.0/forwarder/MixinErrorMessages.sol | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/contracts/src/2.0.0/forwarder/MixinErrorMessages.sol b/packages/contracts/src/2.0.0/forwarder/MixinErrorMessages.sol new file mode 100644 index 000000000..c2a6ea0a4 --- /dev/null +++ b/packages/contracts/src/2.0.0/forwarder/MixinErrorMessages.sol @@ -0,0 +1,33 @@ +/* + + Copyright 2018 ZeroEx Intl. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + +*/ + +pragma solidity ^0.4.24; + +/// This contract is intended to serve as a reference, but is not actually used for efficiency reasons. +contract MixinErrorMessages { + string constant VALUE_GREATER_THAN_ZERO = "VALUE_GREATER_THAN_ZERO"; + string constant FEE_PROPORTION_TOO_LARGE = "FEE_PROPORTION_TOO_LARGE"; + string constant TAKER_ASSET_ZRX_REQUIRED = "TAKER_ASSET_ZRX_REQUIRED"; + string constant TAKER_ASSET_WETH_REQUIRED = "TAKER_ASSET_WETH_REQUIRED"; + string constant SAME_ASSET_TYPE_REQUIRED = "SAME_ASSET_TYPE_REQUIRED"; + string constant UNACCEPTABLE_THRESHOLD = "UNACCEPTABLE_THRESHOLD"; + string constant UNSUPPORTED_TOKEN_PROXY = "UNSUPPORTED_TOKEN_PROXY"; + string constant ASSET_AMOUNT_MATCH_ORDER_SIZE = "ASSET_AMOUNT_MUST_MATCH_ORDER_SIZE"; + string constant DEFAULT_FUNCTION_WETH_CONTRACT_ONLY = "DEFAULT_FUNCTION_WETH_CONTRACT_ONLY"; + string constant INVALID_MSG_VALUE = "INVALID_MSG_VALUE"; +} |