Add web3 api

This commit is contained in:
CocoaHuke 2018-06-21 21:36:07 -07:00
parent d535abc99f
commit f38efe6b23
No known key found for this signature in database
GPG key ID: E300819C1AE33223

View file

@ -5358,6 +5358,12 @@ var methods = function () {
outputFormatter: utils.toDecimal
});
var getTransactionStatus = new Method({
name: 'getTransactionStatus',
call: 'eth_getTransactionStatus',
params: 1
});
var sendRawTransaction = new Method({
name: 'sendRawTransaction',
call: 'eth_sendRawTransaction',
@ -5444,6 +5450,7 @@ var methods = function () {
getTransactionFromBlock,
getTransactionReceipt,
getTransactionCount,
getTransactionStatus,
call,
estimateGas,
sendRawTransaction,