diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-07-05 18:02:42 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-07-05 21:58:41 +0800 |
commit | 51a625d4af5c18fad4f3bb5efae81d6817bb7432 (patch) | |
tree | 895e2d37948ecac4d9f620b2bef46a3477d8f649 /packages/contract-wrappers/src/artifacts/ERC20Token.json | |
parent | ab8544b0ff61c993d0366a906bd7b1aeed11b70a (diff) | |
download | dexon-sol-tools-51a625d4af5c18fad4f3bb5efae81d6817bb7432.tar dexon-sol-tools-51a625d4af5c18fad4f3bb5efae81d6817bb7432.tar.gz dexon-sol-tools-51a625d4af5c18fad4f3bb5efae81d6817bb7432.tar.bz2 dexon-sol-tools-51a625d4af5c18fad4f3bb5efae81d6817bb7432.tar.lz dexon-sol-tools-51a625d4af5c18fad4f3bb5efae81d6817bb7432.tar.xz dexon-sol-tools-51a625d4af5c18fad4f3bb5efae81d6817bb7432.tar.zst dexon-sol-tools-51a625d4af5c18fad4f3bb5efae81d6817bb7432.zip |
Rename compact_artifacts to artifacts
Diffstat (limited to 'packages/contract-wrappers/src/artifacts/ERC20Token.json')
-rw-r--r-- | packages/contract-wrappers/src/artifacts/ERC20Token.json | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/packages/contract-wrappers/src/artifacts/ERC20Token.json b/packages/contract-wrappers/src/artifacts/ERC20Token.json new file mode 100644 index 000000000..46f18b4e5 --- /dev/null +++ b/packages/contract-wrappers/src/artifacts/ERC20Token.json @@ -0,0 +1,174 @@ +{ + "contractName": "ERC20Token", + "compilerOutput": { + "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" + } + ] + } +} |