aboutsummaryrefslogtreecommitdiffstats
path: root/lib/main.js
diff options
context:
space:
mode:
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;
};