diff options
Diffstat (limited to 'lib/main.js')
-rw-r--r-- | lib/main.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/main.js b/lib/main.js index c3ed22f8b..e2caf6bc3 100644 --- a/lib/main.js +++ b/lib/main.js @@ -77,6 +77,7 @@ var ethMethods = function () { var methods = [ { name: 'balanceAt', call: 'eth_balanceAt' }, { name: 'stateAt', call: 'eth_stateAt' }, + { name: 'storageAt', call: 'eth_storageAt' }, { name: 'countAt', call: 'eth_countAt'}, { name: 'codeAt', call: 'eth_codeAt' }, { name: 'transact', call: 'eth_transact' }, @@ -84,8 +85,9 @@ 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' } ]; return methods; }; |