2015-02-05 22:37:30 +00:00
|
|
|
/*
|
|
|
|
This file is part of ethereum.js.
|
|
|
|
|
|
|
|
ethereum.js is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ethereum.js is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/** @file eth.js
|
|
|
|
* @authors:
|
|
|
|
* Marek Kotewicz <marek@ethdev.com>
|
|
|
|
* @date 2015
|
|
|
|
*/
|
|
|
|
|
|
|
|
/// @returns an array of objects describing web3.eth api methods
|
|
|
|
var methods = function () {
|
|
|
|
var blockCall = function (args) {
|
|
|
|
return typeof args[0] === "string" ? "eth_blockByHash" : "eth_blockByNumber";
|
|
|
|
};
|
|
|
|
|
|
|
|
var transactionCall = function (args) {
|
|
|
|
return typeof args[0] === "string" ? 'eth_transactionByHash' : 'eth_transactionByNumber';
|
|
|
|
};
|
|
|
|
|
|
|
|
var uncleCall = function (args) {
|
|
|
|
return typeof args[0] === "string" ? 'eth_uncleByHash' : 'eth_uncleByNumber';
|
|
|
|
};
|
|
|
|
|
2015-02-17 18:55:02 +00:00
|
|
|
var transactionCountCall = function (args) {
|
|
|
|
return typeof args[0] === "string" ? 'eth_transactionCountByHash' : 'eth_transactionCountByNumber';
|
|
|
|
};
|
|
|
|
|
|
|
|
var uncleCountCall = function (args) {
|
|
|
|
return typeof args[0] === "string" ? 'eth_uncleCountByHash' : 'eth_uncleCountByNumber';
|
|
|
|
};
|
|
|
|
|
2015-02-05 22:37:30 +00:00
|
|
|
return [
|
|
|
|
{ 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' },
|
|
|
|
{ name: 'call', call: 'eth_call' },
|
|
|
|
{ name: 'block', call: blockCall },
|
|
|
|
{ name: 'transaction', call: transactionCall },
|
|
|
|
{ name: 'uncle', call: uncleCall },
|
|
|
|
{ name: 'compilers', call: 'eth_compilers' },
|
|
|
|
{ name: 'flush', call: 'eth_flush' },
|
|
|
|
{ name: 'lll', call: 'eth_lll' },
|
|
|
|
{ name: 'solidity', call: 'eth_solidity' },
|
|
|
|
{ name: 'serpent', call: 'eth_serpent' },
|
2015-02-17 18:55:02 +00:00
|
|
|
{ name: 'logs', call: 'eth_logs' },
|
|
|
|
{ name: 'transactionCount', call: transactionCountCall },
|
|
|
|
{ name: 'uncleCount', call: uncleCountCall }
|
2015-02-05 22:37:30 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
/// @returns an array of objects describing web3.eth api properties
|
|
|
|
var properties = function () {
|
|
|
|
return [
|
|
|
|
{ name: 'coinbase', getter: 'eth_coinbase', setter: 'eth_setCoinbase' },
|
|
|
|
{ name: 'listening', getter: 'eth_listening', setter: 'eth_setListening' },
|
|
|
|
{ name: 'mining', getter: 'eth_mining', setter: 'eth_setMining' },
|
|
|
|
{ name: 'gasPrice', getter: 'eth_gasPrice' },
|
|
|
|
{ name: 'accounts', getter: 'eth_accounts' },
|
|
|
|
{ name: 'peerCount', getter: 'eth_peerCount' },
|
|
|
|
{ name: 'defaultBlock', getter: 'eth_defaultBlock', setter: 'eth_setDefaultBlock' },
|
|
|
|
{ name: 'number', getter: 'eth_number'}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
methods: methods,
|
|
|
|
properties: properties
|
|
|
|
};
|
|
|
|
|