2015-01-29 11:35:21 +00:00
|
|
|
|
|
|
|
var abi = require('./abi');
|
|
|
|
|
2015-01-29 12:32:32 +00:00
|
|
|
var implementationOfEvent = function (address, signature) {
|
2015-01-29 11:35:21 +00:00
|
|
|
|
|
|
|
return function (options) {
|
|
|
|
var o = options || {};
|
|
|
|
o.address = o.address || address;
|
|
|
|
o.topics = o.topics || [];
|
|
|
|
o.topics.push(signature);
|
|
|
|
return o;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = implementationOfEvent;
|
|
|
|
|