diff options
author | Fabio Berger <me@fabioberger.com> | 2018-09-19 19:53:00 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-09-19 19:53:00 +0800 |
commit | fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec (patch) | |
tree | e809482f71ad368ef0c1f57c078adf3b3726c555 /packages/migrations/artifacts/2.0.0-trimmed/WETH9.json | |
parent | e2559798df37cd246fe26d40d5bd030431a683e9 (diff) | |
download | dexon-sol-tools-fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec.tar dexon-sol-tools-fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec.tar.gz dexon-sol-tools-fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec.tar.bz2 dexon-sol-tools-fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec.tar.lz dexon-sol-tools-fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec.tar.xz dexon-sol-tools-fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec.tar.zst dexon-sol-tools-fec9c8f1c68a940c5ac2a45b2e953a46cbf502ec.zip |
Create trimmed artifacts of v2 contracts
Diffstat (limited to 'packages/migrations/artifacts/2.0.0-trimmed/WETH9.json')
-rw-r--r-- | packages/migrations/artifacts/2.0.0-trimmed/WETH9.json | 307 |
1 files changed, 307 insertions, 0 deletions
diff --git a/packages/migrations/artifacts/2.0.0-trimmed/WETH9.json b/packages/migrations/artifacts/2.0.0-trimmed/WETH9.json new file mode 100644 index 000000000..7dc6eda15 --- /dev/null +++ b/packages/migrations/artifacts/2.0.0-trimmed/WETH9.json @@ -0,0 +1,307 @@ +{ + "schemaVersion": "2.0.0", + "contractName": "WETH9", + "compilerOutput": { + "abi": [ + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "guy", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "approve", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "src", + "type": "address" + }, + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transferFrom", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "wad", + "type": "uint256" + } + ], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [ + { + "name": "", + "type": "uint8" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "", + "type": "address" + } + ], + "name": "balanceOf", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [ + { + "name": "", + "type": "string" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { + "name": "dst", + "type": "address" + }, + { + "name": "wad", + "type": "uint256" + } + ], + "name": "transfer", + "outputs": [ + { + "name": "", + "type": "bool" + } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "deposit", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { + "name": "", + "type": "address" + }, + { + "name": "", + "type": "address" + } + ], + "name": "allowance", + "outputs": [ + { + "name": "", + "type": "uint256" + } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "payable": true, + "stateMutability": "payable", + "type": "fallback" + }, + { + "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" + }, + { + "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": false, + "name": "_value", + "type": "uint256" + } + ], + "name": "Deposit", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "_owner", + "type": "address" + }, + { + "indexed": false, + "name": "_value", + "type": "uint256" + } + ], + "name": "Withdrawal", + "type": "event" + } + ] + }, + "networks": { + "1": { + "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "links": {}, + "constructorArgs": "[]" + }, + "3": { + "address": "0xc778417e063141139fce010982780140aa0cd5ab", + "links": {}, + "constructorArgs": "[]" + }, + "42": { + "address": "0xd0a1e359811322d97991e03f863a0c30c2cf029c", + "links": {}, + "constructorArgs": "[]" + }, + "50": { + "address": "0x0b1ba0af832d7c05fd64161e0db78e85978e8082", + "links": {}, + "constructorArgs": "[]" + } + } +} |