diff options
author | Marian OANCΞA <contact@siteshop.ro> | 2014-11-18 15:00:01 +0800 |
---|---|---|
committer | Marian OANCΞA <contact@siteshop.ro> | 2014-11-18 15:00:01 +0800 |
commit | 8b7e59729f9d19eb485dd5b58c3715450fd27c3b (patch) | |
tree | 504894cb720802862679c934f57fcfa93af5bd13 /lib/main.js | |
parent | dc100f85b3719f38a92223c39eb36d8d4ff24cdb (diff) | |
parent | 8aaec1d98fdeef1521e65518913498a1a0c18cbe (diff) | |
download | dexon-8b7e59729f9d19eb485dd5b58c3715450fd27c3b.tar dexon-8b7e59729f9d19eb485dd5b58c3715450fd27c3b.tar.gz dexon-8b7e59729f9d19eb485dd5b58c3715450fd27c3b.tar.bz2 dexon-8b7e59729f9d19eb485dd5b58c3715450fd27c3b.tar.lz dexon-8b7e59729f9d19eb485dd5b58c3715450fd27c3b.tar.xz dexon-8b7e59729f9d19eb485dd5b58c3715450fd27c3b.tar.zst dexon-8b7e59729f9d19eb485dd5b58c3715450fd27c3b.zip |
Merge pull request #10 from debris/abi
Abi
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; }; |