Comparing version 0.7.0 to 0.7.1
28
index.js
@@ -714,2 +714,30 @@ /** | ||
newFilter: function (params, f) { | ||
return this.broadcast(this.marshal("newFilter", params), f); | ||
}, | ||
newBlockFilter: function (f) { | ||
return this.broadcast(this.marshal("newBlockFilter"), f); | ||
}, | ||
newPendingTransactionFilter: function (f) { | ||
return this.broadcast(this.marshal("newPendingTransactionFilter"), f); | ||
}, | ||
getFilterChanges: function (filter, f) { | ||
return this.broadcast(this.marshal("getFilterChanges", filter), f); | ||
}, | ||
getFilterLogs: function (filter, f) { | ||
return this.broadcast(this.marshal("getFilterLogs", filter), f); | ||
}, | ||
getLogs: function (filter, f) { | ||
return this.broadcast(this.marshal("getLogs", filter), f); | ||
}, | ||
uninstallFilter: function (filter, f) { | ||
return this.broadcast(this.marshal("uninstallFilter", filter), f); | ||
}, | ||
// publish a new contract to the blockchain (from the coinbase account) | ||
@@ -716,0 +744,0 @@ publish: function (compiled, f) { |
{ | ||
"name": "ethrpc", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"description": "Ethereum JSON RPC", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
606558
11204