aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typed-contracts/abi/EtherToken.json
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-12-02 12:42:27 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-12-02 13:31:11 +0800
commitf285a46d05c8d30e516459b243106659c7351f6f (patch)
treed341ac79e4236d2242cbc4d53b6e331dd2711741 /packages/typed-contracts/abi/EtherToken.json
parent1e1c99d8d6f27c9da878e9ca4285691569051f3e (diff)
downloaddexon-sol-tools-f285a46d05c8d30e516459b243106659c7351f6f.tar
dexon-sol-tools-f285a46d05c8d30e516459b243106659c7351f6f.tar.gz
dexon-sol-tools-f285a46d05c8d30e516459b243106659c7351f6f.tar.bz2
dexon-sol-tools-f285a46d05c8d30e516459b243106659c7351f6f.tar.lz
dexon-sol-tools-f285a46d05c8d30e516459b243106659c7351f6f.tar.xz
dexon-sol-tools-f285a46d05c8d30e516459b243106659c7351f6f.tar.zst
dexon-sol-tools-f285a46d05c8d30e516459b243106659c7351f6f.zip
Add generator CLI util
Diffstat (limited to 'packages/typed-contracts/abi/EtherToken.json')
-rw-r--r--packages/typed-contracts/abi/EtherToken.json233
1 files changed, 233 insertions, 0 deletions
diff --git a/packages/typed-contracts/abi/EtherToken.json b/packages/typed-contracts/abi/EtherToken.json
new file mode 100644
index 000000000..039bb3b76
--- /dev/null
+++ b/packages/typed-contracts/abi/EtherToken.json
@@ -0,0 +1,233 @@
+[
+{
+ "constant": true,
+ "inputs": [],
+ "name": "name",
+ "outputs": [
+ {
+ "name": "",
+ "type": "string"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": false,
+ "inputs": [
+ {
+ "name": "_spender",
+ "type": "address"
+ },
+ {
+ "name": "_value",
+ "type": "uint256"
+ }
+ ],
+ "name": "approve",
+ "outputs": [
+ {
+ "name": "",
+ "type": "bool"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": true,
+ "inputs": [],
+ "name": "totalSupply",
+ "outputs": [
+ {
+ "name": "",
+ "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": "",
+ "type": "bool"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": false,
+ "inputs": [
+ {
+ "name": "amount",
+ "type": "uint256"
+ }
+ ],
+ "name": "withdraw",
+ "outputs": [],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": true,
+ "inputs": [],
+ "name": "decimals",
+ "outputs": [
+ {
+ "name": "",
+ "type": "uint8"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": true,
+ "inputs": [
+ {
+ "name": "_owner",
+ "type": "address"
+ }
+ ],
+ "name": "balanceOf",
+ "outputs": [
+ {
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": true,
+ "inputs": [],
+ "name": "symbol",
+ "outputs": [
+ {
+ "name": "",
+ "type": "string"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": false,
+ "inputs": [
+ {
+ "name": "_to",
+ "type": "address"
+ },
+ {
+ "name": "_value",
+ "type": "uint256"
+ }
+ ],
+ "name": "transfer",
+ "outputs": [
+ {
+ "name": "",
+ "type": "bool"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "constant": false,
+ "inputs": [],
+ "name": "deposit",
+ "outputs": [],
+ "payable": true,
+ "type": "function"
+},
+{
+ "constant": true,
+ "inputs": [
+ {
+ "name": "_owner",
+ "type": "address"
+ },
+ {
+ "name": "_spender",
+ "type": "address"
+ }
+ ],
+ "name": "allowance",
+ "outputs": [
+ {
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "payable": false,
+ "type": "function"
+},
+{
+ "payable": true,
+ "type": "fallback"
+},
+{
+ "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"
+}
+]