aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/src/current/tokens/ZRXToken/ZRXToken.sol
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-02-06 05:02:48 +0800
committerAmir Bandeali <abandeali1@gmail.com>2018-02-07 09:26:12 +0800
commit897515c00207a11f7a45932d3c526a5eaf961635 (patch)
tree9282ffabd4242c73af49154fa963ebc3378bd935 /packages/contracts/src/current/tokens/ZRXToken/ZRXToken.sol
parent4c9c4c487a034d926443eeb8a0154fd38c97aca3 (diff)
downloaddexon-sol-tools-897515c00207a11f7a45932d3c526a5eaf961635.tar
dexon-sol-tools-897515c00207a11f7a45932d3c526a5eaf961635.tar.gz
dexon-sol-tools-897515c00207a11f7a45932d3c526a5eaf961635.tar.bz2
dexon-sol-tools-897515c00207a11f7a45932d3c526a5eaf961635.tar.lz
dexon-sol-tools-897515c00207a11f7a45932d3c526a5eaf961635.tar.xz
dexon-sol-tools-897515c00207a11f7a45932d3c526a5eaf961635.tar.zst
dexon-sol-tools-897515c00207a11f7a45932d3c526a5eaf961635.zip
Add CLI option for networkId, add abi-gen to contracts package
Diffstat (limited to 'packages/contracts/src/current/tokens/ZRXToken/ZRXToken.sol')
-rw-r--r--packages/contracts/src/current/tokens/ZRXToken/ZRXToken.sol33
1 files changed, 0 insertions, 33 deletions
diff --git a/packages/contracts/src/current/tokens/ZRXToken/ZRXToken.sol b/packages/contracts/src/current/tokens/ZRXToken/ZRXToken.sol
deleted file mode 100644
index 7f5e1f849..000000000
--- a/packages/contracts/src/current/tokens/ZRXToken/ZRXToken.sol
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
-
- Copyright 2017 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.11;
-
-import { UnlimitedAllowanceToken_v1 as UnlimitedAllowanceToken } from "../../../previous/UnlimitedAllowanceToken/UnlimitedAllowanceToken_v1.sol";
-
-contract ZRXToken is UnlimitedAllowanceToken {
-
- uint8 constant public decimals = 18;
- uint public totalSupply = 10**27; // 1 billion tokens, 18 decimal places
- string constant public name = "0x Protocol Token";
- string constant public symbol = "ZRX";
-
- function ZRXToken() {
- balances[msg.sender] = totalSupply;
- }
-}