mirror of https://github.com/status-im/web3.js.git
merged master
This commit is contained in:
commit
16ffdf6f04
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -160,6 +160,13 @@ var getTransactionCount = new Method({
|
||||||
outputFormatter: utils.toDecimal
|
outputFormatter: utils.toDecimal
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var sendRawTransaction = new Method({
|
||||||
|
name: 'sendRawTransaction',
|
||||||
|
call: 'eth_sendRawTransaction',
|
||||||
|
params: 1,
|
||||||
|
inputFormatter: []
|
||||||
|
});
|
||||||
|
|
||||||
var sendTransaction = new Method({
|
var sendTransaction = new Method({
|
||||||
name: 'sendTransaction',
|
name: 'sendTransaction',
|
||||||
call: 'eth_sendTransaction',
|
call: 'eth_sendTransaction',
|
||||||
|
@ -226,6 +233,7 @@ var methods = [
|
||||||
getTransactionCount,
|
getTransactionCount,
|
||||||
call,
|
call,
|
||||||
estimateGas,
|
estimateGas,
|
||||||
|
sendRawTransaction,
|
||||||
sendTransaction,
|
sendTransaction,
|
||||||
compileSolidity,
|
compileSolidity,
|
||||||
compileLLL,
|
compileLLL,
|
||||||
|
|
Loading…
Reference in New Issue