diff --git a/rpc/api/eth.go b/rpc/api/eth.go index 134c3c4781..b187b5a9d2 100644 --- a/rpc/api/eth.go +++ b/rpc/api/eth.go @@ -97,6 +97,54 @@ var ( "eth_resend": (*ethApi).Resend, "eth_pendingTransactions": (*ethApi).PendingTransactions, "eth_getTransactionReceipt": (*ethApi).GetTransactionReceipt, + "exp_accounts": (*ethApi).Accounts, + "exp_blockNumber": (*ethApi).BlockNumber, + "exp_getBalance": (*ethApi).GetBalance, + "exp_protocolVersion": (*ethApi).ProtocolVersion, + "exp_coinbase": (*ethApi).Coinbase, + "exp_mining": (*ethApi).IsMining, + "exp_syncing": (*ethApi).IsSyncing, + "exp_gasPrice": (*ethApi).GasPrice, + "exp_getStorage": (*ethApi).GetStorage, + "exp_storageAt": (*ethApi).GetStorage, + "exp_getStorageAt": (*ethApi).GetStorageAt, + "exp_getTransactionCount": (*ethApi).GetTransactionCount, + "exp_getBlockTransactionCountByHash": (*ethApi).GetBlockTransactionCountByHash, + "exp_getBlockTransactionCountByNumber": (*ethApi).GetBlockTransactionCountByNumber, + "exp_getUncleCountByBlockHash": (*ethApi).GetUncleCountByBlockHash, + "exp_getUncleCountByBlockNumber": (*ethApi).GetUncleCountByBlockNumber, + "exp_getData": (*ethApi).GetData, + "exp_getCode": (*ethApi).GetData, + "exp_sign": (*ethApi).Sign, + "exp_sendRawTransaction": (*ethApi).SendRawTransaction, + "exp_sendTransaction": (*ethApi).SendTransaction, + "exp_transact": (*ethApi).SendTransaction, + "exp_estimateGas": (*ethApi).EstimateGas, + "exp_call": (*ethApi).Call, + "exp_flush": (*ethApi).Flush, + "exp_getBlockByHash": (*ethApi).GetBlockByHash, + "exp_getBlockByNumber": (*ethApi).GetBlockByNumber, + "exp_getTransactionByHash": (*ethApi).GetTransactionByHash, + "exp_getTransactionByBlockNumberAndIndex": (*ethApi).GetTransactionByBlockNumberAndIndex, + "exp_getTransactionByBlockHashAndIndex": (*ethApi).GetTransactionByBlockHashAndIndex, + "exp_getUncleByBlockHashAndIndex": (*ethApi).GetUncleByBlockHashAndIndex, + "exp_getUncleByBlockNumberAndIndex": (*ethApi).GetUncleByBlockNumberAndIndex, + "exp_getCompilers": (*ethApi).GetCompilers, + "exp_compileSolidity": (*ethApi).CompileSolidity, + "exp_newFilter": (*ethApi).NewFilter, + "exp_newBlockFilter": (*ethApi).NewBlockFilter, + "exp_newPendingTransactionFilter": (*ethApi).NewPendingTransactionFilter, + "exp_uninstallFilter": (*ethApi).UninstallFilter, + "exp_getFilterChanges": (*ethApi).GetFilterChanges, + "exp_getFilterLogs": (*ethApi).GetFilterLogs, + "exp_getLogs": (*ethApi).GetLogs, + "exp_hashrate": (*ethApi).Hashrate, + "exp_getWork": (*ethApi).GetWork, + "exp_submitWork": (*ethApi).SubmitWork, + "exp_submitHashrate": (*ethApi).SubmitHashrate, + "exp_resend": (*ethApi).Resend, + "exp_pendingTransactions": (*ethApi).PendingTransactions, + "exp_getTransactionReceipt": (*ethApi).GetTransactionReceipt, } )