aboutsummaryrefslogtreecommitdiffstats
path: root/packages/order-utils/src/compact_artifacts/Token.json
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-06-05 17:15:27 +0800
committerGitHub <noreply@github.com>2018-06-05 17:15:27 +0800
commit38cbd42d81d5bdb76d863836969e746e6c1244a6 (patch)
tree0d5154e3dc345422005791efd713494c1a34de16 /packages/order-utils/src/compact_artifacts/Token.json
parent54b8e1be897893dd348a3b335bc0cef419d29938 (diff)
parent28d019f82417cee3651848d697edb6e2736c407c (diff)
downloaddexon-sol-tools-38cbd42d81d5bdb76d863836969e746e6c1244a6.tar
dexon-sol-tools-38cbd42d81d5bdb76d863836969e746e6c1244a6.tar.gz
dexon-sol-tools-38cbd42d81d5bdb76d863836969e746e6c1244a6.tar.bz2
dexon-sol-tools-38cbd42d81d5bdb76d863836969e746e6c1244a6.tar.lz
dexon-sol-tools-38cbd42d81d5bdb76d863836969e746e6c1244a6.tar.xz
dexon-sol-tools-38cbd42d81d5bdb76d863836969e746e6c1244a6.tar.zst
dexon-sol-tools-38cbd42d81d5bdb76d863836969e746e6c1244a6.zip
Merge pull request #656 from 0xProject/refactor/fill-scenarios/for-v2
Refactor fill-scenarios for v2
Diffstat (limited to 'packages/order-utils/src/compact_artifacts/Token.json')
-rw-r--r--packages/order-utils/src/compact_artifacts/Token.json172
1 files changed, 0 insertions, 172 deletions
diff --git a/packages/order-utils/src/compact_artifacts/Token.json b/packages/order-utils/src/compact_artifacts/Token.json
deleted file mode 100644
index 3b5a86ae0..000000000
--- a/packages/order-utils/src/compact_artifacts/Token.json
+++ /dev/null
@@ -1,172 +0,0 @@
-{
- "contract_name": "Token",
- "abi": [
- {
- "constant": false,
- "inputs": [
- {
- "name": "_spender",
- "type": "address"
- },
- {
- "name": "_value",
- "type": "uint256"
- }
- ],
- "name": "approve",
- "outputs": [
- {
- "name": "success",
- "type": "bool"
- }
- ],
- "payable": false,
- "type": "function"
- },
- {
- "constant": true,
- "inputs": [],
- "name": "totalSupply",
- "outputs": [
- {
- "name": "supply",
- "type": "uint256"
- }
- ],
- "payable": false,
- "type": "function"
- },
- {
- "constant": false,
- "inputs": [
- {
- "name": "_from",
- "type": "address"
- },
- {
- "name": "_to",
- "type": "address"
- },
- {
- "name": "_value",
- "type": "uint256"
- }
- ],
- "name": "transferFrom",
- "outputs": [
- {
- "name": "success",
- "type": "bool"
- }
- ],
- "payable": false,
- "type": "function"
- },
- {
- "constant": true,
- "inputs": [
- {
- "name": "_owner",
- "type": "address"
- }
- ],
- "name": "balanceOf",
- "outputs": [
- {
- "name": "balance",
- "type": "uint256"
- }
- ],
- "payable": false,
- "type": "function"
- },
- {
- "constant": false,
- "inputs": [
- {
- "name": "_to",
- "type": "address"
- },
- {
- "name": "_value",
- "type": "uint256"
- }
- ],
- "name": "transfer",
- "outputs": [
- {
- "name": "success",
- "type": "bool"
- }
- ],
- "payable": false,
- "type": "function"
- },
- {
- "constant": true,
- "inputs": [
- {
- "name": "_owner",
- "type": "address"
- },
- {
- "name": "_spender",
- "type": "address"
- }
- ],
- "name": "allowance",
- "outputs": [
- {
- "name": "remaining",
- "type": "uint256"
- }
- ],
- "payable": false,
- "type": "function"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": true,
- "name": "_from",
- "type": "address"
- },
- {
- "indexed": true,
- "name": "_to",
- "type": "address"
- },
- {
- "indexed": false,
- "name": "_value",
- "type": "uint256"
- }
- ],
- "name": "Transfer",
- "type": "event"
- },
- {
- "anonymous": false,
- "inputs": [
- {
- "indexed": true,
- "name": "_owner",
- "type": "address"
- },
- {
- "indexed": true,
- "name": "_spender",
- "type": "address"
- },
- {
- "indexed": false,
- "name": "_value",
- "type": "uint256"
- }
- ],
- "name": "Approval",
- "type": "event"
- }
- ]
-}