aboutsummaryrefslogtreecommitdiffstats
path: root/lib/main.js
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-11-13 03:39:13 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-11-13 03:39:13 +0800
commit3451f2608682bd044d7b7165b0d3aa640e8fd81f (patch)
treeb6902919de49e8ab265a48a88a4c6ac466dc55b9 /lib/main.js
parent05290d554749c7b3507da4af11796112c67be718 (diff)
downloaddexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar.gz
dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.tar.zst
dexon-3451f2608682bd044d7b7165b0d3aa640e8fd81f.zip
changes to make everything work
Diffstat (limited to 'lib/main.js')
-rw-r--r--lib/main.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/main.js b/lib/main.js
index c3ed22f8b..d7f8531d2 100644
--- a/lib/main.js
+++ b/lib/main.js
@@ -84,8 +84,11 @@ var ethMethods = function () {
{ name: 'block', call: blockCall },
{ name: 'transaction', call: transactionCall },
{ name: 'uncle', call: uncleCall },
- { name: 'compile', call: 'eth_compile' },
- { name: 'lll', call: 'eth_lll' }
+ { name: 'compilers', call: 'eth_compilers' },
+ { name: 'lll', call: 'eth_lll' },
+ { name: 'solidity', call: 'eth_solidity' },
+ { name: 'contractCreate', call: 'eth_contractCreate' },
+ { name: 'contractCall', call: 'eth_contractCall' }
];
return methods;
};